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

1 2 3

  /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/chromium_org/third_party/opus/src/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/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...]
  /bionic/libc/upstream-openbsd/lib/libc/stdlib/
atexit.h 35 int ind; /* next index in this table */ member in struct:atexit
  /external/chromium_org/ui/views/
debug_utils.cc 18 int ind = indent; local
19 while (ind-- > 0)
38 int ind = indent; local
39 while (ind-- > 0)
  /external/chromium_org/third_party/mesa/src/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;
  /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;
  /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/chromium_org/third_party/mesa/src/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/chromium_org/third_party/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/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/chromium_org/third_party/mesa/src/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...]
  /external/chromium_org/third_party/opus/src/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/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
do_plc.c 58 int ind; local
207 ind = 5;
208 while ((max_perSquare<WebRtcIlbcfix_kPlcPerSqr[ind])&&(ind>0)) {
209 ind--;
212 tmpW32 = (int32_t)WebRtcIlbcfix_kPlcPitchFact[ind] +
213 WEBRTC_SPL_MUL_16_16_RSFT(WebRtcIlbcfix_kPlcPfSlope[ind], (max_perSquare-WebRtcIlbcfix_kPlcPerSqr[ind]), 11);
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
arith_routines_logist.c 67 int32_t ind; local
73 ind = WEBRTC_SPL_MUL(5, qtmp1 - kHistEdges[0]);
74 ind = WEBRTC_SPL_RSHIFT_W32(ind, 16);
77 qtmp1 = qtmp1 - kHistEdges[ind];
79 WEBRTC_SPL_UMUL_32_16(qtmp1,kCdfSlope[ind]), 15);
80 return (kCdfLogistic[ind] + qtmp2);
pitch_filter.c 68 int k, ind, cnt; local
108 ind = 0;
145 indW32, sign, inystateQQ, ubufQQ, fracoeffQQ, indatQQ, outdatQQ, &ind);
159 ubufQQ, fracoeffQQ, indatQQ, outdatQQ, &ind);
168 int k, n, m, ind, pos, pos3QQ; local
187 ind = 0;
188 pos = ind + PITCH_BUFFSIZE;
229 ubufQQ[pos] = indatQ0[ind];
231 tmp2W32 = WEBRTC_SPL_MUL_16_32_RSFT14(indatQ0[ind], tmpW32);
247 ind++
    [all...]
  /external/clang/test/OpenMP/
simd_ast_print.cpp 13 N ind; local
17 #pragma omp simd private(myind, g_ind), linear(ind), aligned(arr)
18 // CHECK-NEXT: #pragma omp simd private(myind,g_ind) linear(ind) aligned(arr)
20 myind = ind;
22 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/llvm/lib/Target/NVPTX/
NVPTXLowerAggrCopies.cpp 56 // The loop index (ind) is a phi node.
57 PHINode *ind = loop.CreatePHI(indType, 0); local
58 // Incoming value for ind is 0
59 ind->addIncoming(ConstantInt::get(indType, 0), origBB);
61 // load from srcAddr+ind
62 Value *val = loop.CreateLoad(loop.CreateGEP(srcAddr, ind), srcVolatile);
63 // store at dstAddr+ind
64 loop.CreateStore(val, loop.CreateGEP(dstAddr, ind), dstVolatile);
66 // The value for ind coming from backedge is (ind + 1
91 PHINode *ind = loop.CreatePHI(len->getType(), 0); local
    [all...]

Completed in 1033 milliseconds

1 2 3