Home
last modified time | relevance | path

Searched refs:result (Results 1251 - 1275 of 11561) sorted by relevance

1...<<51525354555657585960>>...463

/third_party/curl/lib/vtls/
H A Dsectransp.c845 CURLcode result; in sectransp_bio_cf_in_read() local
849 nread = Curl_conn_cf_recv(cf->next, data, buf, *dataLength, &result); in sectransp_bio_cf_in_read()
850 CURL_TRC_CF(data, cf, "bio_read(len=%zu) -> %zd, result=%d", in sectransp_bio_cf_in_read()
851 *dataLength, nread, result); in sectransp_bio_cf_in_read()
853 switch(result) { in sectransp_bio_cf_in_read()
885 CURLcode result; in sectransp_bio_cf_out_write() local
889 nwritten = Curl_conn_cf_send(cf->next, data, buf, *dataLength, &result); in sectransp_bio_cf_out_write()
890 CURL_TRC_CF(data, cf, "bio_send(len=%zu) -> %zd, result=%d", in sectransp_bio_cf_out_write()
891 *dataLength, nwritten, result); in sectransp_bio_cf_out_write()
893 if(result in sectransp_bio_cf_out_write()
994 CURLcode result = CURLE_OK; CopyCertSubject() local
1389 CURLcode result = sectransp_version_from_curl(&darwin_ver_min, set_ssl_version_min_max() local
1722 CURLcode result = set_ssl_version_min_max(cf, data); global() local
1759 CURLcode result = set_ssl_version_min_max(cf, data); global() local
1877 CURLcode result = CopyCertSubject(data, cert, &certp); global() local
2065 CURLcode result; global() local
2199 CURLcode result; global() local
2248 CURLcode result = CURLE_PEER_FAILED_VERIFICATION; global() local
2370 CURLcode result; global() local
2409 CURLcode result = CURLE_SSL_PINNEDPUBKEYNOTMATCH; global() local
2544 CURLcode result = verify_cert(cf, data, conn_config->CAfile, global() local
2756 CURLcode result = global() local
2847 CURLcode result = CURLE_OK; global() local
2867 CURLcode result = CURLE_OK; global() local
2894 CURLcode result = ssl_config->certinfo ? global() local
2991 CURLcode result; global() local
3010 CURLcode result; global() local
3125 CURLcode result; global() local
3176 CURLcode result; global() local
3418 CURLcode result = verify_cert(cf, data, conn_config->CAfile, global() local
[all...]
/third_party/vk-gl-cts/modules/gles3/performance/
H A Des3pShaderCompilationCases.cpp132 // strictly true for things like median) so a relative result of 0
141 float result = 0.0f;
143 result += (float)v[i];
144 return result / (float)v.size();
176 float result = 0.0f;
180 result += d*d;
182 return deFloatSqrt(result/(float)v.size());
245 tcu::Vector<float, 16> result;
251 result[vecNdx*4 + i] = srcVec[i];
254 return result;
[all...]
/third_party/vk-gl-cts/modules/gles2/performance/
H A Des2pShaderCompilationCases.cpp132 // strictly true for things like median) so a relative result of 0
141 float result = 0.0f;
143 result += (float)v[i];
144 return result / (float)v.size();
176 float result = 0.0f;
180 result += d*d;
182 return deFloatSqrt(result/(float)v.size());
245 tcu::Vector<float, 16> result;
251 result[vecNdx*4 + i] = srcVec[i];
254 return result;
[all...]
/third_party/icu/icu4c/source/test/intltest/
H A Dlocalematchertest.cpp102 LocaleMatcher::Result result = matcher.getBestMatchResult("fr", errorCode); in testEmpty() local
103 assertEquals("getBestMatchResult(fr).des", "(null)", locString(result.getDesiredLocale())); in testEmpty()
104 assertEquals("getBestMatchResult(fr).desIndex", -1, result.getDesiredIndex()); in testEmpty()
106 "(null)", locString(result.getSupportedLocale())); in testEmpty()
108 -1, result.getSupportedIndex()); in testEmpty()
231 LocaleMatcher::Result result = matcher.getBestMatchResult(desired, errorCode); in testBasics() local
233 &desired == result.getDesiredLocale()); in testBasics()
234 assertEquals("withDefault: en-GB desired index", 0, result.getDesiredIndex()); in testBasics()
236 "en_GB", locString(result.getSupportedLocale())); in testBasics()
237 assertEquals("withDefault: en-GB supported index", 1, result in testBasics()
278 LocaleMatcher::Result result = matcher.getBestMatchResult("ja_JP", errorCode); testSupportedDefault() local
302 LocaleMatcher::Result result = matcher.getBestMatchResult("ja_JP", errorCode); testUnsupportedDefault() local
325 LocaleMatcher::Result result = matcher.getBestMatchResult("ja_JP", errorCode); testNoDefault() local
450 LocaleMatcher::Result result = matcher.getBestMatchResult(desired, errorCode); testResolvedLocale() local
608 LocaleMatcher::Result result = matcher.getBestMatchResult(desiredLocale, errorCode); dataDriven() local
619 LocaleMatcher::Result result = matcher.getBestMatchResult(desiredIter, errorCode); dataDriven() local
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/text/
H A DSpoofCheckerTest.java115 SpoofChecker.CheckResult result = new SpoofChecker.CheckResult(); in TestOpenFromSourceRules()
116 rsc.failsChecks("Hello", result); in TestOpenFromSourceRules()
261 SpoofChecker.CheckResult result = new SpoofChecker.CheckResult(); in TestAllowedLocales()
265 checkResults = sc.failsChecks(goodGreek, result); in TestAllowedLocales()
266 assertEquals("", SpoofChecker.CHAR_LIMIT, result.checks); in TestAllowedLocales()
299 SpoofChecker.CheckResult result = new SpoofChecker.CheckResult(); in TestAllowedChars()
300 checkResults = sc.failsChecks(goodLatin, result); in TestAllowedChars()
302 assertEquals("", SpoofChecker.CHAR_LIMIT, result.checks); in TestAllowedChars()
308 SpoofChecker.CheckResult result = new SpoofChecker.CheckResult(); in TestCheck()
311 result in TestCheck()
[all...]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/text/
H A DSpoofCheckerTest.java112 SpoofChecker.CheckResult result = new SpoofChecker.CheckResult(); in TestOpenFromSourceRules()
113 rsc.failsChecks("Hello", result); in TestOpenFromSourceRules()
258 SpoofChecker.CheckResult result = new SpoofChecker.CheckResult(); in TestAllowedLocales()
262 checkResults = sc.failsChecks(goodGreek, result); in TestAllowedLocales()
263 assertEquals("", SpoofChecker.CHAR_LIMIT, result.checks); in TestAllowedLocales()
296 SpoofChecker.CheckResult result = new SpoofChecker.CheckResult(); in TestAllowedChars()
297 checkResults = sc.failsChecks(goodLatin, result); in TestAllowedChars()
299 assertEquals("", SpoofChecker.CHAR_LIMIT, result.checks); in TestAllowedChars()
305 SpoofChecker.CheckResult result = new SpoofChecker.CheckResult(); in TestCheck()
308 result in TestCheck()
[all...]
/third_party/python/Lib/test/libregrtest/
H A Dmain.py116 def accumulate_result(self, result, rerun=False):
117 test_name = result.name
119 if not isinstance(result, (ChildError, Interrupted)) and not rerun:
120 self.test_times.append((result.duration_sec, test_name))
122 if isinstance(result, Passed):
124 elif isinstance(result, ResourceDenied):
127 elif isinstance(result, Skipped):
129 elif isinstance(result, EnvChanged):
131 elif isinstance(result, Failed):
134 self.need_rerun.append(result)
[all...]
/third_party/skia/third_party/externals/tint/src/inspector/
H A Dinspector.cc133 std::vector<EntryPoint> result; in GetEntryPoints() local
225 result.push_back(std::move(entry_point)); in GetEntryPoints()
228 return result; in GetEntryPoints()
245 std::map<uint32_t, Scalar> result; in GetConstantIDs() local
257 if (result.find(constant_id) != result.end()) { in GetConstantIDs()
262 result[constant_id] = Scalar(); in GetConstantIDs()
269 result[constant_id] = Scalar(); in GetConstantIDs()
274 result[constant_id] = Scalar(l->value); in GetConstantIDs()
279 result[constant_i in GetConstantIDs()
300 std::map<std::string, uint32_t> result; GetConstantNameToIdMap() local
346 std::vector<ResourceBinding> result; GetResourceBindings() local
372 std::vector<ResourceBinding> result; GetUniformBufferResourceBindings() local
420 std::vector<ResourceBinding> result; GetSamplerResourceBindings() local
444 std::vector<ResourceBinding> result; GetComparisonSamplerResourceBindings() local
487 std::vector<ResourceBinding> result; GetTextureResourceBindings() local
665 std::vector<ResourceBinding> result; GetStorageBufferResourceBindingsImpl() local
702 std::vector<ResourceBinding> result; GetSampledTextureResourceBindingsImpl() local
745 std::vector<ResourceBinding> result; GetStorageTextureResourceBindingsImpl() local
[all...]
/test/xts/acts/xts_lite/device_attest_lite/device_attestQuerry_posix/src/
H A Ddevice_attest_querry.cpp40 bool result = true; in AttestStatusValid() local
44 result = false; in AttestStatusValid()
48 result = false; in AttestStatusValid()
53 result = false; in AttestStatusValid()
58 result = false; in AttestStatusValid()
63 result = false; in AttestStatusValid()
68 result = false; in AttestStatusValid()
73 result = false; in AttestStatusValid()
79 result = false; in AttestStatusValid()
83 result in AttestStatusValid()
[all...]
/third_party/curl/tests/libtest/
H A Dlib2301.c33 CURLcode result =
36 "ws: curl_ws_send returned %u, sent %u\n", (int)result, (int)sent);
38 return (int)result;
46 CURLcode result =
63 fprintf(stderr, "ws: curl_ws_recv returned %u, received %u\n", (int)result,
65 return (int)result;
72 CURLcode result =
75 "ws: curl_ws_send returned %u, sent %u\n", (int)result, (int)sent);
111 CURLcode result; in writecb() local
113 result in writecb()
[all...]
/third_party/elfutils/libelf/
H A Delf32_checksum.c57 long int result = 0; in elfw2() local
101 result = -1l; in elfw2()
126 result = process_block (result, data); in elfw2()
140 result = process_block (result, data); in elfw2()
147 result = -1l; in elfw2()
151 result = process_block (result, data); in elfw2()
157 result in elfw2()
[all...]
/third_party/mesa3d/.gitlab-ci/tests/lava/
H A Dhelpers.py30 name="test-mesa-ci", result="pass", metadata_extra=None, extra=None
36 return {"metadata": {"result": result, **metadata_extra}, "name": name}
40 finished=False, msg=None, lvl="target", result=None
43 if result:
45 timed_msg["msg"] = f"hwci: mesa: {result}"
53 messages: dict[LogSectionType, Iterable[int]], result: Optional[str] = None
62 if result and section_type == result_message_section:
63 # To consider the job finished, the result `echo` should be produced
65 yield create_lava_yaml_msg(msg=f"hwci: mesa: {result}"), dela
[all...]
/third_party/node/deps/v8/tools/system-analyzer/
H A Dlws-middleware.js33 const result = {
41 await this.loadVMSymbolsMacOS(query, result);
44 await this.loadVMSymbolsLinux(query, result);
51 ctx.response.body = JSON.stringify(result);
54 async loadVMSymbolsMacOS(query, result) {
60 result.symbols = [await sh(this.nmExec, '--demangle', '-n', libName), ''];
62 result.error = e.message;
66 async loadVMSymbolsLinux(query, result) {
78 result.symbols = [
87 result
[all...]
/third_party/node/test/fixtures/
H A Dprocess-exit-code-cases.js14 cases.push({ func: exitsOnExitCodeSet, result: 42 });
24 cases.push({ func: changesCodeViaExit, result: 42 });
34 cases.push({ func: changesCodeZeroExit, result: 0 });
50 result: 1,
62 cases.push({ func: changeCodeInsideExit, result: 99 });
72 cases.push({ func: zeroExitWithUncaughtHandler, result: 0 });
84 cases.push({ func: changeCodeInUncaughtHandler, result: 97 });
96 result: 98,
110 result: 0,
122 result
[all...]
/third_party/ninja/src/
H A Dincludes_normalize_test.cc37 string result, err; in NormalizeAndCheckNoError() local
39 EXPECT_TRUE(normalizer.Normalize(input, &result, &err)); in NormalizeAndCheckNoError()
41 return result; in NormalizeAndCheckNoError()
46 string result, err; in NormalizeRelativeAndCheckNoError() local
48 EXPECT_TRUE(normalizer.Normalize(input, &result, &err)); in NormalizeRelativeAndCheckNoError()
50 return result; in NormalizeRelativeAndCheckNoError()
110 string result, err; in TEST() local
113 normalizer.Normalize(kLongInputString, &result, &err)); in TEST()
148 string result, err; in TEST() local
151 EXPECT_TRUE(normalizer.Normalize("a", &result, in TEST()
[all...]
/third_party/mesa3d/src/vulkan/runtime/
H A Dvk_android.c41 VkResult result = VK_SUCCESS; in vk_common_AcquireImageANDROID() local
85 result = device->dispatch_table.ImportSemaphoreFdKHR(_device, &info); in vk_common_AcquireImageANDROID()
86 if (result == VK_SUCCESS) in vk_common_AcquireImageANDROID()
90 if (result == VK_SUCCESS && fence != VK_NULL_HANDLE) { in vk_common_AcquireImageANDROID()
98 result = device->dispatch_table.ImportFenceFdKHR(_device, &info); in vk_common_AcquireImageANDROID()
99 if (result == VK_SUCCESS) in vk_common_AcquireImageANDROID()
108 return result; in vk_common_AcquireImageANDROID()
121 VkResult result = VK_SUCCESS; in vk_common_QueueSignalReleaseImageANDROID() local
138 result = device->dispatch_table.GetSemaphoreFdKHR(vk_device_to_handle(device), in vk_common_QueueSignalReleaseImageANDROID()
140 if (result ! in vk_common_QueueSignalReleaseImageANDROID()
[all...]
/third_party/node/deps/v8/src/base/
H A Dsys-info.cc49 long result = sysconf(_SC_NPROCESSORS_ONLN); // NOLINT(runtime/int) in NumberOfProcessors()
50 if (result == -1) { in NumberOfProcessors()
53 return static_cast<int>(result); in NumberOfProcessors()
89 int64_t result = static_cast<int64_t>(memory_info.ullTotalPhys); in AmountOfPhysicalMemory()
90 if (result < 0) result = std::numeric_limits<int64_t>::max(); in AmountOfPhysicalMemory()
91 return result; in AmountOfPhysicalMemory()
99 int64_t result = sysconf(_SC_AIX_REALMEM); in AmountOfPhysicalMemory()
100 return static_cast<int64_t>(result) * 1024L; in AmountOfPhysicalMemory()
120 int result in AmountOfVirtualMemory()
[all...]
/third_party/musl/libc-test/src/functionalext/supplement/stdio/
H A Dvfscanf.c25 int result = vfscanf(stream, fmt, ap); in readFile() local
27 return result; in readFile()
53 int result = readFile(fp, "%s %d", buffer, &val); in vfscanf_0100() local
54 if (result < 0) { in vfscanf_0100()
55 t_error("%s vfscanf get result is %d are less 0\n", __func__, result); in vfscanf_0100()
90 int result = readFile(fp, "%s %s", buffer, val); in vfscanf_0200() local
91 if (result < 0) { in vfscanf_0200()
92 t_error("%s vfscanf get result is %d are less 0\n", __func__, result); in vfscanf_0200()
127 int result = readFile(fp, "%d %d", val1, val2); vfscanf_0300() local
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/
H A DIndexBuffer9.cpp61 HRESULT result = in initialize() local
63 ANGLE_TRY_HR(GetImplAs<Context9>(context), result, in initialize() local
84 HRESULT result = mIndexBuffer->Lock(offset, size, &mapPtr, lockFlags); in mapBuffer() local
85 ANGLE_TRY_HR(GetImplAs<Context9>(context), result, "Failed to lock internal index buffer"); in mapBuffer() local
94 HRESULT result = mIndexBuffer->Unlock(); in unmapBuffer() local
95 ANGLE_TRY_HR(GetImplAs<Context9>(context), result, "Failed to unlock internal index buffer"); in unmapBuffer() local
127 HRESULT result; in discard() local
131 result = mIndexBuffer->Lock(0, 1, &mock, D3DLOCK_DISCARD); in discard()
132 ANGLE_TRY_HR(context9, result, "Failed to lock internal index buffer"); in discard()
134 result in discard()
[all...]
/third_party/skia/third_party/externals/oboe/samples/LiveEffect/src/main/cpp/
H A DFullDuplexStream.cpp34 oboe::ResultWithValue<int32_t> result = getInputStream()->read(mInputBuffer.get(), in onAudioReady() local
37 if (!result) { in onAudioReady()
41 actualFramesRead = result.value(); in onAudioReady()
55 oboe::ResultWithValue<int32_t> result = getInputStream()->read(mInputBuffer.get(), in onAudioReady() local
58 if (!result) { in onAudioReady()
65 oboe::ResultWithValue<int32_t> result = getInputStream()->read(mInputBuffer.get(), in onAudioReady() local
68 if (!result) { in onAudioReady()
71 int32_t framesRead = result.value(); in onAudioReady()
99 oboe::Result result = getInputStream()->requestStart(); in start() local
100 if (result ! in start()
[all...]
/third_party/skia/third_party/externals/tint/src/writer/wgsl/
H A Dgenerator_impl_constructor_test.cc33 EXPECT_THAT(gen.result(), HasSubstr("false")); in TEST_F()
42 EXPECT_THAT(gen.result(), HasSubstr("-12345")); in TEST_F()
51 EXPECT_THAT(gen.result(), HasSubstr("56779u")); in TEST_F()
61 EXPECT_THAT(gen.result(), HasSubstr("1073741824.0")); in TEST_F()
70 EXPECT_THAT(gen.result(), HasSubstr("f32(-0.000012)")); in TEST_F()
79 EXPECT_THAT(gen.result(), HasSubstr("bool(true)")); in TEST_F()
88 EXPECT_THAT(gen.result(), HasSubstr("i32(-12345)")); in TEST_F()
97 EXPECT_THAT(gen.result(), HasSubstr("u32(12345u)")); in TEST_F()
106 EXPECT_THAT(gen.result(), HasSubstr("vec3<f32>(1.0, 2.0, 3.0)")); in TEST_F()
116 EXPECT_THAT(gen.result(), HasSubst in TEST_F()
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/
H A Dcord_rep_btree.cc160 // decrement introduces traffic between cpus (even if the result of that
237 // Processes the final 'top level' result action for the tree.
239 static inline CordRepBtree* Finalize(CordRepBtree* tree, OpResult result) { in Finalize()
240 switch (result.action) { in Finalize()
245 return edge_type == kBack ? CordRepBtree::New(tree, result.tree) in Finalize()
246 : CordRepBtree::New(result.tree, tree); in Finalize()
251 return result.tree; in Finalize()
254 return result.tree; in Finalize()
257 // Propagate the action result in 'result' u
310 Propagate(CordRepBtree* tree, int depth, size_t length, OpResult result) Propagate() argument
441 OpResult result; SetEdge() local
468 const OpResult result = AddCordRep() local
557 OpResult result = leaf->ToOpResult(ops.owned(depth)); AddData() local
584 OpResult result = {CordRepBtree::NewLeaf<edge_type>(data, extra), kPopped}; AddData() local
612 OpResult result; Merge() local
662 const CopyResult result = {sub, height}; CopySuffix() local
719 const CopyResult result = {sub, height}; CopyPrefix() local
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/memory/
H A DvktMemoryRequirementsTests.cpp275 virtual void verifyMemoryRequirements (tcu::ResultCollector& result,
306 virtual void verifyMemoryRequirements (tcu::ResultCollector& result,
405 tcu::ResultCollector result(log, "ERROR: "); in execTest()
413 verifyMemoryRequirements(result, memoryProperties, limits, bufferFlags, usage); in execTest()
420 result.check(m_currentTestRequirements.memoryTypeBits == previousMemoryTypeBits, in execTest()
423 result.check(m_currentTestRequirements.alignment == previousAlignment, in execTest()
427 if (result.getResult() != QP_TEST_RESULT_PASS) in execTest()
458 void BufferMemoryRequirementsOriginal::verifyMemoryRequirements (tcu::ResultCollector& result, in verifyMemoryRequirements() argument
464 if (result.check(m_currentTestRequirements.memoryTypeBits != 0, "VkMemoryRequirements memoryTypeBits has no bits set")) in verifyMemoryRequirements()
475 result in verifyMemoryRequirements()
672 verifyMemoryRequirements(tcu::ResultCollector& result, const VkPhysicalDeviceMemoryProperties& deviceMemoryProperties, const VkPhysicalDeviceLimits& limits, const VkBufferCreateFlags bufferFlags, const VkBufferUsageFlags usage) verifyMemoryRequirements() argument
760 verifyMemoryRequirements(tcu::ResultCollector& result, const VkPhysicalDeviceMemoryProperties& deviceMemoryProperties, const VkPhysicalDeviceLimits& limits, const VkBufferCreateFlags bufferFlags, const VkBufferUsageFlags usage) verifyMemoryRequirements() argument
961 verifyMemoryRequirements(tcu::ResultCollector& result, const VkPhysicalDeviceMemoryProperties& deviceMemoryProperties) verifyMemoryRequirements() argument
1179 const VkResult result = vki.getPhysicalDeviceImageFormatProperties( isImageSupported() local
1699 verifyMemoryRequirements(tcu::ResultCollector& result, const VkPhysicalDeviceMemoryProperties& deviceMemoryProperties) verifyMemoryRequirements() argument
1777 verifyMemoryRequirements(tcu::ResultCollector& result, const VkPhysicalDeviceMemoryProperties& deviceMemoryProperties) verifyMemoryRequirements() argument
1890 const VkResult result = vki.getPhysicalDeviceImageFormatProperties( isMultiplaneImageSupported() local
[all...]
/third_party/node/deps/brotli/c/dec/
H A Ddecode.c376 const HuffmanCode* table, BrotliBitReader* br, uint32_t* result) { in SafeDecodeSymbol()
382 *result = BROTLI_HC_FAST_LOAD_VALUE(table); in SafeDecodeSymbol()
392 *result = BROTLI_HC_FAST_LOAD_VALUE(table); in SafeDecodeSymbol()
411 *result = BROTLI_HC_FAST_LOAD_VALUE(table); in SafeDecodeSymbol()
416 const HuffmanCode* table, BrotliBitReader* br, uint32_t* result) { in SafeReadSymbol()
419 *result = DecodeSymbol(val, table, br); in SafeReadSymbol()
422 return SafeDecodeSymbol(table, br, result); in SafeReadSymbol()
446 uint32_t result = *value; in ReadPreloadedSymbol() local
455 result = BROTLI_HC_FAST_LOAD_VALUE(ext); in ReadPreloadedSymbol()
460 return result; in ReadPreloadedSymbol()
375 SafeDecodeSymbol( const HuffmanCode* table, BrotliBitReader* br, uint32_t* result) SafeDecodeSymbol() argument
415 SafeReadSymbol( const HuffmanCode* table, BrotliBitReader* br, uint32_t* result) SafeReadSymbol() argument
464 uint32_t result = 0; Log2Floor() local
788 BrotliDecoderErrorCode result = ReadHuffmanCode() local
819 BrotliDecoderErrorCode result = ReadCodeLengthCodeLengths(s); ReadHuffmanCode() local
843 BrotliDecoderErrorCode result = ReadSymbolCodeLengths( ReadHuffmanCode() local
884 SafeReadBlockLength( BrotliDecoderState* s, uint32_t* result, const HuffmanCode* table, BrotliBitReader* br) SafeReadBlockLength() argument
972 BrotliDecoderErrorCode result = ReadHuffmanCode(group->alphabet_size_max, HuffmanTreeGroupDecode() local
996 BrotliDecoderErrorCode result = BROTLI_DECODER_SUCCESS; DecodeContextMap() local
1389 BrotliDecoderErrorCode result; CopyUncompressedBlockToOutput() local
1738 BrotliDecoderErrorCode result = BROTLI_DECODER_SUCCESS; ProcessCommandsInternal() local
2039 BrotliDecoderResult result; BrotliDecoderDecompress() local
2072 BrotliDecoderErrorCode result = BROTLI_DECODER_SUCCESS; BrotliDecoderDecompressStream() local
2552 uint8_t* result = 0; BrotliDecoderTakeOutput() local
[all...]
/third_party/skia/third_party/externals/brotli/c/dec/
H A Ddecode.c376 const HuffmanCode* table, BrotliBitReader* br, uint32_t* result) { in SafeDecodeSymbol()
382 *result = BROTLI_HC_FAST_LOAD_VALUE(table); in SafeDecodeSymbol()
392 *result = BROTLI_HC_FAST_LOAD_VALUE(table); in SafeDecodeSymbol()
411 *result = BROTLI_HC_FAST_LOAD_VALUE(table); in SafeDecodeSymbol()
416 const HuffmanCode* table, BrotliBitReader* br, uint32_t* result) { in SafeReadSymbol()
419 *result = DecodeSymbol(val, table, br); in SafeReadSymbol()
422 return SafeDecodeSymbol(table, br, result); in SafeReadSymbol()
446 uint32_t result = *value; in ReadPreloadedSymbol() local
455 result = BROTLI_HC_FAST_LOAD_VALUE(ext); in ReadPreloadedSymbol()
460 return result; in ReadPreloadedSymbol()
375 SafeDecodeSymbol( const HuffmanCode* table, BrotliBitReader* br, uint32_t* result) SafeDecodeSymbol() argument
415 SafeReadSymbol( const HuffmanCode* table, BrotliBitReader* br, uint32_t* result) SafeReadSymbol() argument
464 uint32_t result = 0; Log2Floor() local
788 BrotliDecoderErrorCode result = ReadHuffmanCode() local
819 BrotliDecoderErrorCode result = ReadCodeLengthCodeLengths(s); ReadHuffmanCode() local
843 BrotliDecoderErrorCode result = ReadSymbolCodeLengths( ReadHuffmanCode() local
884 SafeReadBlockLength( BrotliDecoderState* s, uint32_t* result, const HuffmanCode* table, BrotliBitReader* br) SafeReadBlockLength() argument
972 BrotliDecoderErrorCode result = ReadHuffmanCode(group->alphabet_size_max, HuffmanTreeGroupDecode() local
996 BrotliDecoderErrorCode result = BROTLI_DECODER_SUCCESS; DecodeContextMap() local
1389 BrotliDecoderErrorCode result; CopyUncompressedBlockToOutput() local
1738 BrotliDecoderErrorCode result = BROTLI_DECODER_SUCCESS; ProcessCommandsInternal() local
2039 BrotliDecoderResult result; BrotliDecoderDecompress() local
2072 BrotliDecoderErrorCode result = BROTLI_DECODER_SUCCESS; BrotliDecoderDecompressStream() local
2552 uint8_t* result = 0; BrotliDecoderTakeOutput() local
[all...]

Completed in 20 milliseconds

1...<<51525354555657585960>>...463