Searched refs:ind (Results 1 - 25 of 107) sorted by relevance

12345

/external/chromium_org/third_party/opus/src/silk/
H A Dsigm_Q15.c53 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 ) );
H A Dgain_quant.c40 opus_int8 ind[ MAX_NB_SUBFR ], /* O gain indices */
51 ind[ k ] = silk_SMULWB( SCALE_Q16, silk_lin2log( gain_Q16[ k ] ) - OFFSET );
54 if( ind[ k ] < *prev_ind ) {
55 ind[ k ]++;
57 ind[ k ] = silk_LIMIT_int( ind[ k ], 0, N_LEVELS_QGAIN - 1 );
62 ind[ k ] = silk_LIMIT_int( ind[ k ], *prev_ind + MIN_DELTA_GAIN_QUANT, N_LEVELS_QGAIN - 1 );
63 *prev_ind = ind[ k ];
66 ind[
[all...]
H A DLP_variable_cutoff.c44 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
41 silk_LP_interpolate_filter_taps( opus_int32 B_Q28[ TRANSITION_NB ], opus_int32 A_Q28[ TRANSITION_NA ], const opus_int ind, const opus_int32 fac_Q16 ) argument
107 opus_int ind = 0; local
[all...]
H A DNLSF_del_dec_quant.c52 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_tm
[all...]
/external/opencv/cv/src/
H A Dcvdominants.cpp145 int ind; local
157 ind = (i + i_plus) % n;
158 dx = (float) (ptInf[i].pt.x - ptInf[ind].pt.x);
159 dy = (float) (ptInf[i].pt.y - ptInf[ind].pt.y);
166 int ind; local
180 ind = (i + i_plus) % n;
182 dx = (float) (ptInf[i].pt.x - ptInf[ind].pt.x);
183 dy = (float) (ptInf[i].pt.y - ptInf[ind].pt.y);
192 int ind; local
204 ind
216 int ind; local
259 int ind = (i + k) % n; local
303 int ind = i + j; local
[all...]
/external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/sasl/
H A DRealmChoiceCallbackTest.java123 int [] ind = rCCB.getSelectedIndexes();
124 assertNull("Incorrect selected indexes", ind);
125 ind = new int[3];
127 rCCB.setSelectedIndexes(ind);
138 ind = rCCB.getSelectedIndexes();
139 assertEquals("Incorrect index length", ind.length, 1);
140 assertEquals("Incorrect index", ind[0], indexes[j]);
163 int[] ind = rCCB.getSelectedIndexes();
164 assertNull("Incorrect selected indexes", ind);
166 ind
[all...]
/external/chromium_org/third_party/opus/src/silk/fixed/
H A Dvector_ops_FIX.c104 opus_int32 max = 0, i, lvl = 0, ind; local
107 ind = len - 1;
108 max = silk_SMULBB( vec[ ind ], vec[ ind ] );
113 ind = i;
121 if( vec[ ind ] < 0 ) {
122 return( -vec[ ind ] );
124 return( vec[ ind ] );
/external/apache-harmony/crypto/src/test/api/java.injected/javax/crypto/
H A DCipherInputStreamTest.java104 int ind = 0; // index into the data array (to check the got data)
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)
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;
183 for (int j = 0; j < got - ind;
[all...]
/external/chromium_org/content/browser/speech/endpointer/
H A Denergy_endpointer.cc92 int ind = insertion_index_ - 1; local
93 if (ind < 0)
94 ind = decision_points_.size() - 1;
95 return decision_points_[ind].time_us;
103 int ind = insertion_index_ - 1; local
104 if (ind < 0)
105 ind = decision_points_.size() - 1;
106 int64 end_us = decision_points_[ind].time_us;
107 bool is_on = decision_points_[ind].decision;
112 while ((decision_points_[ind]
[all...]
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
H A DFluidSimHeightMap.java164 int ind;
180 ind = x + y * size;
185 neighborsValue += newBuffer[ind - 1];
189 neighborsValue += newBuffer[ind + 1];
193 neighborsValue += newBuffer[ind - size];
197 neighborsValue += newBuffer[ind + size];
203 oldBuffer[ind] = coefA * newBuffer[ind] + coefB
204 * oldBuffer[ind] + coefC * (neighborsValue);
/external/chromium_org/ui/views/
H A Ddebug_utils.cc18 int ind = indent; local
19 while (ind-- > 0)
38 int ind = indent; local
39 while (ind-- > 0)
/external/chromium_org/third_party/openssl/openssl/crypto/x509v3/
H A Dv3_ocsp.c90 BIO *bp, int ind);
159 int ind)
164 if (BIO_printf(bp, "%*scrlUrl: ", ind, "") <= 0) goto err;
170 if (BIO_printf(bp, "%*scrlNum: ", ind, "") <= 0) goto err;
176 if (BIO_printf(bp, "%*scrlTime: ", ind, "") <= 0) goto err;
186 BIO *bp, int ind)
188 if (BIO_printf(bp, "%*s", ind, "") <= 0) return 0;
195 int ind)
197 if (BIO_printf(bp, "%*s", ind, "") <= 0) return 0;
268 BIO *bp, int ind)
158 i2r_ocsp_crlid(const X509V3_EXT_METHOD *method, void *in, BIO *bp, int ind) argument
185 i2r_ocsp_acutoff(const X509V3_EXT_METHOD *method, void *cutoff, BIO *bp, int ind) argument
194 i2r_object(const X509V3_EXT_METHOD *method, void *oid, BIO *bp, int ind) argument
267 i2r_ocsp_serviceloc(const X509V3_EXT_METHOD *method, void *in, BIO *bp, int ind) argument
[all...]
/external/openssl/crypto/x509v3/
H A Dv3_ocsp.c90 BIO *bp, int ind);
159 int ind)
164 if (BIO_printf(bp, "%*scrlUrl: ", ind, "") <= 0) goto err;
170 if (BIO_printf(bp, "%*scrlNum: ", ind, "") <= 0) goto err;
176 if (BIO_printf(bp, "%*scrlTime: ", ind, "") <= 0) goto err;
186 BIO *bp, int ind)
188 if (BIO_printf(bp, "%*s", ind, "") <= 0) return 0;
195 int ind)
197 if (BIO_printf(bp, "%*s", ind, "") <= 0) return 0;
268 BIO *bp, int ind)
158 i2r_ocsp_crlid(const X509V3_EXT_METHOD *method, void *in, BIO *bp, int ind) argument
185 i2r_ocsp_acutoff(const X509V3_EXT_METHOD *method, void *cutoff, BIO *bp, int ind) argument
194 i2r_object(const X509V3_EXT_METHOD *method, void *oid, BIO *bp, int ind) argument
267 i2r_ocsp_serviceloc(const X509V3_EXT_METHOD *method, void *in, BIO *bp, int ind) argument
[all...]
/external/iproute2/tc/
H A Dm_pedit.c164 int ind = 0, stride = 0; local
168 ind = tkey->off + 1;
169 if (0 > ind)
170 ind = -1*ind;
172 ind = tkey->off;
180 ind = tkey->off & 3;
182 if (0 > ind || 2 < ind) {
183 fprintf(stderr, "pack_key16 bad index value %d\n",ind);
207 int ind = 0, stride = 0; local
[all...]
H A Dq_dsmark.c33 __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/llvm/lib/Target/NVPTX/
H A DNVPTXLowerAggrCopies.cpp56 // 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
91 PHINode *ind = loop.CreatePHI(len->getType(), 0); local
[all...]
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
H A Dpitch_filter.c79 int k, ind, cnt; local
119 ind = 0;
156 indW32, sign, inystateQQ, ubufQQ, fracoeffQQ, indatQQ, outdatQQ, &ind);
170 ubufQQ, fracoeffQQ, indatQQ, outdatQQ, &ind);
179 int k, n, m, ind, pos, pos3QQ; local
198 ind = 0;
199 pos = ind + PITCH_BUFFSIZE;
240 ubufQQ[pos] = indatQ0[ind];
242 tmp2W32 = WEBRTC_SPL_MUL_16_32_RSFT14(indatQ0[ind], tmpW32);
258 ind
[all...]
H A Darith_routines_logist.c68 WebRtc_Word32 ind; local
74 ind = WEBRTC_SPL_MUL(5, qtmp1 - kHistEdges[0]);
75 ind = WEBRTC_SPL_RSHIFT_W32(ind, 16);
78 qtmp1 = qtmp1 - kHistEdges[ind];
80 WEBRTC_SPL_UMUL_32_16(qtmp1,kCdfSlope[ind]), 15);
81 return (kCdfLogistic[ind] + qtmp2);
/external/libnfc-nci/src/nfc/tags/
H A Dtags_int.c265 int ind = (int) (p_info - t1t_cmd_rsp_infos); local
266 if (ind < T1T_MAX_NUM_OPCODES)
267 return (const char *) t1t_cmd_str[ind];
283 int ind = (int) (p_info - t2t_cmd_rsp_infos); local
284 if (ind < T2T_MAX_NUM_OPCODES)
285 return (const char *) t2t_cmd_str[ind];
/external/svox/pico/lib/
H A Dpicoklex.h74 /* max len (in bytes) of ind, (PICOKLEX_MAX_NRRES * PICOKLEX_POSIND_SIZE) */
93 picoos_uint8 posind[PICOKLEX_POSIND_MAXLEN]; /* sequence of multi-ind,
106 PICOKLEX_IND_SIZE bytes are used for the index, these ind bytes are
114 /** lookup lex entry by index ind; ind is a sequence of bytes with
118 const picoos_uint8 *ind,
/external/valgrind/main/exp-sgcheck/tests/
H A Dbad_percentify.c274 Int ind = 0; local
289 buf[ind++] = '0';
293 0 == (ind-nc) % 3 && 0 != ind)
295 buf[ind++] = ',';
298 buf[ind++] = digits[p % base];
304 buf[ind++] = '-';
307 for(; ind < width; ind++) {
308 /* assert(ind < 3
[all...]
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/serialization/
H A DCertPathValidatorExceptionTest.java67 int ind = ref.getIndex();
68 assertEquals("Incorrect index", test.getIndex(), ind);
/external/nist-sip/java/gov/nist/javax/sip/stack/
H A DMessageProcessor.java238 int ind = sentBy.indexOf(":");
239 if (ind == -1) {
244 this.sentByHostPort.setHost(new Host(sentBy.substring(0, ind)));
245 String portStr = sentBy.substring(ind + 1);
250 throw new ParseException("Bad format encountered at ", ind);
/external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
H A DPQTorus.java210 int ind = sib.get(i);
211 if (ind < 0) {
212 ind += vertCount;
213 sib.put(i, (short) ind);
214 } else if (ind >= vertCount) {
215 ind -= vertCount;
216 sib.put(i, (short) ind);
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
H A Dtgsi_scan.c97 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;

Completed in 534 milliseconds

12345