HomeSort by relevance Sort by last modified time
    Searched defs:ind (Results 26 - 50 of 131) sorted by null

12 3 4 5 6

  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
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...]
  /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...]
  /external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
arith_routines_logist.c 68 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);
pitch_filter.c 79 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...]
  /frameworks/base/tests/JobSchedulerTestApp/src/com/android/demo/jobSchedulerApp/service/
TestJobService.java 104 int ind = jobParamsMap.indexOfValue(params); local
105 jobParamsMap.remove(ind);
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
CipherInputStream1Test.java 113 int ind = 0; // index into the data array (to check the got data) local
116 for (int j = 0; j < got - ind; j++) {
117 if (result[j] != data[ind + j]) {
127 ind = got;
152 int ind = skip; // index into the data array (to check the got data) local
157 for (int j = 0; j < got - ind; j++) {
159 + "returned incorrect data.", result[j], data[ind + j]);
168 ind = got;
189 int ind = skipped; local
192 for (int j = 0; j < got - ind; j++)
    [all...]
  /external/bluetooth/bluedroid/stack/btm/
btm_pm.c 188 int ind, acl_ind; local
215 ind = mode - BTM_PM_MD_HOLD; /* make it base 0 */
217 if( !(p_features[ btm_pm_mode_off[ind] ] & btm_pm_mode_msk[ind] ) )
396 void btm_pm_sm_alloc(UINT8 ind)
398 tBTM_PM_MCB *p_db = &btm_cb.pm_mode_db[ind]; /* per ACL link */
402 BTM_TRACE_DEBUG( "btm_pm_sm_alloc ind:%d st:%d", ind, p_db->state);
430 BTM_TRACE_DEBUG( "btm_pm_find_acl_ind ind:%d, st:%d", xx, btm_cb.pm_mode_db[xx].state);
    [all...]
  /external/chromium_org/content/browser/speech/endpointer/
energy_endpointer.cc 92 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].time_us > start_us) &
    [all...]
  /external/chromium_org/third_party/opus/src/silk/fixed/
noise_shape_analysis_FIX.c 66 opus_int i, iter, ind = 0; local
94 ind = i;
117 silk_MUL( maxabs_Q24, ind + 1 ), 22 );
  /external/chromium_org/third_party/skia/third_party/lua/src/
lparser.h 47 } ind; member in union:expdesc::__anon20051
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
enhancer_interface.c 59 int16_t ind, sh; local
159 ind = 0;
161 if (totsh[ind] > totsh[i]) {
162 sh = WEBRTC_SPL_MIN(31, totsh[ind]-totsh[i]);
163 if ( WEBRTC_SPL_MUL_16_16(corr16[ind], en16[i]) <
164 WEBRTC_SPL_MUL_16_16_RSFT(corr16[i], en16[ind], sh)) {
165 ind = i;
168 sh = WEBRTC_SPL_MIN(31, totsh[i]-totsh[ind]);
169 if (WEBRTC_SPL_MUL_16_16_RSFT(corr16[ind], en16[i], sh) <
170 WEBRTC_SPL_MUL_16_16(corr16[i], en16[ind])) {
    [all...]
  /external/iproute2/tc/
m_pedit.c 164 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...]
  /external/libnfc-nxp/src/
phHal4Nfc.c 463 uint8_t ind = 0; local
599 for( ind = 0; ind < 3; ind++ )
602 | (pInParam->buffer[ind] ));
626 for( ind = 0; ind < 3; ind++ )
629 | (pInParam->buffer[ind] ));
    [all...]
  /external/libopus/silk/fixed/
noise_shape_analysis_FIX.c 66 opus_int i, iter, ind = 0; local
94 ind = i;
117 silk_MUL( maxabs_Q24, ind + 1 ), 22 );
  /external/nist-sip/java/gov/nist/javax/sip/stack/
MessageProcessor.java 238 int ind = sentBy.indexOf(":"); local
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/opencv/cv/src/
cvdominants.cpp 145 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 = i + i_minus
216 int ind; local
259 int ind = (i + k) % n; local
303 int ind = i + j; local
    [all...]
  /external/opencv/cvaux/src/
cvfacedetection.cpp 145 int ind = buffImg[i] / GIST_STEP; local
146 gistImg[ind] ++;
  /external/opencv/cxcore/src/
cxjacobieigens.cpp 71 int i, j, k, ind, iters = 0; local
103 do /* while (ind) */
108 ind = 0;
121 ind = 1;
177 while( ind );
222 int i, j, k, p, q, ind, iters = 0; local
254 do /* while (ind) */
256 ind = 0;
272 ind = 1;
330 while( ind );
    [all...]
  /external/qemu/distrib/ext4_utils/src/
indirect.c 315 u32 ind = 0; local
318 return ind;
323 ind += DIV_ROUND_UP(len, aux_info.blocks_per_ind);
326 return ind;
330 ind += DIV_ROUND_UP(len, aux_info.blocks_per_dind);
333 return ind;
337 ind += DIV_ROUND_UP(len, aux_info.blocks_per_tind);
340 return ind;
  /external/valgrind/main/coregrind/
m_debuglog.c 661 Int ind = 0; local
676 buf[ind++] = '0';
680 0 == (ind-nc) % 3 && 0 != ind)
682 buf[ind++] = ',';
685 buf[ind++] = digits[p % base];
691 buf[ind++] = '-';
694 for(; ind < width; ind++) {
695 /* vg_assert(ind < 39); *
    [all...]
  /external/zlib/src/examples/
gun.c 81 struct ind { struct
94 struct ind *me = (struct ind *)in_desc;
200 local int lunpipe(unsigned have, z_const unsigned char *next, struct ind *indp,
388 struct ind ind, *indp; local
392 ind.infile = infile;
393 ind.inbuf = inbuf;
394 indp = &ind;
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
dtx_decoder_amr_wb.cpp 205 int16 ind[7]; local
301 ind[0] = Serial_parm(6, prms);
302 ind[1] = Serial_parm(6, prms);
303 ind[2] = Serial_parm(6, prms);
304 ind[3] = Serial_parm(5, prms);
305 ind[4] = Serial_parm(5, prms);
307 Disf_ns(ind, st->isf);

Completed in 1524 milliseconds

12 3 4 5 6