/third_party/node/benchmark/process/ |
H A D | next-tick-depth-args.js | 19 process.nextTick(cb1, 0); 33 process.nextTick(cb1, 0); 47 process.nextTick(cb1, 0); 52 function cb1(arg1) { 61 process.nextTick(cb1, 0); 66 process.nextTick(cb1, true);
|
H A D | next-tick-breadth-args.js | 11 function cb1(arg1) { 44 process.nextTick(cb1, 0);
|
/third_party/node/benchmark/timers/ |
H A D | set-immediate-depth-args.js | 21 setImmediate(cb1, n); 32 setImmediate(cb1, n); 36 function cb1(n) { 43 setImmediate(cb1, n); 47 setImmediate(cb1, n);
|
H A D | set-immediate-breadth-args.js | 14 function cb1(arg1) {} 27 setImmediate(cb1, 0);
|
H A D | timers-breadth-args.js | 10 function cb1(arg1) { 43 setTimeout(cb1, 1, 0);
|
/third_party/skia/third_party/externals/d3d12allocator/src/Shaders/ |
H A D | VS_Compiled.h | 20 // ConstantBuffer1 cbuffer NA NA cb1 1
49 dp4 o0.x, r0.xyzw, cb1[0].xyzw
50 dp4 o0.y, r0.xyzw, cb1[1].xyzw
51 dp4 o0.z, r0.xyzw, cb1[2].xyzw
52 dp4 o0.w, r0.xyzw, cb1[3].xyzw
|
/third_party/ffmpeg/libavutil/ |
H A D | colorspace.h | 34 #define YUV_TO_RGB1_CCIR(cb1, cr1)\ 36 cb = (cb1) - 128;\ 44 #define YUV_TO_RGB1_CCIR_BT709(cb1, cr1) \ 46 cb = (cb1) - 128; \ 63 #define YUV_TO_RGB1(cb1, cr1)\ 65 cb = (cb1) - 128;\
|
/third_party/ffmpeg/libavcodec/ |
H A D | cinepak.c | 139 uint8_t *cb0, *cb1, *cb2, *cb3; in cinepak_decode_vectors() local 216 cb1 = strip->v4_codebook[*data++]; in cinepak_decode_vectors() 234 *p++ = cb1[6]; in cinepak_decode_vectors() 235 *p = cb1[9]; in cinepak_decode_vectors() 239 *p++ = cb1[0]; in cinepak_decode_vectors() 240 *p = cb1[3]; in cinepak_decode_vectors() 247 memcpy(ip1 + 6, cb1 + 6, 6); in cinepak_decode_vectors() 249 memcpy(ip0 + 6, cb1 + 0, 6); in cinepak_decode_vectors()
|
H A D | ra144enc.c | 331 float zero[BLOCKSIZE], cba[BLOCKSIZE], cb1[BLOCKSIZE], cb2[BLOCKSIZE]; in ra144_encode_subblock() local 375 cb1[i] = ff_cb1_vects[cb1_idx][i]; in ra144_encode_subblock() 378 ff_celp_lp_synthesis_filterf(work + LPC_ORDER, coefs, cb1, BLOCKSIZE, in ra144_encode_subblock() 380 memcpy(cb1, work + LPC_ORDER, sizeof(cb1)); in ra144_encode_subblock() 398 data[i] = zero[i] + g[0] * cba[i] + g[1] * cb1[i] + in ra144_encode_subblock() 405 data[i] = zero[i] + g[1] * cb1[i] + g[2] * cb2[i]; in ra144_encode_subblock()
|
H A D | twinvq.h | 79 const int16_t *cb1; member
|
H A D | twinvq.c | 168 * Inverse quantization. Read CB coefficients for cb1 and cb2 from the 174 const int16_t *cb0, const int16_t *cb1, int cb_len) in dequant() 204 tab1 = cb1 + tmp1 * cb_len; in dequant() 428 mtab->fmode[ftype].cb0, mtab->fmode[ftype].cb1, in read_and_decode_spectrum() 172 dequant(TwinVQContext *tctx, const uint8_t *cb_bits, float *out, enum TwinVQFrameType ftype, const int16_t *cb0, const int16_t *cb1, int cb_len) dequant() argument
|
/third_party/python/Lib/test/test_asyncio/ |
H A D | test_futures.py | 678 cb1 = self._make_callback(bag, 42) 682 f.add_done_callback(cb1) 686 f.remove_done_callback(cb1) 687 f.remove_done_callback(cb1) 701 cb1 = self._make_callback(bag, 42) 705 f.add_done_callback(cb1) 709 f.remove_done_callback(cb1) 711 f.remove_done_callback(cb1) 725 cb1 = self._make_callback(bag, 42) 729 f.add_done_callback(cb1) [all...] |
/third_party/mesa3d/src/gallium/tests/graw/ |
H A D | fs-test.c | 112 struct pipe_constant_buffer cb1; in init_fs_constbuf() local 115 memset(&cb1, 0, sizeof cb1); in init_fs_constbuf() 116 cb1.buffer_size = sizeof constants1; in init_fs_constbuf() 117 cb1.user_buffer = constants1; in init_fs_constbuf() 121 &cb1); in init_fs_constbuf()
|
/third_party/python/Lib/tkinter/test/test_tkinter/ |
H A D | test_variables.py | 123 cb1 = v.trace_variable('r', read_tracer) 125 self.assertEqual(sorted(v.trace_vinfo()), [('r', cb1), ('wu', cb2)]) 137 v.trace_vdelete('w', cb1) # Wrong mode 142 v.trace_vdelete('r', (cb1, 43)) # Wrong arguments 148 v.trace_vdelete('r', cb1)
|
/third_party/libwebsockets/minimal-examples/api-tests/api-test-async-dns/ |
H A D | main.c | 101 cb1(struct lws *wsi_unused, const char *ads, const struct addrinfo *a, int n, 113 (adns_query_type_t)adt[dtest].recordtype, cb1, NULL, in next_test_cb() 122 cb1(struct lws *wsi_unused, const char *ads, const struct addrinfo *a, int n, in cb1() function
|
/third_party/python/Lib/idlelib/ |
H A D | percolator.py | 107 cb1 = tk.Checkbutton(box, text="Tracer1", command=toggle1, variable=var1) 108 cb1.pack()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | booleanFilterAnyArray.js | 9 filter<S extends T>(cb1: (value: T) => value is S): T extends any ? Ari<any> : Ari<S>;
|
/third_party/python/Lib/idlelib/idle_test/ |
H A D | test_autocomplete.py | 122 cb1 = acp._delayed_completion_id 123 Equal(cb1, 'after1') 132 Equal(cancel.args, (cb1,))
|
/third_party/python/Lib/test/ |
H A D | test_source_encoding.py | 300 for cb1 in continuation_bytes[:3]: 302 check(sb+cb1+b'\x80'+cb3)
|
H A D | test_gc.py | 1119 gc.callbacks.append(self.cb1) 1126 gc.callbacks.remove(self.cb1) 1150 def cb1(self, phase, info): member in GCCallbackTests
|
H A D | test_unicode.py | 1875 for cb1 in continuation_bytes[:3]: 1878 (sb+cb1+b'\x80'+cb3).decode, 'utf-8')
|
/third_party/python/PC/ |
H A D | _msi.c | 177 PyObject *result = _PyObject_CallMethodId(pv, &PyId_status, "iii", typeStatus, cb1, cb2); in FNFCISTATUS()
|
/third_party/astc-encoder/Source/ |
H A D | stb_image.h | 3719 __m128i cb1 = _mm_mulhi_epi16(cbw, cb_const1); in stbi__YCbCr_to_RGB_simd() local 3723 __m128i bws = _mm_add_epi16(yws, cb1); in stbi__YCbCr_to_RGB_simd() 3776 int16x8_t cb1 = vqdmulhq_s16(cbw, cb_const1); in stbi__YCbCr_to_RGB_simd() local 3779 int16x8_t bws = vaddq_s16(yws, cb1); in stbi__YCbCr_to_RGB_simd()
|