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

1 2 3

  /frameworks/base/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...]
c4t64fx.c 142 Word16 ind[NPMAXPT * NB_TRACK]; local
568 ix = ind[0] = pos_max[ipos[0]];
569 iy = ind[1] = pos_max[ipos[1]];
602 ix = ind[0] = pos_max[ipos[0]];
603 iy = ind[1] = pos_max[ipos[1]];
604 i = ind[2] = pos_max[ipos[2]];
605 j = ind[3] = pos_max[ipos[3]];
671 ind[j] = ix;
672 ind[j + 1] = iy;
700 codvec[i] = ind[i];
    [all...]
  /frameworks/base/media/libstagefright/codecs/amrnb/common/include/
gmed_n.h 70 Word16 ind[], /* i : Past gain values */
  /frameworks/base/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...]
gmed_n.cpp 89 ind = input values (Word16)
124 Word16 ind[], // i : Past gain values
138 tmp2[i] = ind[i];
157 return (ind[medianIndex]);
184 Word16 ind[], /* i : input values */
196 *(tmp2 + i) = *(ind + i);
216 return (*(ind + medianIndex));
  /frameworks/base/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));
pvamrwbdecoder.cpp 327 int16 i, j, i_subfr, index, ind[8], tmp; local
491 ind[0] = Serial_parm(8, &prms); /* index of 1st ISP subvector */
492 ind[1] = Serial_parm(8, &prms); /* index of 2nd ISP subvector */
493 ind[2] = Serial_parm(6, &prms); /* index of 3rd ISP subvector */
494 ind[3] = Serial_parm(7, &prms); /* index of 4th ISP subvector */
495 ind[4] = Serial_parm(7, &prms); /* index of 5th ISP subvector */
496 ind[5] = Serial_parm(5, &prms); /* index of 6th ISP subvector */
497 ind[6] = Serial_parm(5, &prms); /* index of 7th ISP subvector */
499 Dpisf_2s_46b(ind, isf, st->past_isfq, st->isfold, st->isf_buf, bfi, 1);
503 ind[0] = Serial_parm(8, &prms)
    [all...]
  /bionic/libc/stdlib/
