/third_party/ffmpeg/libavcodec/ |
H A D | twinvqdec.c | 35 { 8, bark_tab_s08_64, 10, tab.fcb08s, 1, 5, tab.cb0808s0, tab.cb0808s1, 18 }, 36 { 2, bark_tab_m08_256, 20, tab.fcb08m, 2, 5, tab.cb0808m0, tab.cb0808m1, 16 }, 37 { 1, bark_tab_l08_512, 30, tab.fcb08l, 3, 6, tab.cb0808l0, tab.cb0808l1, 17 } 39 512, 12, ff_metasound_lsp8, 1, 5, 3, 3, tab [all...] |
H A D | mpegaudioenc_template.c | 203 static void idct32(int *out, int *tab) in idct32() argument 209 for(j=31;j>=3;j-=2) tab[j] += tab[j - 2]; in idct32() 211 t = tab + 30; in idct32() 212 t1 = tab + 2; in idct32() 219 t = tab + 28; in idct32() 220 t1 = tab + 4; in idct32() 229 t = tab; in idct32() 230 t1 = tab + 32; in idct32() 243 t = tab; in idct32() [all...] |
H A D | lzwenc.c | 54 Code tab[LZW_HASH_SIZE]; ///< Hash table member 136 while (s->tab[h].hash_prefix != LZW_PREFIX_FREE) { in findCode() 137 if ((s->tab[h].suffix == c) in findCode() 138 && (s->tab[h].hash_prefix == hash_prefix)) in findCode() 155 s->tab[hash_code].code = s->tabsize; in addCode() 156 s->tab[hash_code].suffix = c; in addCode() 157 s->tab[hash_code].hash_prefix = hash_prefix; in addCode() 176 s->tab[i].hash_prefix = LZW_PREFIX_FREE; in clearTable() 180 s->tab[h].code = i; in clearTable() 181 s->tab[ in clearTable() [all...] |
/third_party/node/deps/openssl/openssl/crypto/bn/asm/ |
H A D | sparcv9-gf2m.pl | 32 $tab="%l0"; 90 add %sp,STACK_BIAS+STACK_FRAME,$tab 109 stx %g0,[$tab+0*8] ! tab[0]=0 111 stx $a1,[$tab+1*8] ! tab[1]=a1 112 stx $a2,[$tab+2*8] ! tab[2]=a2 114 stx $a12,[$tab+3*8] ! tab[ [all...] |
/third_party/openssl/crypto/bn/asm/ |
H A D | sparcv9-gf2m.pl | 32 $tab="%l0"; 90 add %sp,STACK_BIAS+STACK_FRAME,$tab 109 stx %g0,[$tab+0*8] ! tab[0]=0 111 stx $a1,[$tab+1*8] ! tab[1]=a1 112 stx $a2,[$tab+2*8] ! tab[2]=a2 114 stx $a12,[$tab+3*8] ! tab[ [all...] |
/third_party/musl/libc-test/src/common/ |
H A D | rand.c | 94 static int insert(uint64_t *tab, size_t len, uint64_t v) in insert() argument 99 while (tab[i]) { in insert() 100 if (tab[i] == v) in insert() 105 tab[i] = v; in insert() 112 uint64_t *tab; in t_choose() local 139 if (n < 5*k && (n-k)*sizeof *tab < (size_t)-1) { in t_choose() 141 tab = malloc((n-k) * sizeof *tab); in t_choose() 142 if (!tab) in t_choose() 147 tab[ in t_choose() [all...] |
/third_party/ffmpeg/libavutil/ |
H A D | tx_template.c | 65 TXSample *tab = TX_TAB(ff_tx_tab_ ##len); \ 68 *tab++ = RESCALE(cos(i*freq)); \ 70 *tab = 0; \ 180 const TXSample *tab = TX_TAB(ff_tx_tab_53); in fft3() local 192 mtmp[0] = (int64_t)tab[0] * tmp[0].re; in fft3() 193 mtmp[1] = (int64_t)tab[1] * tmp[0].im; in fft3() 194 mtmp[2] = (int64_t)tab[2] * tmp[1].re; in fft3() 195 mtmp[3] = (int64_t)tab[2] * tmp[1].im; in fft3() 201 tmp[0].re = tab[0] * tmp[0].re; in fft3() 202 tmp[0].im = tab[ in fft3() 256 const TXComplex *tab = (const TXComplex *)TX_TAB(ff_tx_tab_7); fft7() local 342 const TXComplex *tab = (const TXComplex *)TX_TAB(ff_tx_tab_9); fft9() local 1289 TXSample *tab; ff_tx_rdft_init() local [all...] |
H A D | mem.c | 325 void **tab; in av_dynarray_add_nofree() local 326 memcpy(&tab, tab_ptr, sizeof(tab)); in av_dynarray_add_nofree() 328 FF_DYNARRAY_ADD(INT_MAX, sizeof(*tab), tab, *nb_ptr, { in av_dynarray_add_nofree() 329 tab[*nb_ptr] = elem; in av_dynarray_add_nofree() 330 memcpy(tab_ptr, &tab, sizeof(tab)); in av_dynarray_add_nofree() 339 void **tab; in av_dynarray_add() local 340 memcpy(&tab, tab_pt in av_dynarray_add() [all...] |
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_exit/ |
H A D | 3-2.c | 94 static int tab[4]; variable 99 tab[global]=n; \ 119 ret = pthread_setspecific(tld[0], (void *)&tab[3]); in threaded() 126 ret = pthread_setspecific(tld[1], (void *)&tab[3]); in threaded() 132 ret = pthread_setspecific(tld[2], (void *)&tab[3]); in threaded() 175 tab[j] = 0; in main() 222 if ((tab[j] != j + 1) || (tab[3] != 9)) { in main() 225 tab[0], tab[ in main() [all...] |
H A D | 2-2.c | 93 static int tab[3]; variable 97 tab[global]=n; \ 142 tab[j] = 0; in main() 189 if (tab[j] != j + 1) { in main() 192 tab[0], tab[1], tab[2]); in main()
|
/third_party/musl/libc-test/src/math/gen/ |
H A D | rnd.c | 45 int insert(uint64_t *tab, size_t len, uint64_t v) in insert() argument 51 while (tab[i]) { in insert() 52 if (tab[i] == v) in insert() 57 tab[i] = v; in insert() 83 uint64_t *tab; in choose() local 108 if (n < 5*k && (n-k)*sizeof *tab < (size_t)-1) { in choose() 110 tab = malloc((n-k) * sizeof *tab); in choose() 111 if (!tab) in choose() 116 tab[ in choose() [all...] |
/third_party/node/deps/openssl/openssl/crypto/bn/ |
H A D | bn_gf2m.c | 64 BN_ULONG tab[8], top2b = a >> 30; in bn_GF2m_mul_1x1() local 71 tab[0] = 0; in bn_GF2m_mul_1x1() 72 tab[1] = a1; in bn_GF2m_mul_1x1() 73 tab[2] = a2; in bn_GF2m_mul_1x1() 74 tab[3] = a1 ^ a2; in bn_GF2m_mul_1x1() 75 tab[4] = a4; in bn_GF2m_mul_1x1() 76 tab[5] = a1 ^ a4; in bn_GF2m_mul_1x1() 77 tab[6] = a2 ^ a4; in bn_GF2m_mul_1x1() 78 tab[7] = a1 ^ a2 ^ a4; in bn_GF2m_mul_1x1() 80 s = tab[ in bn_GF2m_mul_1x1() 133 BN_ULONG tab[16], top3b = a >> 61; bn_GF2m_mul_1x1() local [all...] |
/third_party/openssl/crypto/bn/ |
H A D | bn_gf2m.c | 65 BN_ULONG tab[8], top2b = a >> 30; in bn_GF2m_mul_1x1() local 72 tab[0] = 0; in bn_GF2m_mul_1x1() 73 tab[1] = a1; in bn_GF2m_mul_1x1() 74 tab[2] = a2; in bn_GF2m_mul_1x1() 75 tab[3] = a1 ^ a2; in bn_GF2m_mul_1x1() 76 tab[4] = a4; in bn_GF2m_mul_1x1() 77 tab[5] = a1 ^ a4; in bn_GF2m_mul_1x1() 78 tab[6] = a2 ^ a4; in bn_GF2m_mul_1x1() 79 tab[7] = a1 ^ a2 ^ a4; in bn_GF2m_mul_1x1() 81 s = tab[ in bn_GF2m_mul_1x1() 134 BN_ULONG tab[16], top3b = a >> 61; bn_GF2m_mul_1x1() local [all...] |
/third_party/optimized-routines/math/ |
H A D | v_math.h | 231 v_lookup_f32 (const f32_t *tab, v_u32_t idx) in v_lookup_f32() argument 233 return tab[idx]; in v_lookup_f32() 236 v_lookup_u32 (const u32_t *tab, v_u32_t idx) in v_lookup_u32() argument 238 return tab[idx]; in v_lookup_u32() 351 v_lookup_f64 (const f64_t *tab, v_u64_t idx) in v_lookup_f64() argument 353 return tab[idx]; in v_lookup_f64() 356 v_lookup_u64 (const u64_t *tab, v_u64_t idx) in v_lookup_u64() argument 358 return tab[idx]; in v_lookup_u64() 500 v_lookup_f32 (const f32_t *tab, v_u32_t idx) in v_lookup_f32() argument 502 return (v_f32_t){tab[id in v_lookup_f32() 505 v_lookup_u32(const u32_t *tab, v_u32_t idx) v_lookup_u32() argument 624 v_lookup_f64(const f64_t *tab, v_u64_t idx) v_lookup_f64() argument 629 v_lookup_u64(const u64_t *tab, v_u64_t idx) v_lookup_u64() argument [all...] |
/third_party/node/deps/openssl/config/archs/linux32-s390x/asm/crypto/bn/ |
H A D | s390x-gf2m.s | 23 stg %r0,96(%r15) # tab[0]=0 25 stg %r6,104(%r15) # tab[1]=a1 27 stg %r7,112(%r15) # tab[2]=a2 29 stg %r10,120(%r15) # tab[3]=a1^a2 32 stg %r8,128(%r15) # tab[4]=a4 34 stg %r6,136(%r15) # tab[5]=a1^a4 36 stg %r7,144(%r15) # tab[6]=a2^a4 38 stg %r10,152(%r15) # tab[7]=a1^a2^a4 41 stg %r9,160(%r15) # tab[8]=a8 43 stg %r6,168(%r15) # tab[ [all...] |
/third_party/node/deps/openssl/config/archs/linux32-s390x/asm_avx2/crypto/bn/ |
H A D | s390x-gf2m.s | 23 stg %r0,96(%r15) # tab[0]=0 25 stg %r6,104(%r15) # tab[1]=a1 27 stg %r7,112(%r15) # tab[2]=a2 29 stg %r10,120(%r15) # tab[3]=a1^a2 32 stg %r8,128(%r15) # tab[4]=a4 34 stg %r6,136(%r15) # tab[5]=a1^a4 36 stg %r7,144(%r15) # tab[6]=a2^a4 38 stg %r10,152(%r15) # tab[7]=a1^a2^a4 41 stg %r9,160(%r15) # tab[8]=a8 43 stg %r6,168(%r15) # tab[ [all...] |
/third_party/selinux/checkpolicy/ |
H A D | Makefile | 22 CHECKOBJS = y.tab.o lex.yy.o queue.o module_compiler.o parse_util.o \ 27 GENERATED=lex.yy.c y.tab.c y.tab.h 41 y.tab.o: y.tab.c 47 y.tab.c: policy_parse.y 50 lex.yy.c: policy_scan.l y.tab.c 71 -rm -f $(TARGETS) $(CHECKPOLOBJS) $(CHECKMODOBJS) y.tab.c y.tab.h lex.yy.c
|
/third_party/node/deps/openssl/config/archs/linux-armv4/asm_avx2/crypto/bn/ |
H A D | armv4-gf2m.S | 16 str r4,[sp,#0] @ tab[0]=0 18 str r5,[sp,#4] @ tab[1]=a1 20 str r6,[sp,#8] @ tab[2]=a2 22 str r7,[sp,#12] @ tab[3]=a1^a2 24 str r8,[sp,#16] @ tab[4]=a4 26 str r9,[sp,#20] @ tab[5]=a1^a4 28 str r4,[sp,#24] @ tab[6]=a2^a4 30 str r7,[sp,#28] @ tab[7]=a1^a2^a4 33 ldr r5,[sp,r8] @ tab[b & 0x7] 35 ldr r7,[sp,r9] @ tab[ [all...] |
/third_party/node/deps/openssl/config/archs/linux-armv4/asm/crypto/bn/ |
H A D | armv4-gf2m.S | 16 str r4,[sp,#0] @ tab[0]=0 18 str r5,[sp,#4] @ tab[1]=a1 20 str r6,[sp,#8] @ tab[2]=a2 22 str r7,[sp,#12] @ tab[3]=a1^a2 24 str r8,[sp,#16] @ tab[4]=a4 26 str r9,[sp,#20] @ tab[5]=a1^a4 28 str r4,[sp,#24] @ tab[6]=a2^a4 30 str r7,[sp,#28] @ tab[7]=a1^a2^a4 33 ldr r5,[sp,r8] @ tab[b & 0x7] 35 ldr r7,[sp,r9] @ tab[ [all...] |
/third_party/toybox/toys/posix/ |
H A D | expand.c | 19 Specify tab stops, either a single number instead of the default 8, 21 positions (absolute, not increments) with each additional tab beyond 31 unsigned tabcount, *tab; 74 width = TT.tabcount ? *TT.tab : 8; in do_expand() 77 if (TT.tab[stop] > x) { in do_expand() 78 width = TT.tab[stop] - x; in do_expand() 122 TT.tab = xmalloc(sizeof(unsigned)*TT.tabcount); in expand_main() 123 parse_tablist(TT.tab); in expand_main() 127 if (CFG_TOYBOX_FREE) free(TT.tab); in expand_main()
|
/third_party/ffmpeg/libavcodec/tests/ |
H A D | fft.c | 101 static void fft_ref(FFTComplex *tabr, FFTComplex *tab, int nbits) in fft_ref() argument 109 FFTComplex *q = tab; in fft_ref() 311 static inline void rdft_calc(RDFTContext *r, FFTSample *tab) in rdft_calc() argument 314 av_rdft_calc(r, tab); in rdft_calc() 316 r->rdft_calc(r, tab); in rdft_calc() 375 FFTComplex *tab, *tab1, *tab_ref; in main() local 444 tab = av_malloc_array(fft_size, sizeof(FFTComplex)); in main() 449 if (!(tab && tab1 && tab_ref && tab2)) in main() 525 memcpy(tab, tab1, fft_size * sizeof(FFTComplex)); in main() 526 fft_permute(s, tab); in main() [all...] |
/third_party/musl/src/crypt/ |
H A D | crypt_md5.c | 30 static const uint32_t tab[64] = { variable 59 FF(a,b,c,d, W[i], 7, tab[i]); i++; in processblock() 60 FF(d,a,b,c, W[i], 12, tab[i]); i++; in processblock() 61 FF(c,d,a,b, W[i], 17, tab[i]); i++; in processblock() 62 FF(b,c,d,a, W[i], 22, tab[i]); i++; in processblock() 65 GG(a,b,c,d, W[(5*i+1)%16], 5, tab[i]); i++; in processblock() 66 GG(d,a,b,c, W[(5*i+1)%16], 9, tab[i]); i++; in processblock() 67 GG(c,d,a,b, W[(5*i+1)%16], 14, tab[i]); i++; in processblock() 68 GG(b,c,d,a, W[(5*i+1)%16], 20, tab[i]); i++; in processblock() 71 HH(a,b,c,d, W[(3*i+5)%16], 4, tab[ in processblock() [all...] |
/third_party/node/deps/openssl/config/archs/linux64-s390x/asm/crypto/bn/ |
H A D | s390x-gf2m.s | 23 stg %r0,160(%r15) # tab[0]=0 25 stg %r6,168(%r15) # tab[1]=a1 27 stg %r7,176(%r15) # tab[2]=a2 29 stg %r10,184(%r15) # tab[3]=a1^a2 32 stg %r8,192(%r15) # tab[4]=a4 34 stg %r6,200(%r15) # tab[5]=a1^a4 36 stg %r7,208(%r15) # tab[6]=a2^a4 38 stg %r10,216(%r15) # tab[7]=a1^a2^a4 41 stg %r9,224(%r15) # tab[8]=a8 43 stg %r6,232(%r15) # tab[ [all...] |
/third_party/node/deps/openssl/config/archs/linux64-s390x/asm_avx2/crypto/bn/ |
H A D | s390x-gf2m.s | 23 stg %r0,160(%r15) # tab[0]=0 25 stg %r6,168(%r15) # tab[1]=a1 27 stg %r7,176(%r15) # tab[2]=a2 29 stg %r10,184(%r15) # tab[3]=a1^a2 32 stg %r8,192(%r15) # tab[4]=a4 34 stg %r6,200(%r15) # tab[5]=a1^a4 36 stg %r7,208(%r15) # tab[6]=a2^a4 38 stg %r10,216(%r15) # tab[7]=a1^a2^a4 41 stg %r9,224(%r15) # tab[8]=a8 43 stg %r6,232(%r15) # tab[ [all...] |
/third_party/skia/third_party/externals/expat/expat/gennmtab/ |
H A D | gennmtab.c | 387 setTab(char *tab, struct range *ranges, size_t nRanges) { in setTab() argument 393 tab[j] = 1; in setTab() 395 tab[ranges[i].start] = 1; in setTab() 400 printTabs(char *tab) { in printTabs() argument 411 int kind = tab[i * 256]; in printTabs() 413 if (tab[i * 256 + j] != kind) { in printTabs() 417 if (i >= 256 && memcmp(tab + (i - 256) * 256, tab + i * 256, 256) == 0) in printTabs() 424 if (tab[i * 256 + j * 32 + k]) in printTabs() 446 char tab[ in main() local [all...] |