HomeSort by relevance Sort by last modified time
    Searched defs:ind (Results 1 - 25 of 204) sorted by null

1 2 3 4 5 6 7 8 9

  /external/bison/lib/uniwidth/
width.c 320 int ind = nonspacing_table_ind[uc >> 9]; local
321 if (ind >= 0)
322 if ((nonspacing_table_data[64*ind + ((uc >> 3) & 63)] >> (uc & 7)) & 1)
  /external/libopus/silk/
sigm_Q15.c 53 opus_int ind; local
62 ind = silk_RSHIFT( in_Q5, 5 );
63 return( sigm_LUT_neg_Q15[ ind ] - silk_SMULBB( sigm_LUT_slope_Q10[ ind ], in_Q5 & 0x1F ) );
71 ind = silk_RSHIFT( in_Q5, 5 );
72 return( sigm_LUT_pos_Q15[ ind ] + silk_SMULBB( sigm_LUT_slope_Q10[ ind ], in_Q5 & 0x1F ) );
LP_variable_cutoff.c 44 const opus_int ind,
50 if( ind < TRANSITION_INT_NUM - 1 ) {
56 silk_Transition_LP_B_Q28[ ind ][ nb ],
57 silk_Transition_LP_B_Q28[ ind + 1 ][ nb ] -
58 silk_Transition_LP_B_Q28[ ind ][ nb ],
63 silk_Transition_LP_A_Q28[ ind ][ na ],
64 silk_Transition_LP_A_Q28[ ind + 1 ][ na ] -
65 silk_Transition_LP_A_Q28[ ind ][ na ],
73 silk_Transition_LP_B_Q28[ ind + 1 ][ nb ],
74 silk_Transition_LP_B_Q28[ ind + 1 ][ nb ]
107 opus_int ind = 0; local
    [all...]
NLSF_del_dec_quant.c 52 opus_int8 ind[ NLSF_QUANT_DEL_DEC_STATES ][ MAX_LPC_ORDER ]; local
73 ind[ j ][ i ] = (opus_int8)ind_tmp;
127 ind[ j + nStates ][ i ] = ind[ j ][ i ] + 1;
131 ind[ j ][ i ] = ind[ j - nStates ][ i ];
178 silk_memcpy( ind[ ind_max_min ], ind[ ind_min_max ], MAX_LPC_ORDER * sizeof( opus_int8 ) );
182 ind[ j ][ i ] += silk_RSHIFT( ind_sort[ j ], NLSF_QUANT_DEL_DEC_STATES_LOG2 );
199 indices[ j ] = ind[ ind_tmp & ( NLSF_QUANT_DEL_DEC_STATES - 1 ) ][ j ]
    [all...]
  /external/opencv3/samples/cpp/tutorial_code/ImgTrans/
Remap_Demo.cpp 19 int ind = 0; variable
65 ind = ind%4;
70 switch( ind )
98 ind++;
filter2D_demo.cpp 47 int ind = 0; local
56 kernel_size = 3 + 2*( ind%5 );
62 ind++;
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
isp_isf.cpp 154 int16 i, ind, offset; local
165 ind = isp[i] >> 7; /* ind = b7-b15 of isf[i] */
168 /* isp[i] = table[ind]+ ((table[ind+1]-table[ind])*offset) / 128 */
170 L_tmp = mul_16by16_to_int32(table[ind + 1] - table[ind], offset);
171 isp[i] = add_int16(table[ind], (int16)(L_tmp >> 8));
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
isp_isf.c 39 Word32 i, ind; local
41 ind = 127; /* beging at end of table -1 */
46 ind = 127; /* beging at end of table -1 */
49 while (table[ind] < isp[i])
50 ind--;
51 /* acos(isp[i])= ind*128 + ( ( isp[i]-table[ind] ) * slope[ind] )/2048 */
52 L_tmp = vo_L_mult(vo_sub(isp[i], table[ind]), slope[ind]);
68 Word32 i, ind, L_tmp; local
    [all...]
  /external/opencv3/3rdparty/libjasper/
jpc_mqcod.h 93 int_fast16_t ind; member in struct:__anon20302
  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
lsp_lsf.cpp 174 Word16 i, ind, offset;
179 ind = shr (lsf[i], 8); // ind = b8-b15 of lsf[i]
182 // lsp[i] = table[ind]+ ((table[ind+1]-table[ind])*offset) / 256
184 L_tmp = L_mult (sub (table[ind + 1], table[ind]), offset);
185 lsp[i] = add (table[ind], extract_l (L_shr (L_tmp, 9)));
221 Word16 i, ind, offset local
354 Word16 ind; local
    [all...]
  /toolchain/binutils/binutils-2.25/libiberty/
xatexit.c 52 int ind; /* next index in this table */ member in struct:xatexit
76 if (p->ind >= XATEXIT_SIZE)
80 p->ind = 0;
84 p->fns[p->ind++] = fn;
97 for (n = p->ind; --n >= 0;)
  /external/iproute2/tc/
q_dsmark.c 33 __u16 ind; local
37 ind = set_tc_index = 0;
42 ind = strtoul(*argv,&end,0);
67 if (!ind) {
73 addattr_l(n,1024,TCA_DSMARK_INDICES,&ind,sizeof(ind));
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_scan.c 97 int ind = src->Register.Index; local
104 for (ind = 0; ind < info->num_inputs; ++ind) {
105 info->input_usage_mask[ind] |= usage_mask;
108 assert(ind >= 0);
109 assert(ind < PIPE_MAX_SHADER_INPUTS);
110 info->input_usage_mask[ind] |= usage_mask;
  /bionic/libc/stdlib/
atexit.c 46 int ind; /* next index in this table */ member in struct:atexit
92 if (p->ind + 1 >= p->max)
108 p->ind = 1;
110 p->ind = 0;
116 fnp = &p->fns[p->ind++];
148 for (n = p->ind; --n >= 0;) {
  /external/apache-harmony/crypto/src/test/api/java.injected/javax/crypto/
CipherInputStreamTest.java 104 int ind = 0; // index into the data array (to check the got data) local
107 for (int j = 0; j < got - ind; j++) {
108 if (result[j] != data[ind + j]) {
118 ind = got;
143 int ind = skip; // index into the data array (to check the got data) local
148 for (int j = 0; j < got - ind; j++) {
150 + "returned incorrect data.", result[j], data[ind + j]);
159 ind = got;
180 int ind = skipped; local
183 for (int j = 0; j < got - ind; j++)
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/serialization/
CertPathValidatorExceptionTest.java 66 int ind = ref.getIndex(); local
67 assertEquals("Incorrect index", test.getIndex(), ind);
  /external/jemalloc/test/integration/
mallocx.c 24 get_size_impl(const char *cmd, size_t ind)
34 mib[2] = ind;
37 0, "Unexpected mallctlbymib([\"%s\", %zu], ...) failure", cmd, ind); local
43 get_huge_size(size_t ind)
46 return (get_size_impl("arenas.hchunk.0.size", ind));
rallocx.c 24 get_size_impl(const char *cmd, size_t ind)
34 mib[2] = ind;
37 0, "Unexpected mallctlbymib([\"%s\", %zu], ...) failure", cmd, ind); local
43 get_huge_size(size_t ind)
46 return (get_size_impl("arenas.hchunk.0.size", ind));
  /external/mesa3d/src/mesa/main/
texcompress_cpal.c 90 const GLubyte *ind = (const GLubyte *) indices; local
95 pix += get_palette_entry(info, palette, (ind[i] >> 4) & 0xf, pix);
96 pix += get_palette_entry(info, palette, ind[i] & 0xf, pix);
99 get_palette_entry(info, palette, (ind[i] >> 4) & 0xf, pix);
104 const GLubyte *ind = (const GLubyte *) indices; local
106 pix += get_palette_entry(info, palette, ind[i], pix);
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
arith_routines_logist.c 54 int32_t ind, qtmp1, qtmp2, qtmp3; local
68 ind = (qtmp1 * 5) >> 16; /* 2^16 / 5 = 0.4 in Q15 */
70 qtmp1 = qtmp2 - kHistEdgesQ15[ind]; /* Q15 - Q15 = Q15 */
71 qtmp2 = kCdfSlopeQ0[ind] * qtmp1; /* Q0 * Q15 = Q15 */
74 tmpUW32 = kCdfQ16[ind] + qtmp3; /* Q0 + Q0 = Q0 */
  /external/clang/test/OpenMP/
for_simd_ast_print.cpp 13 N ind; local
17 #pragma omp for simd private(myind, g_ind), linear(ind), aligned(arr)
18 // CHECK-NEXT: #pragma omp for simd private(myind,g_ind) linear(ind) aligned(arr)
20 myind = ind;
22 ind += g_ind;
parallel_for_simd_ast_print.cpp 13 N ind; local
17 #pragma omp parallel for simd private(myind, g_ind), linear(ind), aligned(arr) if (parallel :num)
18 // CHECK-NEXT: #pragma omp parallel for simd private(myind,g_ind) linear(ind) aligned(arr) if(parallel: num)
20 myind = ind;
22 ind += g_ind;
simd_ast_print.cpp 13 N ind; local
18 #pragma omp simd private(myind, g_ind), linear(ind), aligned(arr), linear(uval(ref))
19 // CHECK-NEXT: #pragma omp simd private(myind,g_ind) linear(ind) aligned(arr) linear(uval(ref))
21 myind = ind;
23 ind += g_ind;
  /external/libopus/silk/float/
noise_shape_analysis_FLP.c 64 opus_int i, iter, ind = 0; local
87 ind = i;
108 chirp = 0.99f - ( 0.8f + 0.1f * iter ) * ( maxabs - limit ) / ( maxabs * ( ind + 1 ) );
  /external/mesa3d/src/mesa/swrast_setup/
ss_triangle.c 165 #define IND (0)
169 #define IND (SS_OFFSET_BIT)
173 #define IND (SS_TWOSIDE_BIT)
177 #define IND (SS_OFFSET_BIT|SS_TWOSIDE_BIT)
181 #define IND (SS_UNFILLED_BIT)
185 #define IND (SS_OFFSET_BIT|SS_UNFILLED_BIT)
189 #define IND (SS_TWOSIDE_BIT|SS_UNFILLED_BIT)
193 #define IND (SS_OFFSET_BIT|SS_TWOSIDE_BIT|SS_UNFILLED_BIT)
242 GLuint ind = 0; local
247 ind |= SS_OFFSET_BIT
    [all...]

Completed in 538 milliseconds

1 2 3 4 5 6 7 8 9