atexit.h 35 int ind; /* next index in this table */ member in struct:atexit
atexit.c 73 if (p->ind + 1 >= p->max)
85 p->ind = 1;
87 p->ind = 0;
95 fnp = &p->fns[p->ind++];
135 for (n = p->ind; --n >= 0;) {
201 p->ind = 1;
  /libcore/luni/src/main/java/java/awt/font/
NumericShaper.java 712 for (int ind = start; ind < start + count; ind++){
713 if (minDigit <= text[ind] && text[ind] <= maxDigit){
714 if (currIndex != INDEX_ETHIOPIC || text[ind] != '0'){
715 text[ind] = (char)(digitsLowRanges[currIndex] + text[ind]);
718 if(isCharStrong(text[ind])){
719 int index = getCharIndex(text[ind]);
    [all...]
  /external/webkit/WebKitTools/android/flex-2.5.4a/
ccl.c 39 int ind, len, newpos, i; local
44 ind = cclmap[cclp];
49 if ( ccltbl[ind + i] == ch )
52 newpos = ind + len;
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
CipherInputStream1Test.java 138 int ind = 0; // index into the data array (to check the got data) local
141 for (int j = 0; j < got - ind; j++) {
142 if (result[j] != data[ind + j]) {
152 ind = got;
183 int ind = skip; // index into the data array (to check the got data) local
188 for (int j = 0; j < got - ind; j++) {
190 + "returned incorrect data.", result[j], data[ind + j]);
199 ind = got;
226 int ind = skipped; local
229 for (int j = 0; j < got - ind; j++)
    [all...]
  /external/bluetooth/bluez/audio/
telephony.h 146 void telephony_event_reporting_req(void *telephony_device, int ind);
198 struct indicator *ind = NULL; local
202 ind = &indicators[i];
207 if (!ind)
210 DBG("Telephony indicator \"%s\" %d->%d", desc, ind->val, new_val);
212 if (ind->ignore_redundant && ind->val == new_val) {
217 ind->val = new_val;
ctl_bluetooth.c 261 struct bt_control_ind *ind = (void *) buf; local
269 ret = recv(data->sock, ind, BT_SUGGESTED_BUFFER_SIZE, MSG_DONTWAIT);
276 type = bt_audio_strtype(ind->h.type);
280 ind->h.type);
284 name = bt_audio_strname(ind->h.name);
288 ind->h.name);
292 if (ind->h.name != BT_CONTROL) {
298 snd_ctl_elem_id_set_name(id, ind->mode == BLUETOOTH_PLAYBACK ?
  /external/openssl/crypto/x509v3/
v3_ocsp.c 90 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)
    [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...]
q_dsmark.c 36 __u16 ind; local
40 ind = set_tc_index = 0;
45 ind = strtoul(*argv,&end,0);
70 if (!ind) {
76 addattr_l(n,1024,TCA_DSMARK_INDICES,&ind,sizeof(ind));
  /external/svox/pico/lib/
picoklex.h 74 /* max len (in bytes) of ind, (PICOKLEX_MAX_NRRES * PICOKLEX_POSIND_SIZE) */
82 the IND-bytes are the byte position(s) in the lexblocks part of the
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,
picoacph.c 330 const picoos_uint16 ind) {
336 for (i = 0; i < acph->headx[ind].head.len; i++) {
337 ch = acph->cbuf[acph->headx[ind].cind + i];
351 /* find next POS to the left of 'ind' and return its POS and index */
354 const picoos_uint16 ind,
360 for (i = ind - 1; ((val == PICOKDT_EPSILON) && (i >= 0)); i--) {
406 /* set initial nr pre/fol words/sylls, upbound is ind of last WORDPHON */
616 /* find next POS to the left of 'ind' and return its POS and index */
619 const picoos_uint16 ind,
625 for (i = ind - 1; ((val == PICOKDT_EPSILON) && (i >= 0)); i--)
    [all...]
  /external/bluetooth/glib/gobject/
glib-genmarshal.c 326 guint ind, a; local
362 ind = g_fprintf (fout, gen_internal ? "G_GNUC_INTERNAL " : "extern ");
363 ind += g_fprintf (fout, "void ");
364 ind += g_fprintf (fout, "%s_%s (", marshaller_prefix, signame);
366 g_fprintf (fout, "%sGValue *return_value,\n", indent (ind));
367 g_fprintf (fout, "%sguint n_param_values,\n", indent (ind));
368 g_fprintf (fout, "%sconst GValue *param_values,\n", indent (ind));
369 g_fprintf (fout, "%sgpointer invocation_hint,\n", indent (ind));
371 indent (ind));
377 ind = g_fprintf (fout, "%s_%s (", marshaller_prefix, signame)
    [all...]
  /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);
  /system/core/sh/
show.c 73 shtree(union node *n, int ind, char *pfx, FILE *fp)
81 indent(ind, pfx, fp);
92 shtree(n->nbinary.ch1, ind, NULL, fp);
93 /* if (ind < 0) */
95 shtree(n->nbinary.ch2, ind, NULL, fp);
99 if (ind >= 0)
110 if (ind >= 0)
115 if (ind >= 0)
  /frameworks/base/wifi/java/android/net/wifi/
WifiMonitor.java 220 int ind = eventStr.indexOf(" "); local
221 if (ind != -1) {
222 eventData = eventStr.substring(ind + 1);
225 int ind = eventStr.indexOf(" - "); local
226 if (ind != -1) {
227 eventData = eventStr.substring(ind + 3);
  /external/zlib/examples/
gun.c 80 struct ind { struct
93 struct ind *me = (struct ind *)in_desc;
199 local int lunpipe(unsigned have, unsigned char *next, struct ind *indp,
387 struct ind ind, *indp; local
391 ind.infile = infile;
392 ind.inbuf = inbuf;
393 indp = &ind;
  /external/e2fsprogs/lib/ext2fs/
bmap.c 35 blk_t ind, char *block_buf,
42 if (!ind) {
48 retval = io_channel_read_blk(fs->io, ind, 1, block_buf);
60 return io_channel_write_blk(fs->io, ind, 1, block_buf);
86 retval = io_channel_write_blk(fs->io, ind, 1, block_buf);

Completed in 680 milliseconds

1 2 3