/base/hiviewdfx/hiview/plugins/reliability/leak_detectors/test/ |
H A D | test_util.cpp | 239 string temp = ""; in GetDightStrArr() local 242 temp += target[i]; in GetDightStrArr() 245 if (temp.size() != 0) { in GetDightStrArr() 246 ret.push_back(temp); in GetDightStrArr() 247 temp = ""; in GetDightStrArr() 250 if (temp.size() != 0) { in GetDightStrArr() 251 ret.push_back(temp); in GetDightStrArr()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/ |
H A D | TestBoilerplate.java | 156 Set temp; in verifySetsIdentical() 159 temp = new TreeSet(values1); in verifySetsIdentical() 160 temp.removeAll(values2); in verifySetsIdentical() 161 TestFmwk.errln(show(temp)); in verifySetsIdentical() 163 temp = new TreeSet(values2); in verifySetsIdentical() 164 temp.removeAll(values1); in verifySetsIdentical() 165 TestFmwk.errln(show(temp)); in verifySetsIdentical()
|
/third_party/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/ |
H A D | TestBoilerplate.java | 155 Set temp; in verifySetsIdentical() 158 temp = new TreeSet(values1); in verifySetsIdentical() 159 temp.removeAll(values2); in verifySetsIdentical() 160 TestFmwk.errln(show(temp)); in verifySetsIdentical() 162 temp = new TreeSet(values2); in verifySetsIdentical() 163 temp.removeAll(values1); in verifySetsIdentical() 164 TestFmwk.errln(show(temp)); in verifySetsIdentical()
|
/third_party/selinux/libselinux/src/ |
H A D | label_db.c | 95 char *type, *key, *context, *temp; in process_line() local 99 temp = strchr(line_buf, '#'); in process_line() 100 if (temp) in process_line() 101 *temp = '\0'; in process_line() 107 type = key = context = temp = NULL; in process_line() 109 &type, &key, &context, &temp); in process_line() 166 free(temp); in process_line()
|
/third_party/ffmpeg/libavcodec/mips/ |
H A D | h264dsp_mmi.c | 1089 int temp[8]; in ff_h264_chroma422_dc_dequant_idct_8_mmi() local 1092 temp[0] = block[0] + block[16]; in ff_h264_chroma422_dc_dequant_idct_8_mmi() 1093 temp[1] = block[0] - block[16]; in ff_h264_chroma422_dc_dequant_idct_8_mmi() 1094 temp[2] = block[32] + block[48]; in ff_h264_chroma422_dc_dequant_idct_8_mmi() 1095 temp[3] = block[32] - block[48]; in ff_h264_chroma422_dc_dequant_idct_8_mmi() 1096 temp[4] = block[64] + block[80]; in ff_h264_chroma422_dc_dequant_idct_8_mmi() 1097 temp[5] = block[64] - block[80]; in ff_h264_chroma422_dc_dequant_idct_8_mmi() 1098 temp[6] = block[96] + block[112]; in ff_h264_chroma422_dc_dequant_idct_8_mmi() 1099 temp[7] = block[96] - block[112]; in ff_h264_chroma422_dc_dequant_idct_8_mmi() 1101 t[0] = temp[ in ff_h264_chroma422_dc_dequant_idct_8_mmi() [all...] |
/base/global/i18n_lite/frameworks/i18n/src/ |
H A D | date_time_format_impl.cpp | 211 uint32_t temp = 0;
in ParseZoneInfo() local 215 temp *= DECIMAL_COUNT; // convert string to its decimal format
in ParseZoneInfo() 216 temp += (cur - '0');
in ParseZoneInfo() 219 hour = temp;
in ParseZoneInfo() 220 temp = 0;
in ParseZoneInfo() 227 if (!isHour && (temp != 0)) {
in ParseZoneInfo() 228 minute = temp;
in ParseZoneInfo() 397 string temp = "";
in ZeroPadding() local 399 temp += GetZero();
in ZeroPadding() 402 temp in ZeroPadding() 424 uint32_t temp = value; GetLength() local [all...] |
H A D | data_resource.cpp | 134 uint32_t temp = indexArray[mid];
in BinarySearchString() local 135 if (temp == target) {
in BinarySearchString() 137 } else if (temp < target) {
in BinarySearchString() 405 char *temp = reinterpret_cast<char *>(I18nMalloc(length + 1));
in Retrieve() local 406 if (temp == nullptr) {
in Retrieve() 410 int32_t readSize = read(infile, temp, length);
in Retrieve() 411 temp[length] = 0;
in Retrieve() 413 I18nFree(static_cast<void *>(temp));
in Retrieve() 416 adjustResource[currentIndex] = temp;
in Retrieve() 521 char *temp in GetString() local [all...] |
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/ |
H A D | ConstantMultiFieldModifier.java | 114 FormattedStringBuilder temp = new FormattedStringBuilder(); in toString() 115 apply(temp, 0, 0); in toString() 118 temp.subSequence(0, prefixLength), in toString() 119 temp.subSequence(prefixLength, temp.length())); in toString()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/number/ |
H A D | ConstantMultiFieldModifier.java | 116 FormattedStringBuilder temp = new FormattedStringBuilder(); in toString() 117 apply(temp, 0, 0); in toString() 120 temp.subSequence(0, prefixLength), in toString() 121 temp.subSequence(prefixLength, temp.length())); in toString()
|
/third_party/lzma/CPP/Common/ |
H A D | StdOutStream.cpp | 52 AString temp;
in operator <<() local 54 PrintUString(s2, temp);
in operator <<() 58 void CStdOutStream::PrintUString(const UString &s, AString &temp)
in PrintUString() argument 60 Convert_UString_to_AString(s, temp);
in PrintUString() 61 *this << (const char *)temp;
in PrintUString()
|
H A D | MyVector.h | 261 T temp = _items[index];
in MoveToFront() local 263 _items[0] = temp;
in MoveToFront() 279 T temp = _items[i];
281 _items[j] = temp;
371 T temp = p[k];
in SortRefDown() local 379 if (compare(&temp, p + s, param) >= 0)
in SortRefDown() 384 p[k] = temp;
in SortRefDown() 401 T temp = p[size];
in Sort() local 403 p[1] = temp;
in Sort() 411 T temp in SortRefDown2() local 441 T temp = p[size]; Sort2() local [all...] |
/third_party/ltp/testcases/commands/mkfs/ |
H A D | mkfs01.sh | 115 $mkfs_cmd >temp 2>&1 117 grep -q -E "unknown option | invalid option" temp 123 cat temp 132 cat temp 141 cat temp
|
/third_party/musl/porting/liteos_a/user/src/network/ |
H A D | serv.c | 27 char *ch, *temp, *ptr = NULL; in servent_resolv() local 32 temp = strtok_r(NULL, " \t\n", &ptr); in servent_resolv() 33 if (!ch || !temp) in servent_resolv() 37 ch = strchr(temp, '/'); in servent_resolv() 41 sd->se.s_port = atoi(temp); in servent_resolv()
|
/third_party/musl/src/network/ |
H A D | serv.c | 32 char *ch, *temp, *ptr = NULL; in servent_resolv() local 37 temp = strtok_r(NULL, " \t\n", &ptr); in servent_resolv() 38 if (!ch || !temp) in servent_resolv() 42 ch = strchr(temp, '/'); in servent_resolv() 46 sd->se.s_port = atoi(temp); in servent_resolv()
|
/third_party/skia/tools/mdbviz/ |
H A D | Model.cpp | 38 std::unique_ptr<DebugCanvas> temp( in load() 42 temp->setPicture(pic.get()); in load() 43 pic->playback(temp.get()); in load() 44 temp->setPicture(nullptr); in load() 46 temp->detachCommands(&fOps); in load()
|
/base/global/i18n_lite/tools/i18n-dat-tool/src/main/java/ohos/global/i18n/ |
H A D | Utils.java | 214 int temp = 0; in getMask() 216 temp = 1; in getMask() 218 temp = 2; in getMask() 220 temp = 3; in getMask() 222 temp = 4; in getMask() 224 temp = 5; in getMask() 226 temp = 6; in getMask() 228 temp = "Guru".equals(locale.getScript()) ? 7 : 0; in getMask() 230 mask = mask | ((long) temp << 14); in getMask() 403 String[] temp in getGetStringFromPattern() [all...] |
/third_party/libwebsockets/lib/jose/jws/ |
H A D | jose.c | 71 char *temp; member 355 args->jose->e[ctx->path_match - 1].buf = (uint8_t *)args->temp; in lws_jws_jose_cb() 359 memcpy(args->temp, ctx->buf, ctx->npos); in lws_jws_jose_cb() 360 args->temp += ctx->npos; in lws_jws_jose_cb() 375 args->temp -= (int)args->jose->e[ctx->path_match - 1].len - n - 1; in lws_jws_jose_cb() 409 char *temp, int *temp_len, int is_jwe) in lws_jose_parse() 425 args.temp = temp; in lws_jose_parse() 451 const char *buf, int len, char *temp, int *temp_len) in lws_jws_parse_jose() 454 temp, temp_le in lws_jws_parse_jose() 408 lws_jose_parse(struct lws_jose *jose, const uint8_t *buf, int n, char *temp, int *temp_len, int is_jwe) lws_jose_parse() argument 450 lws_jws_parse_jose(struct lws_jose *jose, const char *buf, int len, char *temp, int *temp_len) lws_jws_parse_jose() argument 458 lws_jwe_parse_jose(struct lws_jose *jose, const char *buf, int len, char *temp, int *temp_len) lws_jwe_parse_jose() argument [all...] |
/third_party/cups-filters/cupsfilters/ |
H A D | ppdgenerator.c | 216 temp[1024], /* Temporary string */ in _cupsStrFormatd() local 228 snprintf(temp, sizeof(temp), "%.12f", number); in _cupsStrFormatd() 229 for (tempptr = temp + strlen(temp) - 1; in _cupsStrFormatd() 230 tempptr > temp && *tempptr == '0'; in _cupsStrFormatd() 246 tempdec = strchr(temp, *dec); in _cupsStrFormatd() 248 tempdec = strstr(temp, dec); in _cupsStrFormatd() 255 for (tempptr = temp, bufptr = buf; in _cupsStrFormatd() 270 strlcpy(buf, temp, (size_ in _cupsStrFormatd() 1302 cups_size_t temp; /* Current size */ generate_sizes() local 1383 cups_size_t temp; /* Current size */ generate_sizes() local 1443 cups_size_t temp, *temp2; /* Current size, found size */ generate_sizes() local [all...] |
/third_party/vixl/src/aarch64/ |
H A D | macro-assembler-aarch64.cc | 540 Register temp; in Emit() local 543 temp = rd.IsSP() ? temps.AcquireSameSizeAs(rd) : rd; in Emit() 555 if (emit_code) masm->movn(temp, ~imm16 & 0xffff, 16 * i); in Emit() 558 if (emit_code) masm->movz(temp, imm16, 16 * i); in Emit() 564 if (emit_code) masm->movk(temp, imm16, 16 * i); in Emit() 575 if (emit_code) masm->mov(rd, temp); in Emit() 880 // Use `rd` as a temp, if we can. in Emit() 952 Register temp = temps.AcquireSameSizeAs(rn); in Emit() local 953 VIXL_ASSERT(!temp.Aliases(rn)); in Emit() 958 Operand imm_operand = MoveImmediateForShiftedOp(temp, immediat in Emit() 978 Register temp = temps.AcquireSameSizeAs(rn); Emit() local 1040 Register temp = temps.AcquireW(); Emit() local 1118 Register temp = temps.AcquireW(); Emit() local 1151 Register temp = temps.AcquireX(); Emit() local 1201 Register temp = temps.AcquireX(); Emit() local 1285 Register temp = temps.AcquireSameSizeAs(rn); Emit() local 1364 Register temp = temps.AcquireSameSizeAs(rd); Emit() local 1372 Register temp = temps.AcquireSameSizeAs(rd); Emit() local 1738 Register temp = temps.AcquireW(); Emit() local 1850 CPURegister temp = temps.AcquireCPURegisterOfSize(operand_size); Emit() local 1913 Register temp = temps.AcquireSameSizeAs(rn); Emit() local 2008 Register temp = temps.AcquireSameSizeAs(rn); Emit() local 2018 Register temp = temps.AcquireSameSizeAs(rn); Emit() local 2033 Register temp = temps.AcquireSameSizeAs(rn); Emit() local 2101 Register temp = temps.AcquireSameSizeAs(addr.GetBaseRegister()); Emit() local 2153 Register temp = temps.AcquireSameSizeAs(base); Emit() local 2185 Register temp = temps.AcquireSameSizeAs(addr.GetBaseRegister()); Emit() local [all...] |
/third_party/mesa3d/src/virtio/vulkan/ |
H A D | vn_queue.c | 71 } temp; member 143 alloc_size += sizeof(*submit->temp.semaphores) * in vn_queue_submission_alloc_storage() 148 submit->temp.storage = NULL; in vn_queue_submission_alloc_storage() 152 submit->temp.storage = vk_alloc(alloc, alloc_size, VN_DEFAULT_ALIGN, in vn_queue_submission_alloc_storage() 154 if (!submit->temp.storage) in vn_queue_submission_alloc_storage() 157 submit->temp.batches = submit->temp.storage; in vn_queue_submission_alloc_storage() 158 submit->temp.semaphores = submit->temp.storage + semaphores_offset; in vn_queue_submission_alloc_storage() 179 u.submit_batch = &submit->temp in vn_queue_submission_filter_batch_wsi_semaphores() 523 struct vn_sync_payload *temp = &fence->temporary; vn_fence_signal_wsi() local 966 struct vn_sync_payload *temp = &sem->temporary; vn_semaphore_signal_wsi() local [all...] |
/third_party/node/deps/openssl/openssl/crypto/bn/asm/ |
H A D | armv4-mont.pl | 309 my $temp="$Temp#lo"; 374 vshr.u64 $temp,$temp,#16 377 vadd.u64 $temp,$temp,$Temp#hi 380 vshr.u64 $temp,$temp,#16 389 vadd.u64 @ACC[0]#lo,@ACC[0]#lo,$temp 422 vshr.u64 $temp,$temp,#1 [all...] |
/third_party/openssl/crypto/bn/asm/ |
H A D | armv4-mont.pl | 309 my $temp="$Temp#lo"; 374 vshr.u64 $temp,$temp,#16 377 vadd.u64 $temp,$temp,$Temp#hi 380 vshr.u64 $temp,$temp,#16 389 vadd.u64 @ACC[0]#lo,@ACC[0]#lo,$temp 422 vshr.u64 $temp,$temp,#1 [all...] |
/third_party/skia/third_party/externals/freetype/src/type1/ |
H A D | t1load.c | 1407 FT_Fixed temp[6]; in t1_parse_font_matrix() local 1413 result = T1_ToFixedArray( parser, 6, temp, 3 ); in t1_parse_font_matrix() 1422 (double)temp[0] / 65536 / 1000, in t1_parse_font_matrix() 1423 (double)temp[1] / 65536 / 1000, in t1_parse_font_matrix() 1424 (double)temp[2] / 65536 / 1000, in t1_parse_font_matrix() 1425 (double)temp[3] / 65536 / 1000, in t1_parse_font_matrix() 1426 (double)temp[4] / 65536 / 1000, in t1_parse_font_matrix() 1427 (double)temp[5] / 65536 / 1000 )); in t1_parse_font_matrix() 1429 temp_scale = FT_ABS( temp[3] ); in t1_parse_font_matrix() 1444 temp[ in t1_parse_font_matrix() 1858 FT_Byte* temp = NULL; parse_subrs() local 2071 FT_Byte* temp = NULL; parse_charstrings() local [all...] |
/third_party/node/deps/openssl/openssl/crypto/aes/ |
H A D | aes_core.c | 604 u32 temp; in KeyExpansion() local 612 temp = prev.w[1]; in KeyExpansion() 614 RotWord(&temp); in KeyExpansion() 615 SubWord(&temp); in KeyExpansion() 616 temp ^= rcon; in KeyExpansion() 619 SubWord(&temp); in KeyExpansion() 622 prev.w[0] ^= temp; in KeyExpansion() 1284 u32 temp; in AES_set_encrypt_key() local 1306 temp = rk[3]; in AES_set_encrypt_key() 1308 (Te2[(temp >> 1 in AES_set_encrypt_key() 1386 u32 temp; AES_set_decrypt_key() local 1862 u32 temp; AES_set_encrypt_key() local 1964 u32 temp; AES_set_decrypt_key() local [all...] |
/third_party/openssl/crypto/aes/ |
H A D | aes_core.c | 604 u32 temp; in KeyExpansion() local 612 temp = prev.w[1]; in KeyExpansion() 614 RotWord(&temp); in KeyExpansion() 615 SubWord(&temp); in KeyExpansion() 616 temp ^= rcon; in KeyExpansion() 619 SubWord(&temp); in KeyExpansion() 622 prev.w[0] ^= temp; in KeyExpansion() 1284 u32 temp; in AES_set_encrypt_key() local 1306 temp = rk[3]; in AES_set_encrypt_key() 1308 (Te2[(temp >> 1 in AES_set_encrypt_key() 1386 u32 temp; AES_set_decrypt_key() local 1862 u32 temp; AES_set_encrypt_key() local 1964 u32 temp; AES_set_decrypt_key() local [all...] |