Home
last modified time | relevance | path

Searched refs:result (Results 7301 - 7325 of 25055) sorted by relevance

1...<<291292293294295296297298299300>>...1003

/third_party/openssl/apps/include/
H A Dopt.h374 int opt_int(const char *arg, int *result);
376 int opt_long(const char *arg, long *result);
377 int opt_ulong(const char *arg, unsigned long *result);
378 int opt_intmax(const char *arg, ossl_intmax_t *result);
379 int opt_uintmax(const char *arg, ossl_uintmax_t *result);
382 int opt_format(const char *s, unsigned long flags, int *result);
386 int opt_pair(const char *arg, const OPT_PAIR * pairs, int *result);
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/texture/
H A DvktSampleVerifier.hpp136 const tcu::Vec4& result) const;
139 const tcu::Vec4& result,
144 bool verifySampleFiltered (const tcu::Vec4& result,
157 const tcu::Vec4& result,
166 const tcu::Vec4& result,
173 const tcu::Vec4& result,
181 const tcu::Vec4& result,
/third_party/vk-gl-cts/execserver/
H A DxsPosixTestProcess.cpp74 deFileResult result = deFile_write(m_file, &m_caseList[0] + pos, m_caseList.size()-pos, &numWritten); in run() local
76 if (result == DE_FILERESULT_SUCCESS) in run()
78 else if (result == DE_FILERESULT_WOULD_BLOCK) in run()
128 deFileResult result = deFile_read(m_file, &tmpBuf[0], (deInt64)tmpBuf.size(), &numRead); in run() local
130 if (result == DE_FILERESULT_SUCCESS) in run()
144 else if (result == DE_FILERESULT_END_OF_FILE || in run()
145 result == DE_FILERESULT_WOULD_BLOCK) in run()
/third_party/skia/third_party/externals/spirv-tools/test/link/
H A Dlinker_fixture.h141 // then disassemble and test that the result matches the |expected|.
150 std::string result; in ExpandAndCheck() local
152 tools_.Disassemble(linked_binary, &result, disassemble_options_)) in ExpandAndCheck()
154 EXPECT_EQ(expected, result); in ExpandAndCheck()
159 // match pattern for the disassembled linked result.
168 std::string result; in ExpandAndMatch() local
170 tools_.Disassemble(linked_binary, &result, disassemble_options_)) in ExpandAndMatch()
172 auto match_res = effcee::Match(result, templateBody); in ExpandAndMatch()
175 << templateBody << "\nChecking result:\n" in ExpandAndMatch()
176 << result; in ExpandAndMatch() local
[all...]
/third_party/openssl/test/
H A Dbioprinttest.c192 char format[80], result[80]; in dofptest() local
203 BIO_snprintf(result, sizeof(result), format, val); in dofptest()
207 printf(" /* %d%d */ { \"%s\"", test, sub, result); in dofptest()
209 printf(", \"%s\"", result); in dofptest()
210 } else if (!TEST_str_eq(fpexpected[test][sub][i], result)) { in dofptest()
212 test, format, fpexpected[test][sub][i], result); in dofptest()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/link/
H A Dlinker_fixture.h141 // then disassemble and test that the result matches the |expected|.
150 std::string result; in ExpandAndCheck() local
152 tools_.Disassemble(linked_binary, &result, disassemble_options_)) in ExpandAndCheck()
154 EXPECT_EQ(expected, result); in ExpandAndCheck()
159 // match pattern for the disassembled linked result.
168 std::string result; in ExpandAndMatch() local
170 tools_.Disassemble(linked_binary, &result, disassemble_options_)) in ExpandAndMatch()
172 auto match_res = effcee::Match(result, templateBody); in ExpandAndMatch()
175 << templateBody << "\nChecking result:\n" in ExpandAndMatch()
176 << result; in ExpandAndMatch() local
[all...]
/third_party/skia/third_party/externals/icu/source/tools/gencfu/
H A Dgencfu.cpp305 char *result; in readFile() local
316 result = new char[fileSize+10]; in readFile()
317 if (result==NULL) { in readFile()
322 long t = static_cast<long>(fread(result, 1, fileSize, file)); in readFile()
324 delete [] result; in readFile()
328 result[fileSize]=0; in readFile()
331 return result; in readFile()
/third_party/skia/src/pathops/
H A DSkPathOpsConic.cpp51 SkDVector result = { in dxdyAtT() local
55 if (result.fX == 0 && result.fY == 0) { in dxdyAtT()
57 result = fPts[2] - fPts[0]; in dxdyAtT()
63 return result; in dxdyAtT()
96 SkDPoint result = { in ptAtT() local
100 return result; in ptAtT()
/third_party/skia/third_party/externals/brotli/c/enc/
H A Dmemory.c53 void* result = m->alloc_func(m->opaque, n); in BrotliAllocate() local
54 if (!result) exit(EXIT_FAILURE); in BrotliAllocate()
55 return result; in BrotliAllocate()
139 void* result = m->alloc_func(m->opaque, n); in BrotliAllocate() local
140 if (!result) { in BrotliAllocate()
145 m->pointers[NEW_ALLOCATED_OFFSET + (m->new_allocated++)] = result; in BrotliAllocate()
146 return result; in BrotliAllocate()
/third_party/optimized-routines/string/aarch64/
H A Dstrrchr-mte.S18 #define result x0 define
92 sub result, src, 1
94 sub result, result, tmp, lsr 2
95 csel result, result, xzr, ne
123 sub result, src_match, tmp, lsr 2
/third_party/skia/tools/skdiff/
H A Dskdiff.cpp24 for (int result = 0; result < DiffRecord::kResultCount; ++result) { in getResultByName()
25 if (0 == strcmp(DiffRecord::ResultNames[result], name)) { in getResultByName()
26 return static_cast<DiffRecord::Result>(result); in getResultByName()
41 const char* DiffRecord::getResultDescription(DiffRecord::Result result) { in getResultDescription() argument
42 return ResultDescriptions[result]; in getResultDescription()
/third_party/skia/platform_tools/android/apps/skqp/src/main/java/org/skia/skqp/
H A DSkQPRunner.java121 String result = "pass"; in run()
125 result = "ERROR"; in run()
130 result = "FAIL"; in run()
134 name, testNumber, mShouldRunTestCount, result)); in run()
146 String result = "pass"; in run()
153 result = "FAIL"; in run()
157 name, testNumber, mShouldRunTestCount, result)); in run()
/third_party/skia/modules/canvaskit/
H A Dmemory.js85 var _scratch3x3Matrix; // the result from CanvasKit.Malloc
156 var result = {
162 result.colorPtr = copy1dArray(colors, 'HEAPF32');
163 result.count = colors.length / 4;
166 result.colorPtr = copy1dArray(colors, 'HEAPU32');
167 result.colorType = CanvasKit.ColorType.RGBA_8888;
170 result.colorPtr = copyColorArray(colors);
174 return result;
/third_party/rust/crates/nix/src/
H A Dsched.rs124 Errno::result(res).map(Pid::from_raw) in clone()
133 Errno::result(res).map(drop) in unshare()
142 Errno::result(res).map(drop) in setns()
271 Errno::result(res).map(drop) in sched_setaffinity()
306 Errno::result(res).and(Ok(cpuset)) in sched_getaffinity()
313 Errno::result(res).map(|int| int as usize) in sched_getcpu()
323 Errno::result(res).map(drop) in sched_yield()
H A Dmqueue.rs161 Errno::result(res).map(MqdT) in mq_open()
169 Errno::result(res).map(drop) in mq_unlink()
177 Errno::result(res).map(drop) in mq_close()
197 Errno::result(res).map(|r| r as usize) in mq_receive()
212 Errno::result(res).map(drop) in mq_send()
221 Errno::result(res).map(|_| unsafe { in mq_getattr()
242 Errno::result(res).map(|_| unsafe { in mq_setattr()
/third_party/spirv-tools/test/link/
H A Dlinker_fixture.h141 // then disassemble and test that the result matches the |expected|.
150 std::string result; in ExpandAndCheck() local
152 tools_.Disassemble(linked_binary, &result, disassemble_options_)) in ExpandAndCheck()
154 EXPECT_EQ(expected, result); in ExpandAndCheck()
159 // match pattern for the disassembled linked result.
168 std::string result; in ExpandAndMatch() local
170 tools_.Disassemble(linked_binary, &result, disassemble_options_)) in ExpandAndMatch()
172 auto match_res = effcee::Match(result, templateBody); in ExpandAndMatch()
175 << templateBody << "\nChecking result:\n" in ExpandAndMatch()
176 << result; in ExpandAndMatch() local
[all...]
/third_party/spirv-tools/tools/objdump/
H A Dextract_source.cpp156 spv_result_t result = SPV_SUCCESS; in ExtractSourceFromModule()
160 result = extractOpString(loc, instruction, &content); in ExtractSourceFromModule()
161 if (result == SPV_SUCCESS) { in ExtractSourceFromModule()
167 result = extractOpSource(loc, instruction, &filenameId, &code); in ExtractSourceFromModule()
168 if (result == SPV_SUCCESS) { in ExtractSourceFromModule()
179 result = extractOpSourceContinued(loc, instruction, in ExtractSourceFromModule()
185 return result; in ExtractSourceFromModule()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/texture/
H A DvktSampleVerifier.hpp136 const tcu::Vec4& result) const;
139 const tcu::Vec4& result,
144 bool verifySampleFiltered (const tcu::Vec4& result,
157 const tcu::Vec4& result,
166 const tcu::Vec4& result,
173 const tcu::Vec4& result,
181 const tcu::Vec4& result,
/base/hiviewdfx/hiview/interfaces/js/napi/src/
H A Dhiview_napi_adapter.cpp42 params->result = HiviewServiceAgent::GetInstance().Copy(params->logType, params->logName, params->destDir); in CopyFileExecution()
57 params->result = HiviewServiceAgent::GetInstance().Move(params->logType, params->logName, params->destDir); in MoveFileExecution()
64 auto isSuccess = (params->result == 0); in FileOperationCompleteCallback()
67 HiviewNapiUtil::CreateInt32Value(env, params->result, results[VAL_INDEX]); in FileOperationCompleteCallback()
70 HiviewNapiUtil::CreateErrorByRet(env, params->result, results[ERR_INDEX]); in FileOperationCompleteCallback()
/base/hiviewdfx/hidumper/frameworks/native/include/executor/memory/
H A Dsmaps_memory_info.h50 bool ShowMemorySmapsByPid(const int &pid, StringMatrix result, bool isShowSmapsInfo);
60 void InsertSmapsTitle(StringMatrix result, bool isShowSmapsInfo);
61 void BuildSmapsResult(const GroupMap &infos, StringMatrix result, bool isShowSmapsInfo,
63 void BuildSmapsInfo(StringMatrix result, std::vector<std::map<std::string, std::string>> vectMap);
67 void CalcSmapsGroup(const GroupMap &infos, StringMatrix result, MemInfoData::MemSmapsInfo &memSmapsInfo,
/base/hiviewdfx/hidumper/frameworks/native/src/util/
H A Dstring_utils.cpp32 void StringUtils::StringSplit(const string &content, const string &split, vector<string> &result) in StringSplit() argument
34 SplitStr(content, split, result, false, false); in StringSplit()
47 bool result = false; in IsEnd() local
49 result = (0 == content.compare(content.length() - end.length(), end.length(), end)); in IsEnd()
51 return result; in IsEnd()
/base/hiviewdfx/hiview/utility/smart_parser/feature_analysis/
H A Dlog_util.cpp48 * result : all trace line will be spliced by "\n"
51 void LogUtil::GetTrace(stringstream& buffer, int cursor, const string& reg, string& result, string startReg) in GetTrace() argument
81 result += matches.str(0) + LogUtil::SPLIT_PATTERN; in GetTrace()
133 smatch result; in IsTestModel() local
134 if (regex_match(sourceFileName, result, regex(dirOrFileName)) || in IsTestModel()
135 regex_match(sourceFileName, result, regex(fileName))) { in IsTestModel()
/base/notification/distributed_notification_service/frameworks/core/src/
H A Dans_subscriber_local_live_view_stub.cpp44 ErrCode result = NO_ERROR; in OnRemoteRequest() local
47 result = HandleOnConnected(data, reply); in OnRemoteRequest()
51 result = HandleOnDisconnected(data, reply); in OnRemoteRequest()
55 result = HandleOnResponse(data, reply); in OnRemoteRequest()
63 return result; in OnRemoteRequest()
/base/startup/init/test/unittest/param/
H A Dparam_stub.h68 void SetTestPermissionResult(int result);
69 void TestSetParamCheckResult(const char *prefix, uint16_t mode, int result);
82 void SetStubResult(STUB_TYPE type, int result);
110 bool DoRemount(struct mntent *mentry, bool *result);
112 bool DoSystemRemount(struct mntent *mentry, bool *result);
/base/startup/init/device_info/
H A Ddevice_info_stub.cpp116 int32_t result = TypePermissionState::PERMISSION_GRANTED; in CheckPermission() local
122 result = AccessTokenKit::VerifyAccessToken(callerToken, permission); in CheckPermission()
124 if (result == TypePermissionState::PERMISSION_DENIED) { in CheckPermission()
131 int32_t DeviceInfoService::GetUdid(std::string& result) in GetUdid() argument
135 int32_t DeviceInfoService::GetSerialID(std::string& result) in GetSerialID() argument

Completed in 19 milliseconds

1...<<291292293294295296297298299300>>...1003