/third_party/FreeBSD/stand/kshim/ |
H A D | bsd_busspace.c | 104 uint8_t temp = *datap++; in bus_space_write_multi_1() local 106 bus_space_write_1(t, h, offset, temp); in bus_space_write_multi_1() 115 uint16_t temp = *datap++; in bus_space_write_multi_2() local 117 bus_space_write_2(t, h, offset, temp); in bus_space_write_multi_2()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/ |
H A D | DisplayNameTest.java | 89 Set temp = new TreeSet(Arrays.asList(TimeZone.getAvailableIDs())); in getRealZoneIDs() 90 temp.removeAll(getAliasMap().keySet()); in getRealZoneIDs() 91 return (String[])temp.toArray(new String[temp.size()]); in getRealZoneIDs()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/ |
H A D | DisplayNameTest.java | 86 Set temp = new TreeSet(Arrays.asList(TimeZone.getAvailableIDs())); in getRealZoneIDs() 87 temp.removeAll(getAliasMap().keySet()); in getRealZoneIDs() 88 return (String[])temp.toArray(new String[temp.size()]); in getRealZoneIDs()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | CurrencyMetaInfo.java | 526 CurrencyMetaInfo temp = null; 530 temp = (CurrencyMetaInfo) clzz.newInstance(); 533 temp = new CurrencyMetaInfo(); 535 impl = temp;
|
/third_party/node/deps/icu-small/source/common/ |
H A D | servls.cpp | 79 UnicodeString temp; in get() local 80 result = getKey(*key, &temp, status); in get() 83 key->parseSuffix(temp); in get() 84 LocaleUtility::initLocaleFromName(temp, *actualReturn); in get()
|
/third_party/mesa3d/src/gallium/drivers/nouveau/nv30/ |
H A D | nvfx_shader.h | 123 * 0-1: source register type (0 = temp, 1 = input, 2 = immediate, 3 = ???) 124 * 2-7: source temp register index 132 * There appears to be no special difference between result regs and temp regs. 154 * The temp/result regs appear to be initialised to (0.0, 0.0, 0.0, 0.0) as SWIZZLE_ZERO 472 struct nvfx_reg temp = { in nvfx_reg() local 476 return temp; in nvfx_reg() 482 struct nvfx_src temp = { in nvfx_src() local 489 return temp; in nvfx_src()
|
/third_party/libwebsockets/minimal-examples/crypto/minimal-crypto-cose-key/ |
H A D | main.c | 112 uint8_t *kid = NULL, ktmp[4096], set_temp[32 * 1024], temp[256]; in main() local 192 int n = (int)read(fdin, temp, sizeof(temp)); in main() 240 memcpy(set_temp + stp, temp, (size_t)n); in main()
|
/third_party/rust/crates/bindgen/csmith-fuzzing/ |
H A D | predicate.py | 49 "--save-temp-files", 180 temp = NamedTemporaryFile(delete=False, prefix=prefix, suffix=suffix) 181 temp.close() 182 TEMP_FILES.append(temp.name) 183 return temp.name
|
/third_party/skia/src/core/ |
H A D | SkColorSpaceXformSteps.cpp | 113 float temp[3] = { rgba[0], rgba[1], rgba[2] }; in apply() local 115 rgba[i] = src_to_dst_matrix[ i] * temp[0] + in apply() 116 src_to_dst_matrix[3 + i] * temp[1] + in apply() 117 src_to_dst_matrix[6 + i] * temp[2]; in apply()
|
H A D | SkDeque.cpp | 221 for (const Block* temp = fFrontBlock; temp; temp = temp->fNext) { in numBlocksAllocated()
|
/third_party/skia/src/gpu/effects/ |
H A D | GrGaussianConvolutionFragmentProcessor.cpp | 270 SkIRect temp; in TestCreate() local 273 temp = { in TestCreate() 279 temp.sort(); in TestCreate() 280 domain = &temp; in TestCreate()
|
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | servls.cpp | 79 UnicodeString temp; in get() local 80 result = getKey(*key, &temp, status); in get() 83 key->parseSuffix(temp); in get() 84 LocaleUtility::initLocaleFromName(temp, *actualReturn); in get()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
H A D | ICUResourceBundleReader.java | 389 CharBuffer temp = bytes.asCharBuffer(); in getChars() 390 temp.position(offset / 2); in getChars() 391 temp.get(chars); in getChars() 405 IntBuffer temp = bytes.asIntBuffer(); in getInts() 406 temp.position(offset / 4); in getInts() 407 temp.get(ints); in getInts() 420 CharBuffer temp = b16BitUnits.duplicate(); in getTable16KeyOffsets() 421 temp.position(offset); in getTable16KeyOffsets() 422 temp.get(result); in getTable16KeyOffsets() 667 ByteBuffer temp in getBinary() [all...] |
/third_party/icu/icu4c/source/test/intltest/ |
H A D | transrt.cpp | 956 char temp[TEMP_MAX]; in TestKana() local 957 strcpy(temp, "["); in TestKana() 958 strcat(temp, HALFWIDTH_KATAKANA); in TestKana() 959 strcat(temp, LENGTH); in TestKana() 960 strcat(temp, "]"); in TestKana() 962 temp, in TestKana() 979 char temp[TEMP_MAX]; in TestKatakana() local 980 strcpy(temp, "["); in TestKatakana() 981 strcat(temp, KATAKANA_ITERATION); in TestKatakana() 982 strcat(temp, HALFWIDTH_KATAKAN in TestKatakana() [all...] |
H A D | ustrtest.cpp | 103 UChar temp[80]; in TestBasicManipulation() local 104 test1.extract(0, 15, temp); in TestBasicManipulation() 106 UnicodeString test2(temp, 15); in TestBasicManipulation() 2023 UnicodeString temp; in TestReadOnlyAlias() local 2024 temp.fastCopyFrom(longString.tempSubString()); in TestReadOnlyAlias() 2025 if(temp!=longString || (hasRVO && temp.getBuffer()!=longString.getBuffer())) { in TestReadOnlyAlias() 2028 temp.fastCopyFrom(longString.tempSubString(-3, 5)); in TestReadOnlyAlias() 2029 if(longString.compare(0, 5, temp)!=0 || (hasRVO && temp in TestReadOnlyAlias() [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
H A D | ICUResourceBundleReader.java | 391 CharBuffer temp = bytes.asCharBuffer(); in getChars() 392 temp.position(offset / 2); in getChars() 393 temp.get(chars); in getChars() 407 IntBuffer temp = bytes.asIntBuffer(); in getInts() 408 temp.position(offset / 4); in getInts() 409 temp.get(ints); in getInts() 422 CharBuffer temp = b16BitUnits.duplicate(); in getTable16KeyOffsets() 423 temp.position(offset); in getTable16KeyOffsets() 424 temp.get(result); in getTable16KeyOffsets() 669 ByteBuffer temp in getBinary() [all...] |
/third_party/protobuf/src/google/protobuf/ |
H A D | struct.pb.h | 970 PROTOBUF_NAMESPACE_ID::Struct* temp = kind_.struct_value_; in release_struct_value() local 972 temp = ::PROTOBUF_NAMESPACE_ID::internal::DuplicateIfNonNull(temp); in release_struct_value() 975 return temp; in release_struct_value() 993 PROTOBUF_NAMESPACE_ID::Struct* temp = kind_.struct_value_; in unsafe_arena_release_struct_value() local 995 return temp; in unsafe_arena_release_struct_value() 1043 PROTOBUF_NAMESPACE_ID::ListValue* temp = kind_.list_value_; in release_list_value() local 1045 temp = ::PROTOBUF_NAMESPACE_ID::internal::DuplicateIfNonNull(temp); in release_list_value() 1048 return temp; in release_list_value() 1066 PROTOBUF_NAMESPACE_ID::ListValue* temp = kind_.list_value_; unsafe_arena_release_list_value() local [all...] |
/third_party/mesa3d/src/intel/compiler/ |
H A D | brw_eu_compact.c | 1823 brw_compact_inst temp; in try_compact_instruction() local 1829 memset(&temp, 0, sizeof(temp)); in try_compact_instruction() 1830 if (brw_try_compact_3src_instruction(devinfo, &temp, src)) { in try_compact_instruction() 1831 *dst = temp; in try_compact_instruction() 1860 memset(&temp, 0, sizeof(temp)); in try_compact_instruction() 1863 brw_compact_inst_set_##field(devinfo, &temp, brw_inst_##field(devinfo, src)) in try_compact_instruction() 1865 brw_compact_inst_set_##field##_reg_nr(devinfo, &temp, \ in try_compact_instruction() 1871 if (!set_control_index(c, &temp, sr in try_compact_instruction() [all...] |
/third_party/toybox/toys/pending/ |
H A D | fdisk.c | 814 sector_t start, limit, temp = 0, start_cyl, limit_cyl, offset = 1; in ask_start_sector() local 851 temp = ask_value(mesg, disp_unit_cyl? start_cyl : start, in ask_start_sector() 857 temp = (temp-1) * g_heads * g_sectors; in ask_start_sector() 858 if (temp < start) //the boundary is falling in the already used sectors. in ask_start_sector() 859 temp = start; in ask_start_sector() 861 start = temp; in ask_start_sector() 869 sector_t limit, temp = 0, start_cyl, limit_cyl, start = start_sec; in ask_end_sector() local 899 temp = ask_value(mesg, disp_unit_cyl? start_cyl : start, in ask_end_sector() 903 temp in ask_end_sector() 1223 struct partition *px, *py, temp, *pj, *pjj, tmp; fix_order() local [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | ttaenc.c | 113 int32_t value, temp; in tta_encode_frame() local 124 temp = value; in tta_encode_frame() 131 c->predictor = temp; in tta_encode_frame()
|
H A D | ra288.c | 180 float temp[MAX_BACKWARD_FILTER_ORDER+1]; in backward_filter() local 182 do_hybrid_window(ractx, order, n, non_rec, temp, hist, rec, window); in backward_filter() 184 if (!compute_lpc_coefs(temp, order, lpc, 0, 1, 1)) in backward_filter()
|
/third_party/cups-filters/cupsfilters/ |
H A D | image-png.c | 119 int temp = -1; in _cupsImageReadPNG() local 126 temp = _cupsImageReadEXIF(img, fp); in _cupsImageReadPNG() 132 if (temp != 1 && (xppm = png_get_x_pixels_per_meter(pp, info)) != 0 && in _cupsImageReadPNG()
|
/third_party/gptfdisk/ |
H A D | support.cc | 274 unsigned int temp; in StrToHex() local 277 sscanf(input.substr(position, 2).c_str(), "%x", &temp); in StrToHex() 278 retval = (unsigned char) temp; in StrToHex()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
H A D | NumberingSystem.java | 269 UResourceBundle temp; in getAvailableNames() 275 temp = it.next(); in getAvailableNames() 276 nsName = temp.getKey(); in getAvailableNames()
|
/third_party/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/ |
H A D | BreakTransliterator.java | 108 int[] temp = new int[boundaries.length * 2]; in handleTransliterate() 109 System.arraycopy(boundaries, 0, temp, 0, boundaries.length); in handleTransliterate() 110 boundaries = temp; in handleTransliterate()
|