Home
last modified time | relevance | path

Searched refs:temp (Results 1476 - 1500 of 1903) sorted by relevance

1...<<51525354555657585960>>...77

/third_party/spirv-tools/source/opt/
H A Dconst_folding_rules.cpp1471 const analysis::Constant* temp = FoldFPBinaryOp(
1473 if (temp == nullptr) {
1476 return FoldFPBinaryOp(FoldMin, inst->type_id(), {temp, constants[3]},
1497 const analysis::Constant* temp =
1499 if (temp == min_val) {
1525 const analysis::Constant* temp =
1527 if (temp == max_val) {
/third_party/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_sample_soa.c2214 LLVMValueRef temp; in lp_build_sample_aniso() local
2215 temp = lp_build_mul(coord_bld, d, C); in lp_build_sample_aniso()
2216 temp = lp_build_mul(coord_bld, temp, F); in lp_build_sample_aniso()
2217 temp = lp_build_sqrt(coord_bld, temp); in lp_build_sample_aniso()
2220 box_u = lp_build_mul(coord_bld, box_u, temp); in lp_build_sample_aniso()
2224 temp = lp_build_mul(coord_bld, A, d); in lp_build_sample_aniso()
2225 temp = lp_build_mul(coord_bld, temp, in lp_build_sample_aniso()
[all...]
/third_party/icu/icu4c/source/test/cintltst/
H A Dccaltst.c533 UChar temp[30]; in TestGetSetDateAPI() local
718 u_strcpy(temp, u"Dec 17, 1971, 11:05:28\u202FPM"); in TestGetSetDateAPI()
725 if(u_strcmp(myDateFormat(datdef, d1), temp)==0) in TestGetSetDateAPI()
749 u_strcpy(temp, u"May 3, 1972, 4:30:42\u202FPM"); in TestGetSetDateAPI()
756 if(u_strcmp(myDateFormat(datdef, d1), temp)==0) in TestGetSetDateAPI()
1322 double temp; in testZones() local
1373 temp=(double)((double)offset / 1000.0 / 60.0 / 60.0); in testZones()
1374 /*printf("offset for %s %f hr\n", austrdup(myDateFormat(datfor, date1)), temp);*/ in testZones()
1387 temp=(double)(utc - expected)/ 1000 / 60 / 60.0; in testZones()
1388 log_err("FAIL: Discrepancy of %d millis = %fhr\n", utc-expected, temp ); in testZones()
[all...]
/third_party/FreeBSD/sys/dev/usb/storage/
H A Dumass.c900 struct umass_probe_proto temp; in umass_probe() local
905 temp = umass_probe_proto(dev, uaa); in umass_probe()
907 return (temp.error); in umass_probe()
917 struct umass_probe_proto temp = umass_probe_proto(dev, uaa); in umass_attach() local
929 sc->sc_proto = temp.proto; in umass_attach()
930 sc->sc_quirks = temp.quirks; in umass_attach()
1569 uint32_t temp = UGETDW(sc->csw.dCSWSignature); in umass_t_bbb_status_callback() local
1571 if ((temp == CSWSIGNATURE_OLYMPUS_C1) || in umass_t_bbb_status_callback()
1572 (temp == CSWSIGNATURE_IMAGINATION_DBX1)) { in umass_t_bbb_status_callback()
/third_party/node/deps/v8/src/parsing/
H A Dparser.cc1933 // return (temp = expr) === undefined ? this : temp; in RewriteReturn()
1935 // temp = expr in RewriteReturn()
1936 Variable* temp = NewTemporary(ast_value_factory()->empty_string()); in RewriteReturn() local
1938 Token::ASSIGN, factory()->NewVariableProxy(temp), return_value, pos); in RewriteReturn()
1940 // temp === undefined in RewriteReturn()
1945 // is_undefined ? this : temp in RewriteReturn()
1951 factory()->NewVariableProxy(temp), pos); in RewriteReturn()
2223 // var temp;
2224 // for (temp i
2236 Variable* temp = NewTemporary(ast_value_factory()->dot_for_string()); DesugarBindingInForEachStatement() local
2324 Variable* temp = NewTemporary(temp_name); DesugarLexicalBindingsInForStatement() local
[all...]
/third_party/libcoap/src/
H A Dcoap_openssl.c504 coap_bin_const_t temp; in coap_dtls_psk_client_callback() local
517 temp.s = hint ? (const uint8_t *)hint : (const uint8_t *)""; in coap_dtls_psk_client_callback()
518 temp.length = strlen((const char *)temp.s); in coap_dtls_psk_client_callback()
519 coap_session_refresh_psk_hint(c_session, &temp); in coap_dtls_psk_client_callback()
521 coap_log_debug("got psk_identity_hint: '%.*s'\n", (int)temp.length, in coap_dtls_psk_client_callback()
522 (const char *)temp.s); in coap_dtls_psk_client_callback()
527 lhint.s = temp.s; in coap_dtls_psk_client_callback()
528 lhint.length = temp.length; in coap_dtls_psk_client_callback()
1300 /* Need to use a temp variabl in setup_pki_server()
[all...]
/foundation/arkui/ace_engine/test/unittest/core/pattern/navigation/
H A Dnavigation_test_ng.cpp425 auto temp = NavDestinationGroupNode::GetOrCreateGroupNode( in HWTEST_F() local
438 []() { return FrameNode::CreateFrameNode("temp", 234, AceType::MakeRefPtr<ButtonPattern>()); }); in HWTEST_F()
439 navDestination5->contentNode_ = FrameNode::CreateFrameNode("temp", 235, AceType::MakeRefPtr<ButtonPattern>()); in HWTEST_F()
459 navigation->UpdateNavDestinationNodeWithoutMarkDirty(temp); in HWTEST_F()
569 auto temp = NavDestinationGroupNode::GetOrCreateGroupNode( in HWTEST_F() local
576 []() { return FrameNode::CreateFrameNode("temp", 236, AceType::MakeRefPtr<ButtonPattern>()); }); in HWTEST_F()
577 navDestination5->contentNode_ = FrameNode::CreateFrameNode("temp", 245, AceType::MakeRefPtr<ButtonPattern>()); in HWTEST_F()
583 pattern7->customNode_ = AceType::RawPtr(temp); in HWTEST_F()
597 navigation->UpdateNavDestinationNodeWithoutMarkDirty(temp); in HWTEST_F()
930 RefPtr<FrameNode> frameNode = FrameNode::CreateFrameNode("temp", 24 in HWTEST_F()
[all...]
/foundation/multimedia/audio_framework/services/audio_service/client/src/
H A Daudio_process_in_client.cpp756 int16_t temp = static_cast<int16_t>((static_cast<double>(*stcPtr) / maxInt32) * maxInt16); in S32MonoToS16Stereo() local
758 *(dstPtr++) = temp; in S32MonoToS16Stereo()
759 *(dstPtr++) = temp; in S32MonoToS16Stereo()
777 int16_t temp = static_cast<int16_t>((static_cast<double>(*stcPtr) / maxInt32) * maxInt16); in S32StereoS16Stereo() local
779 *(dstPtr++) = temp; in S32StereoS16Stereo()
/foundation/multimedia/image_framework/frameworks/innerkitsimpl/test/unittest/image_source_test/
H A Dmetadata_stream_test.cpp1525 BufferMetadataStream temp; in HWTEST_F() local
1526 temp.Open(); in HWTEST_F()
1527 temp.Write((uint8_t*)"Hello, world", 13); in HWTEST_F()
1528 BufferMetadataStream src(temp.GetAddr(), temp.GetSize(), BufferMetadataStream::Dynamic); in HWTEST_F()
/foundation/multimedia/av_codec/services/media_engine/plugins/source/http_source/utils/
H A Dmedia_cached_buffer.cpp119 uint8_t* temp = bufferAddr_; in Init() local
121 auto chunkInfo = reinterpret_cast<CacheChunk*>(temp); in Init()
126 temp += sizePerChunk; in Init()
187 uint64_t temp = readOffset > static_cast<uint64_t>(fragmentPos->accessLength) ? in ReadInner() local
189 if (temp >= ACCESS_OFFSET_MAX_LENGTH) { in ReadInner()
/foundation/multimedia/player_framework/frameworks/js/avplayer/
H A Davplayer_callback.cpp1246 DrmInfoItem temp = drmInfos[i]; in SetDrmInfoData() local
1250 ssConverter << std::hex << static_cast<int32_t>(temp.uuid[index]); in SetDrmInfoData()
1253 std::vector<uint8_t> pssh(temp.pssh, temp.pssh + temp.psshLen); in SetDrmInfoData()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/storage/
H A Ddistributeddb_relational_cloud_syncable_storage_test.cpp320 Asset temp = g_localAsset; in fillCloudAssetTest() local
321 temp.flag = static_cast<uint32_t>(j); in fillCloudAssetTest()
322 temp.status = static_cast<uint32_t>(statusType); in fillCloudAssetTest()
323 temp.timestamp = g_startTime + j; in fillCloudAssetTest()
324 assets.push_back(temp); in fillCloudAssetTest()
/third_party/ffmpeg/libavcodec/
H A Dscpr3.c1018 int ret, temp, min, max, x, y, cx = 0, cx1 = 0; in decompress_p3() local
1035 s->range_model3.dectab, &temp); in decompress_p3()
1039 min += temp << 8; in decompress_p3()
1049 s->range_model3.dectab, &temp); in decompress_p3()
1053 max += temp << 8; in decompress_p3()
/third_party/ffmpeg/libavfilter/
H A Dvf_deshake_opencl.c1741 cl_mem src, temp; in queue_frame() local
1962 temp = deshake_ctx->prev_descriptors; in queue_frame()
1964 deshake_ctx->descriptors = temp; in queue_frame()
1967 temp = deshake_ctx->prev_refined_features; in queue_frame()
1969 deshake_ctx->refined_features = temp; in queue_frame()
/third_party/ffmpeg/libavformat/
H A Drmdec.c1185 int64_t pos, offset=0, temp; in ivr_read_header() local
1197 temp = avio_rb64(pb); in ivr_read_header()
1198 while (!avio_feof(pb) && temp) { in ivr_read_header()
1199 offset = temp; in ivr_read_header()
1200 temp = avio_rb64(pb); in ivr_read_header()
H A Dhttp.c1821 char temp[11] = ""; /* 32-bit hex + CRLF + nul */ in http_write() local
1835 snprintf(temp, sizeof(temp), "%x\r\n", size); in http_write()
1837 if ((ret = ffurl_write(s->hd, temp, strlen(temp))) < 0 || in http_write()
/third_party/googletest/googlemock/scripts/generator/cpp/
H A Dast.py1280 temp = self._GetNextToken()
1281 if temp.token_type == tokenize.SYNTAX and temp.name == '(':
1290 assert temp.name == ';', (temp, name_tokens, var_token)
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DDateTimePatternGenerator.java472 HashMap<String, String[]> temp = new HashMap<>();
478 DayPeriodAllowedHoursSink allowedHoursSink = new DayPeriodAllowedHoursSink(temp);
481 LOCALE_TO_ALLOWED_HOUR = Collections.unmodifiableMap(temp);
2121 String temp = adjustFieldTypes(tempWithMatcher, source, flags, options); in getBestAppending()
2125 getAppendFormat(topField), 2, 3, resultPattern, temp, getAppendName(topField)); in getBestAppending()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DDateTimePatternGenerator.java450 HashMap<String, String[]> temp = new HashMap<>();
456 DayPeriodAllowedHoursSink allowedHoursSink = new DayPeriodAllowedHoursSink(temp);
459 LOCALE_TO_ALLOWED_HOUR = Collections.unmodifiableMap(temp);
1992 String temp = adjustFieldTypes(tempWithMatcher, source, flags, options); in getBestAppending()
1996 getAppendFormat(topField), 2, 3, resultPattern, temp, getAppendName(topField)); in getBestAppending()
/third_party/lame/libmp3lame/
H A Dpsymodel.c1618 FLOAT tempx, x, tempy, temp; in s3_func() local
1626 temp = tempx - 0.5; in s3_func()
1627 x = 8.0 * (temp * temp - 2.0 * temp); in s3_func()
/third_party/icu/icu4c/source/test/intltest/
H A Dtztest.cpp544 UnicodeString temp; in TestGetAvailableIDs913() local
547 else if (tz->getID(temp) != UCAL_UNKNOWN_ZONE_ID) in TestGetAvailableIDs913()
548 errln("FAIL: getTimeZone(NON_EXISTENT) = " + temp); in TestGetAvailableIDs913()
1198 UnicodeString itsID, temp; in TestCustomParse() local
1220 dataerrln("Expected offset of " + formatOffset(exp, temp) + in TestCustomParse()
/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/
H A DDemo.java362 Label temp = new Label(" Name:"); in initMenus()
363 rulesDialog.getBottom().add(temp); in initMenus()
734 String temp = id.substring(0,dashPos); in genTestFile()
735 if (temp.equals("ja")) sourceSuper = new UnicodeSet("[[:Han:][:hiragana:][:katakana:]]"); in genTestFile()
736 else sourceSuper = new UnicodeSet("[[:" + temp + ":][:Mn:][:Me:]]"); in genTestFile()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/synchronization/
H A DvktSynchronizationInternallySynchronizedObjectsTests.cpp113 Queues temp; in addQueueFamilyIndex() local
115 it = temp.available.begin(); in addQueueFamilyIndex()
116 temp.available.insert(it, count, false); in addQueueFamilyIndex()
118 temp.queues.resize(count); in addQueueFamilyIndex()
120 m_queues[queueFamilyIndex] = temp; in addQueueFamilyIndex()
/third_party/vk-gl-cts/external/openglcts/modules/gl/
H A Dgl3cCommonBugsTests.cpp114 " vec4 temp;\n" in initTest()
121 " result = temp;\n" in initTest()
959 char temp[1024]; in iterate() local
961 gl.getShaderInfoLog(so_id, 1024, NULL, temp); in iterate()
5655 char temp[4096]; in iterate()
5660 temp); in iterate()
5672 << temp in iterate()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/synchronization/
H A DvktSynchronizationInternallySynchronizedObjectsTests.cpp113 Queues temp; in addQueueFamilyIndex() local
115 it = temp.available.begin(); in addQueueFamilyIndex()
116 temp.available.insert(it, count, false); in addQueueFamilyIndex()
118 temp.queues.resize(count); in addQueueFamilyIndex()
120 m_queues[queueFamilyIndex] = temp; in addQueueFamilyIndex()

Completed in 92 milliseconds

1...<<51525354555657585960>>...77