Home
last modified time | relevance | path

Searched refs:temp (Results 351 - 375 of 1556) sorted by relevance

1...<<11121314151617181920>>...63

/third_party/mesa3d/src/compiler/nir/
H A Dnir_lower_io_to_temporaries.c297 nir_variable *temp = var; in create_shadow_temp() local
304 /* Give the original a new name with @<mode>-temp appended */ in create_shadow_temp()
305 const char *mode = (temp->data.mode == nir_var_shader_in) ? "in" : "out"; in create_shadow_temp()
306 temp->name = ralloc_asprintf(var, "%s@%s-temp", mode, nvar->name); in create_shadow_temp()
307 temp->data.mode = nir_var_shader_temp; in create_shadow_temp()
308 temp->data.read_only = false; in create_shadow_temp()
309 temp->data.fb_fetch_output = false; in create_shadow_temp()
310 temp->data.compact = false; in create_shadow_temp()
/third_party/libwebsockets/minimal-examples/crypto/minimal-crypto-cose-sign/
H A Dmain.c94 uint8_t *ks, temp[256], *kid = NULL, ktmp[4096], sbuf[512]; in main() local
254 n = (int)read(fdin, temp, sizeof(temp)); in main()
262 if (lws_buflist_append_segment(&paybuf, temp, s) < 0) in main()
325 n = (int)read(fdin, temp, sizeof(temp)); in main()
331 n = lws_cose_validate_chunk(cps, temp, (size_t)n, NULL); in main()
/third_party/lzma/C/
H A DBcj2Enc.c87 Byte temp[8];
88 Last byte of marker (e8/e9/[0f]8x) can be written to temp[] buffer.
94 Byte CBcj2Enc::temp[4];
375 Bcj2Enc_Encode() solves that look ahead problem by using p->temp[] buffer.
387 /* extra: number of bytes that were copied from (src) to (temp) buffer in this call */ in Bcj2Enc_Encode()
390 So we will add input bytes from (src) stream to temp[] with step of 1 byte. in Bcj2Enc_Encode()
391 We don't add new bytes to temp[] before Bcj2Enc_Encode_2() call in Bcj2Enc_Encode()
395 the case with full temp[] buffer (p->tempPos == 4) is possible here. in Bcj2Enc_Encode()
401 that were copied to temp[] buffer in this call */ in Bcj2Enc_Encode()
407 /* if there are some src data after the data copied to temp[], in Bcj2Enc_Encode()
[all...]
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/htmldiff/
H A Dhtmldiff.pl196 my $temp = "";
248 if ($temp ne "") {
249 $_ = $span[$state] . $anchor . $temp . $anchorEnd . $diffEnd[$state] . "\n";
250 $temp = "";
259 if ($temp eq "") {
265 $temp .= $_;
271 $temp .= $_;
/third_party/skia/third_party/externals/freetype/src/cache/
H A Dftcsbits.c128 FT_Int temp; in ftc_snode_load() local
145 #define CHECK_CHAR( d ) ( temp = (FT_Char)d, (FT_Int) temp == (FT_Int) d ) in ftc_snode_load()
146 #define CHECK_BYTE( d ) ( temp = (FT_Byte)d, (FT_UInt)temp == (FT_UInt)d ) in ftc_snode_load()
147 #define CHECK_SHRT( d ) ( temp = (FT_Short)d, (FT_Int)temp == (FT_Int) d ) in ftc_snode_load()
/third_party/lame/libmp3lame/
H A Dquantize_pvt.c760 FLOAT temp; in calc_noise_core_c() local
761 temp = cod_info->xr[j]; in calc_noise_core_c()
763 noise += temp * temp; in calc_noise_core_c()
764 temp = cod_info->xr[j]; in calc_noise_core_c()
766 noise += temp * temp; in calc_noise_core_c()
774 FLOAT temp; in calc_noise_core_c() local
775 temp = fabs(cod_info->xr[j]) - ix01[ix[j]]; in calc_noise_core_c()
777 noise += temp * tem in calc_noise_core_c()
785 FLOAT temp; calc_noise_core_c() local
[all...]
/third_party/ffmpeg/libavcodec/
H A Dpgxdec.c34 uint64_t temp; in pgx_get_number() local
43 temp = (uint64_t)10 * (*number) + (digit - '0'); in pgx_get_number()
44 if (temp > INT_MAX) in pgx_get_number()
46 *number = temp; in pgx_get_number()
H A Dsnow_dwt.h60 void (*horizontal_compose97i)(IDWTELEM *b, IDWTELEM *temp, int width);
110 void ff_spatial_dwt(int *buffer, int *temp, int width, int height, int stride,
117 slice_buffer *slice_buf, IDWTELEM *temp,
120 void ff_spatial_idwt(IDWTELEM *buffer, IDWTELEM *temp, int width, int height,
/third_party/gn/src/base/mac/
H A Dscoped_typeref.h118 __unsafe_unretained T temp = that.object_; in swap() local
120 object_ = temp; in swap()
127 __unsafe_unretained T temp = object_; in __attribute() local
129 return temp; in __attribute()
/third_party/icu/icu4c/source/test/perf/usetperf/
H A Dusetperf.cpp81 int32_t temp = 0; in contains() local
85 temp += cp; in contains()
91 int32_t temp = 0; in iterator() local
94 temp += uit.getCodepoint(); in iterator()
/third_party/libwebsockets/lib/jose/jwe/enc/
H A Daeskw.c38 lws_jwe_encrypt_aeskw_cbc_hs(struct lws_jwe *jwe, char *temp, int *temp_len) in lws_jwe_encrypt_aeskw_cbc_hs() argument
56 temp, temp_len, in lws_jwe_encrypt_aeskw_cbc_hs()
61 /* Allocate temp space for ATAG and IV */ in lws_jwe_encrypt_aeskw_cbc_hs()
63 if (lws_jws_alloc_element(&jwe->jws.map, LJWE_ATAG, temp + (ot - *temp_len), in lws_jwe_encrypt_aeskw_cbc_hs()
67 if (lws_jws_alloc_element(&jwe->jws.map, LJWE_IV, temp + (ot - *temp_len), in lws_jwe_encrypt_aeskw_cbc_hs()
/third_party/jerryscript/jerry-libm/
H A Dlog.c126 double_accessor temp; in log() local
127 temp.dbl = x; in log()
128 temp.as_int.hi = hx | (i ^ 0x3ff00000); /* normalize x or x / 2 */ in log()
130 f = temp.dbl - 1.0; in log()
/third_party/musl/porting/liteos_a/user/src/stdlib/
H A Dqsort.c50 char temp[width]; in __qsort_r() local
62 memcpy(temp, l, width); in __qsort_r()
64 if (cmp(m, temp, arg) > 0) { in __qsort_r()
70 memcpy((m + width), temp, width); in __qsort_r()
/third_party/musl/src/stdlib/liteos_a/
H A Dqsort.c50 char temp[width]; in __qsort_r() local
62 memcpy(temp, l, width); in __qsort_r()
64 if (cmp(m, temp, arg) > 0) { in __qsort_r()
70 memcpy((m + width), temp, width); in __qsort_r()
/third_party/icu/icu4c/source/test/intltest/
H A Dpptest.cpp195 UnicodeString temp; in TestFieldPosition_example() local
198 temp.remove(); in TestFieldPosition_example()
199 //temp = new StringBuffer(); // Get new buffer in TestFieldPosition_example()
210 temp += UnicodeString("="/*'='*/); // initialize in TestFieldPosition_example()
211 logln("FP " + temp + res); in TestFieldPosition_example()
/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/impl/
H A DSelection.java72 int temp = anchor; in swap()
74 after.anchor = temp; in swap()
75 temp = caret; in swap()
77 after.caret = temp; in swap()
/third_party/python/Lib/multiprocessing/dummy/
H A D__init__.py87 temp = []
90 temp.append('%s=%r' % (name, value))
91 temp.sort()
92 return '%s(%s)' % (self.__class__.__name__, ', '.join(temp))
/third_party/python/Lib/test/
H A Dsortperf.py20 # a temp directory. If the file already exists, it just reads them
48 temp = result[:i]
50 temp.reverse()
51 result.extend(temp)
52 del temp
/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()

Completed in 12 milliseconds

1...<<11121314151617181920>>...63