/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/ |
H A D | vktTestPackage.cpp | 573 const tcu::TestStatus result = m_instance->iterate(); in iterate() local 575 if (result.isComplete()) in iterate() 577 // Vulkan tests shouldn't set result directly except when using a debug report messenger to catch validation errors. in iterate() 580 // Override result if not set previously by a debug report messenger. in iterate() 582 m_context->getTestContext().setTestResult(result.getCode(), result.getDescription().c_str()); in iterate()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/ |
H A D | common_module_tests.c | 25 ParseRes result; member 101 if (res != test->result || in ieee802_11_parse_tests() 152 int result; member 216 test->result) { in rsn_ie_parse_tests()
|
/drivers/hdf_core/framework/tools/hdi-gen/parser/ |
H A D | parser.cpp | 170 std::cmatch result;
in ParserPackageInfo() local 171 if (!std::regex_match(packageName.c_str(), result, RE_PACKAGE)) {
in ParserPackageInfo() 175 if (result.size() < RE_PACKAGE_NUM) {
in ParserPackageInfo() 179 ast_->SetPackageName(result.str(RE_PACKAGE_INDEX).c_str());
in ParserPackageInfo() 180 size_t majorVersion = std::stoul(result.str(RE_PACKAGE_MAJOR_VER_INDEX));
in ParserPackageInfo() 181 size_t minorVersion = std::stoul(result.str(RE_PACKAGE_MINOR_VER_INDEX));
in ParserPackageInfo()
|
/third_party/curl/tests/ |
H A D | servers.pm | 501 my $result = 0; 508 $result = -1; 519 return $result; 574 $res >>= 8; # rotate the result 651 my $res = $? >> 8; # rotate the result 717 $res >>= 8; # rotate the result 850 $res >>= 8; # rotate the result 937 my $res = $? >> 8; # rotate the result 997 my $res = $? >> 8; # rotate the result 2894 my $result [all...] |
/third_party/eudev/src/udev/ |
H A D | udev-rules.c | 645 char result[UTIL_LINE_SIZE]; in import_program_into_properties() local 650 err = udev_event_spawn(event, timeout_usec, timeout_warn_usec, program, envp, sigmask, result, sizeof(result)); in import_program_into_properties() 654 line = result; in import_program_into_properties() 2127 char result[UTIL_LINE_SIZE]; in udev_rules_apply_to_event() local 2138 if (udev_event_spawn(event, timeout_usec, timeout_warn_usec, program, envp, sigmask, result, sizeof(result)) < 0) { in udev_rules_apply_to_event() 2144 util_remove_trailing_chars(result, '\n'); in udev_rules_apply_to_event() 2146 count = util_replace_chars(result, UDEV_ALLOWED_CHARS_INPUT); in udev_rules_apply_to_event() 2150 event->program_result = strdup(result); in udev_rules_apply_to_event() [all...] |
/third_party/ffmpeg/libavcodec/x86/ |
H A D | vp8dsp_loopfilter.asm | 320 %ifidn %1, v ; [3]=hev() result 574 pand m0, m7 ; normal_limit result 691 %if mmsize == 16 ; [3]=hev() result 692 ; [4]=filter tmp result 694 ; [7]=lim_res sign result 962 pand m0, m7 ; normal_limit result
|
/third_party/ffmpeg/libavfilter/ |
H A D | vf_deshake_opencl.c | 529 int result = 0; in estimate_affine_2d() local 594 result = 1; in estimate_affine_2d() 597 return result; in estimate_affine_2d() 683 int result = 0; in minimize_error() local 728 result = 1; in minimize_error() 731 return result; in minimize_error() 832 // Always returns numbers that result in a window of length size, even if that
|
/third_party/alsa-lib/src/control/ |
H A D | control_remap.c | 1161 int result, err; in snd_ctl_remap_open() local 1173 result = err; in snd_ctl_remap_open() 1179 result = err; in snd_ctl_remap_open() 1197 result = -ENOMEM; in snd_ctl_remap_open() 1206 result = err; in snd_ctl_remap_open() 1218 return result; in snd_ctl_remap_open()
|
/third_party/backends/backend/ |
H A D | teco1.c | 576 teco_sense_handler (int __sane_unused__ scsi_fd, unsigned char *result, void __sane_unused__ *arg) in teco_sense_handler() argument 583 sensekey = get_RS_sense_key (result); in teco_sense_handler() 584 len = 7 + get_RS_additional_length (result); in teco_sense_handler() 586 hexdump (DBG_info2, "sense", result, len); in teco_sense_handler() 588 if (get_RS_error_code (result) != 0x70) in teco_sense_handler() 592 get_RS_error_code (result)); in teco_sense_handler()
|
H A D | teco3.c | 422 teco_sense_handler (int __sane_unused__ scsi_fd, unsigned char *result, void __sane_unused__ *arg) in teco_sense_handler() argument 429 sensekey = get_RS_sense_key (result); in teco_sense_handler() 430 len = 7 + get_RS_additional_length (result); in teco_sense_handler() 432 hexdump (DBG_info2, "sense", result, len); in teco_sense_handler() 434 if (get_RS_error_code (result) != 0x70) in teco_sense_handler() 438 get_RS_error_code (result)); in teco_sense_handler() 1948 * shifting. So here is the result of some trial and error in sane_get_parameters()
|
/third_party/lame/frontend/ |
H A D | get_audio.c | 133 double result = 0; in read_ieee_extended_high_low() local 136 result = HUGE_VAL; in read_ieee_extended_high_low() 143 result = ldexp(mantissa_h, e); in read_ieee_extended_high_low() 145 result += ldexp(mantissa_l, e); in read_ieee_extended_high_low() 148 return s ? -result : result; in read_ieee_extended_high_low() 1121 /* Check result */ in open_snd_file() 1237 /* Check result */ in open_snd_file()
|
/third_party/jerryscript/jerry-core/ecma/operations/ |
H A D | ecma-objects.c | 777 ecma_value_t result = ecma_op_object_find_own (ecma_make_object_value (object_p), in ecma_op_object_get_own_data_prop() 792 return result; in ecma_op_object_get_own_data_prop() 801 * with its result (including error throws). 822 * with its result (including error throws). 919 * with its result (including error throws). 1179 ecma_value_t result; in ecma_op_object_put_apply_receiver() local 1185 result = ecma_reject (is_throw); in ecma_op_object_put_apply_receiver() 1195 result = ecma_op_object_define_own_property (receiver_obj_p, property_name_p, &prop_desc); in ecma_op_object_put_apply_receiver() 1200 return result; in ecma_op_object_put_apply_receiver() 1728 ecma_preferred_type_hint_t hint) /**< hint on preferred result typ in ecma_op_object_default_value() [all...] |
/third_party/node/deps/v8/src/wasm/ |
H A D | wasm-debug.cc | 283 WasmCompilationResult result = ExecuteLiftoffCompilation( in RecompileLiftoffWithBreakpoints() local 292 if (!result.succeeded()) FATAL("Liftoff compilation failed"); in RecompileLiftoffWithBreakpoints() 296 native_module_->AddCompiledCode(std::move(result))); in RecompileLiftoffWithBreakpoints() 1039 // Make sure last array element is empty as a result. in ClearBreakPoint() 1226 Handle<Object> result; in CheckBreakPoint() local 1232 .ToHandle(&result)) { in CheckBreakPoint() 1236 return result->BooleanValue(isolate); in CheckBreakPoint()
|
/third_party/nghttp2/src/ |
H A D | http2.cc | 1831 auto result = make_byte_ref(balloc, path.size() + 1); 1832 auto p = result.base; 1862 return path_join(balloc, StringRef{}, StringRef{}, StringRef{result.base, p}, 1878 auto result = make_byte_ref(balloc, path.size() + 1); 1879 auto p = result.base; 1909 return path_join(balloc, StringRef{}, StringRef{}, StringRef{result.base, p},
|
/third_party/mesa3d/src/mesa/program/ |
H A D | program_parse.y | 146 unsigned result; 225 %type <result> resultBinding resultColBinding 1851 yyerror(& @2, state, "invalid program result name"); 1860 yyerror(& @2, state, "invalid program result name"); 1873 yyerror(& @2, state, "invalid program result name"); 1882 yyerror(& @2, state, "invalid program result name"); 1891 yyerror(& @2, state, "invalid program result name"); 1917 yyerror(& @1, state, "invalid program result name"); 1926 * "result.color[n]" will fail to load, and only 1927 * "result [all...] |
/third_party/node/deps/icu-small/source/i18n/ |
H A D | tznames_impl.cpp | 113 static void mergeTimeZoneKey(const UnicodeString& mzID, char* result); 430 // then we need to get result as UTF16 code units. in search() 1209 name.setToBogus(); // cleanup result. in getMetaZoneDisplayName() 1235 name.setToBogus(); // cleanup result. in getTimeZoneDisplayName() 1261 name.setToBogus(); // cleanup result. in getExemplarLocationName() 1285 static void mergeTimeZoneKey(const UnicodeString& mzID, char* result) { in mergeTimeZoneKey() argument 1287 result[0] = '\0'; in mergeTimeZoneKey() 1295 uprv_memcpy((void *)result, (void *)gMZPrefix, prefixLen); in mergeTimeZoneKey() 1296 uprv_memcpy((void *)(result + prefixLen), (void *)mzIdChar, keyLen); in mergeTimeZoneKey() 1297 result[keyLe in mergeTimeZoneKey() [all...] |
/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/ |
H A D | Demo.java | 536 String result = ""; in printBreaks() 541 result += testSource.substring(lastPos, pos) + "&"; in printBreaks() 545 System.out.println("Test" + num + ": " + result); in printBreaks() 549 String result = ""; in printIteration() 553 result += ch + "(" + ci.getIndex() + ")"; in printIteration() 555 System.out.println("Test" + num + ": " + result); in printIteration()
|
/third_party/node/deps/v8/src/codegen/mips64/ |
H A D | macro-assembler-mips64.h | 588 // Exits with 'result' holding the answer. 589 void TruncateDoubleToI(Isolate* isolate, Zone* zone, Register result, 684 // for the result to alias either input register. 820 Register result = no_reg); 822 Register result = no_reg); 826 Register result = no_reg); 828 Register result = no_reg); 904 // succeeds, otherwise falls through if result is saturated. On return 905 // 'result' either holds answer, or is clobbered on fall through. 906 void TryInlineTruncateDoubleToI(Register result, DoubleRegiste [all...] |
/third_party/node/deps/v8/src/parsing/ |
H A D | preparser.h | 696 PreParserExpression result = PreParserExpression::Default(); in NewEmptyParentheses() local 697 result.mark_parenthesized(); in NewEmptyParentheses() 698 return result; in NewEmptyParentheses() 1505 PreParserIdentifier result = PreParserIdentifier::Default(); in EmptyIdentifierString() local 1506 result.string_ = ast_value_factory()->empty_string(); in EmptyIdentifierString() 1507 return result; in EmptyIdentifierString()
|
/third_party/node/deps/v8/src/regexp/arm64/ |
H A D | regexp-macro-assembler-arm64.cc | 881 // If returned value is non-zero, we exit with the returned value as result. in GetCode() 1593 Register result = NoReg; in GetRegister() local 1598 result = maybe_result; in GetRegister() 1601 result = GetCachedRegister(register_index).W(); in GetRegister() 1606 result = maybe_result; in GetRegister() 1611 DCHECK(result.Is32Bits()); in GetRegister() 1612 return result; in GetRegister()
|
/third_party/mesa3d/src/gallium/drivers/d3d12/ |
H A D | d3d12_compiler.cpp | 1293 unsigned result = 0; in scan_texture_use() local 1304 result |= TEX_CMP_WITH_LOD_BIAS_GRAD; in scan_texture_use() 1308 result |= TEX_SAMPLE_INTEGER_TEXTURE; in scan_texture_use() 1313 if (TEX_SCAN_ALL_FLAGS == result) in scan_texture_use() 1314 return result; in scan_texture_use() 1318 return result; in scan_texture_use()
|
/third_party/python/Lib/ |
H A D | pickle.py | 96 # the STOP opcode, passing the object that is the result of unpickling. 378 result = x.to_bytes(nbytes, byteorder='little', signed=True) 380 if result[-1] == 0xff and (result[-2] & 0x80) != 0: 381 result = result[:-1] 382 return result
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/conditional_rendering/ |
H A D | vktConditionalDrawAndClearTests.cpp | 979 tcu::ConstPixelBufferAccess result(mapVkFormat(m_testParams.m_testDepth ? VK_FORMAT_D32_SFLOAT : VK_FORMAT_R8G8B8A8_UNORM), tcu::IVec3(WIDTH, HEIGHT, 1), m_resultBuffer->getBoundMemory().getHostPtr()); in iterate() 995 if (!tcu::floatThresholdCompare(m_context.getTestContext().getLog(), "Comparison", "Comparison", reference, result, tcu::Vec4(0.01f), tcu::COMPARE_LOG_ON_ERROR)) in iterate() 1167 tcu::ConstPixelBufferAccess result(mapVkFormat(VK_FORMAT_R8G8B8A8_UNORM), tcu::IVec3(WIDTH, HEIGHT, 1), m_resultBuffer->getBoundMemory().getHostPtr()); in iterate() 1174 if (!tcu::floatThresholdCompare(m_context.getTestContext().getLog(), "Comparison", "Comparison", reference, result, tcu::Vec4(0.01f), tcu::COMPARE_LOG_ON_ERROR)) in iterate() 1468 tcu::ConstPixelBufferAccess result(mapVkFormat(VK_FORMAT_R8G8B8A8_UNORM), tcu::IVec3(WIDTH, HEIGHT, 1), m_resultBuffer->getBoundMemory().getHostPtr()); in iterate() 1475 if (!tcu::floatThresholdCompare(m_context.getTestContext().getLog(), "Comparison", "Comparison", reference, result, tcu::Vec4(0.01f), tcu::COMPARE_LOG_ON_ERROR)) in iterate()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/rasterization/ |
H A D | vktRasterizationOrderAttachmentAccessTests.cpp | 792 const auto result = vki.getPhysicalDeviceImageFormatProperties(physicalDevice, dsFormat, imageType, imageTiling, imageUsage, 0u, &formatProperties); in checkAndGetDSFormat() local 794 if (result == VK_SUCCESS) in checkAndGetDSFormat() 802 else if (result != VK_ERROR_FORMAT_NOT_SUPPORTED) in checkAndGetDSFormat() 839 const auto result = vki.getPhysicalDeviceImageFormatProperties(physicalDevice, format, imageType, imageTiling, imageUsage, 0u, &formatProperties); in checkSupport() local 840 if (result != VK_SUCCESS) in checkSupport() 842 if (result == VK_ERROR_FORMAT_NOT_SUPPORTED) in checkSupport() 1376 /* result buffer */ in createResultBuffer()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/sparse_resources/ |
H A D | vktSparseResourcesImageSparseResidency.cpp | 75 std::string result; in getFormatValueString() local 78 const auto prefix = (result.empty() ? "" : ", "); in getFormatValueString() 79 result += prefix + value; in getFormatValueString() 81 result = "(" + result + ")"; in getFormatValueString() 82 return result; in getFormatValueString() 773 // write result images to log file in iterate()
|