Home
last modified time | relevance | path

Searched refs:temp (Results 376 - 400 of 1598) sorted by relevance

1...<<11121314151617181920>>...64

/third_party/toybox/lib/
H A Dcommas.c31 char *temp, *atold = *old; in comma_collate() local
38 temp = xmprintf("%s%s%s", atold, comma, new); in comma_collate()
39 } else temp = xstrdup(new); in comma_collate()
41 *old = temp; in comma_collate()
/third_party/typescript/tests/baselines/reference/
H A DdestructuringArrayBindingPatternAndAssignment1ES5.js42 var temp = [1,2,3] variable
43 var [c0, c1] = [...temp];
99 var temp = [1, 2, 3]; variable
100 var _f = __spreadArray([], temp, true), c0 = _f[0], c1 = _f[1];
/third_party/pulseaudio/src/pulsecore/
H A Dsvolume_mmx.c94 pa_reg_x86 channel, temp; in pa_volume_s16ne_mmx() local
152 : "+r" (samples), "+r" (volumes), "+r" (length), "=&D" (channel), "=&r" (temp) in pa_volume_s16ne_mmx()
163 pa_reg_x86 channel, temp; in pa_volume_s16re_mmx() local
231 : "+r" (samples), "+r" (volumes), "+r" (length), "=&D" (channel), "=&r" (temp) in pa_volume_s16re_mmx()
H A Dsvolume_sse.c77 pa_reg_x86 channel, temp; in pa_volume_s16ne_sse2() local
150 : "+r" (samples), "+r" (volumes), "+r" (length), "=&D" (channel), "=&r" (temp) in pa_volume_s16ne_sse2()
161 pa_reg_x86 channel, temp; in pa_volume_s16re_sse2() local
242 : "+r" (samples), "+r" (volumes), "+r" (length), "=&D" (channel), "=&r" (temp) in pa_volume_s16re_sse2()
/third_party/skia/docs/examples/
H A Dpathops.cpp12 SkBitmap temp; in REG_FIDDLE() local
13 temp.allocN32Pixels(1, 1); in REG_FIDDLE()
14 SkCanvas canvas(temp); in REG_FIDDLE()
17 void* pixels = temp.getPixels(); in REG_FIDDLE()
/third_party/rust/crates/rustix/tests/io/
H A Dpoll.rs31 let mut temp = poll_fds[0].clone(); in test_poll() variables
32 assert_eq!(temp.revents(), PollFlags::IN); in test_poll()
33 temp.clear_revents(); in test_poll()
34 assert!(temp.revents().is_empty()); in test_poll()
/third_party/selinux/libselinux/src/
H A Davc_sidtab.c134 struct sidtab_node *cur, *temp; in sidtab_destroy() local
142 temp = cur; in sidtab_destroy()
144 freecon(temp->sid_s.ctx); in sidtab_destroy()
145 avc_free(temp); in sidtab_destroy()
/third_party/icu/icu4c/source/tools/genrb/
H A Drbutil.c76 char temp; in itostr() local
108 temp = buffer[(length-1) - j]; in itostr()
110 buffer[j] = temp; in itostr()
H A Dwrtxml.cpp239 char* temp=NULL; in convertAndEscape() local
347 temp = (char*) uprv_malloc(sizeof(char)*destCap); in convertAndEscape()
348 if(temp==NULL){ in convertAndEscape()
353 uprv_memmove(temp,dest,destLen); in convertAndEscape()
356 dest=temp; in convertAndEscape()
357 temp=NULL; in convertAndEscape()
870 char temp[256] = {0}; in bin_write_xml() local
886 len = itostr(temp, res->fData[i], 16, 2); in bin_write_xml()
887 crc = computeCRC(temp, len, crc); in bin_write_xml()
891 len = itostr(temp, cr in bin_write_xml()
1028 char* temp = NULL; bundle_write_xml() local
[all...]
/third_party/skia/third_party/externals/spirv-tools/source/util/
H A Dbit_vector.cpp47 auto temp = *this_it | *other_it; in Or() local
48 if (temp != *this_it) { in Or()
50 *this_it = temp; in Or()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/util/
H A Dbit_vector.cpp47 auto temp = *this_it | *other_it; in Or() local
48 if (temp != *this_it) { in Or()
50 *this_it = temp; in Or()
/third_party/skia/third_party/externals/icu/source/tools/genrb/
H A Drbutil.c76 char temp; in itostr() local
108 temp = buffer[(length-1) - j]; in itostr()
110 buffer[j] = temp; in itostr()
H A Dwrtxml.cpp239 char* temp=NULL; in convertAndEscape() local
347 temp = (char*) uprv_malloc(sizeof(char)*destCap); in convertAndEscape()
348 if(temp==NULL){ in convertAndEscape()
353 uprv_memmove(temp,dest,destLen); in convertAndEscape()
356 dest=temp; in convertAndEscape()
357 temp=NULL; in convertAndEscape()
870 char temp[256] = {0}; in bin_write_xml() local
886 len = itostr(temp, res->fData[i], 16, 2); in bin_write_xml()
887 crc = computeCRC(temp, len, crc); in bin_write_xml()
891 len = itostr(temp, cr in bin_write_xml()
1032 char* temp = NULL; bundle_write_xml() local
[all...]
/third_party/spirv-tools/source/util/
H A Dbit_vector.cpp47 auto temp = *this_it | *other_it; in Or() local
48 if (temp != *this_it) { in Or()
50 *this_it = temp; in Or()
/third_party/curl/lib/
H A Dtelnet.c937 unsigned char temp[2048]; in suboption() local
948 msnprintf((char *)temp, sizeof(temp), in suboption()
951 bytes_written = swrite(conn->sock[FIRSTSOCKET], temp, len); in suboption()
956 printsub(data, '>', &temp[2], len-2); in suboption()
960 msnprintf((char *)temp, sizeof(temp), in suboption()
963 bytes_written = swrite(conn->sock[FIRSTSOCKET], temp, len); in suboption()
968 printsub(data, '>', &temp[2], len-2); in suboption()
971 msnprintf((char *)temp, sizeo in suboption()
[all...]
/third_party/node/deps/icu-small/source/tools/genrb/
H A Dwrtxml.cpp239 char* temp=nullptr; in convertAndEscape() local
347 temp = (char*) uprv_malloc(sizeof(char)*destCap); in convertAndEscape()
348 if(temp==nullptr){ in convertAndEscape()
353 uprv_memmove(temp,dest,destLen); in convertAndEscape()
356 dest=temp; in convertAndEscape()
357 temp=nullptr; in convertAndEscape()
870 char temp[256] = {0}; in bin_write_xml() local
886 len = itostr(temp, res->fData[i], 16, 2); in bin_write_xml()
887 crc = computeCRC(temp, len, crc); in bin_write_xml()
891 len = itostr(temp, cr in bin_write_xml()
1028 char* temp = nullptr; bundle_write_xml() local
[all...]
/third_party/skia/third_party/externals/freetype/src/cff/
H A Dcffobjs.c763 FT_Fixed temp; in FT_LOCAL_DEF() local
766 temp = matrix->yy ? FT_ABS( matrix->yy ) in FT_LOCAL_DEF()
769 if ( temp != 0x10000L ) in FT_LOCAL_DEF()
771 *upm = (FT_ULong)FT_DivFix( (FT_Long)*upm, temp ); in FT_LOCAL_DEF()
773 matrix->xx = FT_DivFix( matrix->xx, temp ); in FT_LOCAL_DEF()
774 matrix->yx = FT_DivFix( matrix->yx, temp ); in FT_LOCAL_DEF()
775 matrix->xy = FT_DivFix( matrix->xy, temp ); in FT_LOCAL_DEF()
776 matrix->yy = FT_DivFix( matrix->yy, temp ); in FT_LOCAL_DEF()
777 offset->x = FT_DivFix( offset->x, temp ); in FT_LOCAL_DEF()
778 offset->y = FT_DivFix( offset->y, temp ); in FT_LOCAL_DEF()
793 FT_Fixed temp; FT_LOCAL_DEF() local
[all...]
/third_party/ffmpeg/libavcodec/mips/
H A Dsimple_idct_msa.c36 v8i16 select_vec, temp; in simple_idct_msa() local
52 temp = in0 << 3; in simple_idct_msa()
105 in0 = (v8i16) __msa_bmnz_v((v16u8) temp0_r, (v16u8) temp, in simple_idct_msa()
107 in1 = (v8i16) __msa_bmnz_v((v16u8) temp1_r, (v16u8) temp, in simple_idct_msa()
109 in2 = (v8i16) __msa_bmnz_v((v16u8) temp2_r, (v16u8) temp, in simple_idct_msa()
111 in3 = (v8i16) __msa_bmnz_v((v16u8) temp3_r, (v16u8) temp, in simple_idct_msa()
117 in4 = (v8i16) __msa_bmnz_v((v16u8) a3_r, (v16u8) temp, (v16u8) select_vec); in simple_idct_msa()
118 in5 = (v8i16) __msa_bmnz_v((v16u8) a2_r, (v16u8) temp, (v16u8) select_vec); in simple_idct_msa()
119 in6 = (v8i16) __msa_bmnz_v((v16u8) a1_r, (v16u8) temp, (v16u8) select_vec); in simple_idct_msa()
120 in7 = (v8i16) __msa_bmnz_v((v16u8) a0_r, (v16u8) temp, (v16u in simple_idct_msa()
199 v8i16 select_vec, temp; simple_idct_put_msa() local
377 v8i16 select_vec, temp; simple_idct_add_msa() local
[all...]
/third_party/node/deps/openssl/openssl/crypto/aes/
H A Daes_x86core.c480 u32 temp; in AES_set_encrypt_key() local
502 temp = rk[3]; in AES_set_encrypt_key()
504 ((u32)Te4[(temp >> 8) & 0xff] ) ^ in AES_set_encrypt_key()
505 ((u32)Te4[(temp >> 16) & 0xff] << 8) ^ in AES_set_encrypt_key()
506 ((u32)Te4[(temp >> 24) ] << 16) ^ in AES_set_encrypt_key()
507 ((u32)Te4[(temp ) & 0xff] << 24) ^ in AES_set_encrypt_key()
522 temp = rk[ 5]; in AES_set_encrypt_key()
524 ((u32)Te4[(temp >> 8) & 0xff] ) ^ in AES_set_encrypt_key()
525 ((u32)Te4[(temp >> 16) & 0xff] << 8) ^ in AES_set_encrypt_key()
526 ((u32)Te4[(temp >> 2 in AES_set_encrypt_key()
582 u32 temp; AES_set_decrypt_key() local
[all...]
/third_party/openssl/crypto/aes/
H A Daes_x86core.c480 u32 temp; in AES_set_encrypt_key() local
502 temp = rk[3]; in AES_set_encrypt_key()
504 ((u32)Te4[(temp >> 8) & 0xff] ) ^ in AES_set_encrypt_key()
505 ((u32)Te4[(temp >> 16) & 0xff] << 8) ^ in AES_set_encrypt_key()
506 ((u32)Te4[(temp >> 24) ] << 16) ^ in AES_set_encrypt_key()
507 ((u32)Te4[(temp ) & 0xff] << 24) ^ in AES_set_encrypt_key()
522 temp = rk[ 5]; in AES_set_encrypt_key()
524 ((u32)Te4[(temp >> 8) & 0xff] ) ^ in AES_set_encrypt_key()
525 ((u32)Te4[(temp >> 16) & 0xff] << 8) ^ in AES_set_encrypt_key()
526 ((u32)Te4[(temp >> 2 in AES_set_encrypt_key()
582 u32 temp; AES_set_decrypt_key() local
[all...]
/third_party/icu/icu4c/source/common/
H A Dcaniter.cpp509 UnicodeString temp(comp); in extract()
510 int32_t inputLen=temp.length(); in extract()
512 nfd.normalize(temp, decompString, status); in extract()
539 temp.append(segment+i, segLen-i); in extract()
548 temp.append(cp); in extract()
568 if (inputLen == temp.length()) { in extract()
576 nfd.normalize(temp, trial, status); in extract()
581 return getEquivalents2(fillinResult, temp.getBuffer()+inputLen, temp.length()-inputLen, status); in extract()
/third_party/libwebsockets/plugins/ssh-base/
H A Dkex-25519.c311 uint8_t pri_key[64], temp[64], payload_sig[64 + 32], a, *lp, kbi[64]; in kex_ecdh() local
450 if (lws_genhash_destroy(&ctx, temp)) in kex_ecdh()
454 * Sign the 32-byte SHA256 "exchange hash" in temp in kex_ecdh()
458 if (crypto_sign_ed25519(payload_sig, &smlen, temp, LWS_SIZE_EC25519, in kex_ecdh()
464 n = crypto_sign_ed25519_open(temp, &l, payload_sig, smlen, pss->K_S); in kex_ecdh()
509 memcpy(pss->session_id, temp, LWS_SIZE_EC25519); in kex_ecdh()
536 kbi, (int)kbi_len, temp, (char)('A' + (c * 2)), in kex_ecdh()
539 kbi, (int)kbi_len, temp, (char)('B' + (c * 2)), in kex_ecdh()
543 lws_explicit_bzero(temp, sizeof(temp)); in kex_ecdh()
[all...]
/third_party/node/deps/icu-small/source/common/
H A Dcaniter.cpp509 UnicodeString temp(comp); in extract()
510 int32_t inputLen=temp.length(); in extract()
512 nfd.normalize(temp, decompString, status); in extract()
539 temp.append(segment+i, segLen-i); in extract()
548 temp.append(cp); in extract()
568 if (inputLen == temp.length()) { in extract()
576 nfd.normalize(temp, trial, status); in extract()
581 return getEquivalents2(fillinResult, temp.getBuffer()+inputLen, temp.length()-inputLen, status); in extract()
/third_party/skia/third_party/externals/icu/source/common/
H A Dcaniter.cpp509 UnicodeString temp(comp); in extract()
510 int32_t inputLen=temp.length(); in extract()
512 nfd.normalize(temp, decompString, status); in extract()
539 temp.append(segment+i, segLen-i); in extract()
548 temp.append(cp); in extract()
568 if (inputLen == temp.length()) { in extract()
576 nfd.normalize(temp, trial, status); in extract()
581 return getEquivalents2(fillinResult, temp.getBuffer()+inputLen, temp.length()-inputLen, status); in extract()
/third_party/python/Modules/_sha3/
H A Dsha3module.c225 SHA3_state temp; in _sha3_sha3_224_digest_impl() local
229 SHA3_copystate(temp, self->hash_state); in _sha3_sha3_224_digest_impl()
231 res = SHA3_done(&temp, digest); in _sha3_sha3_224_digest_impl()
252 SHA3_state temp; in _sha3_sha3_224_hexdigest_impl() local
257 SHA3_copystate(temp, self->hash_state); in _sha3_sha3_224_hexdigest_impl()
259 res = SHA3_done(&temp, digest); in _sha3_sha3_224_hexdigest_impl()
457 SHA3_state temp; in _SHAKE_digest() local
474 SHA3_copystate(temp, self->hash_state); in _SHAKE_digest()
476 SHA3_squeeze(&temp, digest, digestlen); in _SHAKE_digest()

Completed in 19 milliseconds

1...<<11121314151617181920>>...64