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

1 2 3

  /frameworks/base/media/libstagefright/codecs/amrwbenc/inc/
q_pulse.h 36 Word16 pos2, /* (i) position of the pulse 2 */
41 Word16 pos2, /* (i) position of the pulse 2 */
47 Word16 pos2, /* (i) position of the pulse 2 */
  /frameworks/base/media/libstagefright/codecs/amrnb/dec/src/
d1035pf.cpp 134 Word16 i, j, pos1, pos2, sign, tmp;
172 pos2 = add (i, j); // position of pulse "j+5"
174 if (sub (pos2, pos1) < 0)
178 cod[pos2] = add (cod[pos2], sign);
212 register Word16 i, j, pos1, pos2; local
252 pos2 = i + j; /* position of pulse "j+5" */
255 if (pos2 < pos1)
259 *(cod + pos2) += sign;
d8_31pf.cpp 567 Word16 pos2; local
609 pos2 = (linear_codewords[j + 4] << 2) + j;
612 if (pos2 < pos1)
617 if (pos2 < L_SUBFR)
619 cod[pos2] += sign; /* avoid buffer overflow */
  /external/wpa_supplicant/wpa_gui/
userdatarequest.ui.h 17 char *tmp, *pos, *pos2; local
29 pos2 = strchr(pos, ':');
30 if (pos2 == NULL) {
34 *pos2++ = '\0';
37 queryInfo->setText(pos2);
wpagui.ui.h 114 char buf[2048], *pos, *pos2; local
243 pos2 = strchr(pos, '\n');
244 if (pos2)
245 *pos2 = '\0';
248 if (pos2)
249 pos = pos2 + 1;
584 char *pos = msg, *pos2; local
607 pos2 = strchr(pos, str_match(pos, WPA_CTRL_REQ) ? ':' : ' ');
608 if (pos2)
609 pos2++
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/wpa_gui/
userdatarequest.ui.h 17 char *tmp, *pos, *pos2; local
29 pos2 = strchr(pos, ':');
30 if (pos2 == NULL) {
34 *pos2++ = '\0';
37 queryInfo->setText(pos2);
wpagui.ui.h 114 char buf[2048], *pos, *pos2; local
243 pos2 = strchr(pos, '\n');
244 if (pos2)
245 *pos2 = '\0';
248 if (pos2)
249 pos = pos2 + 1;
582 char *pos = msg, *pos2; local
605 pos2 = strchr(pos, str_match(pos, WPA_CTRL_REQ) ? ':' : ' ');
606 if (pos2)
607 pos2++
    [all...]
  /external/wpa_supplicant/wpa_gui-qt4/
userdatarequest.cpp 45 char *tmp, *pos, *pos2; local
57 pos2 = strchr(pos, ':');
58 if (pos2 == NULL) {
62 *pos2++ = '\0';
65 queryInfo->setText(pos2);
wpagui.cpp 153 char buf[2048], *pos, *pos2; local
285 pos2 = strchr(pos, '\n');
286 if (pos2)
287 *pos2 = '\0';
290 if (pos2)
291 pos = pos2 + 1;
631 char *pos = msg, *pos2; local
654 pos2 = strchr(pos, str_match(pos, WPA_CTRL_REQ) ? ':' : ' ');
655 if (pos2)
656 pos2++
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/wpa_gui-qt4/
userdatarequest.cpp 45 char *tmp, *pos, *pos2; local
57 pos2 = strchr(pos, ':');
58 if (pos2 == NULL) {
62 *pos2++ = '\0';
65 queryInfo->setText(pos2);
  /external/wpa_supplicant_6/wpa_supplicant/src/hlr_auc_gw/
hlr_auc_gw.c 116 char buf[200], *pos, *pos2; local
153 pos2 = strchr(pos, ':');
154 if (pos2 == NULL) {
160 *pos2 = '\0';
168 pos = pos2 + 1;
171 pos2 = strchr(pos, ':');
172 if (pos2 == NULL) {
177 *pos2 = '\0';
183 pos = pos2 + 1;
186 pos2 = strchr(pos, ':')
254 char buf[200], *pos, *pos2; local
    [all...]
  /external/icu4c/samples/uciter8/
uciter8.c 47 int32_t i, pos1, pos2, middle, length; local
52 pos2=iter2->getIndex(iter2, UITER_LENGTH);
53 if(length!=pos2) {
54 log_err("%s->getIndex(length)=%d != %d=%s->getIndex(length)\n", n1, length, pos2, n2);
67 pos2=iter2->move(iter2, middle, UITER_ZERO);
68 if(pos2!=middle) {
69 log_err("%s->move(from 0 to middle %d)=%d does not move to the middle\n", n2, middle, pos2);
112 pos2=iter2->move(iter2, 0, UITER_START);
113 if(pos2<0) {
147 pos2=iter2->move(iter2, middle, UITER_ZERO)
    [all...]
  /external/webkit/WebCore/platform/
Length.cpp 107 int pos2; local
109 while ((pos2 = str->find(' ', pos)) != -1) {
110 r[i++] = parseLength(str->characters() + pos, pos2 - pos);
111 pos = pos2+1;
133 int pos2; local
135 while ((pos2 = str->find(',', pos)) != -1) {
136 r[i++] = parseLength(str->characters() + pos, pos2 - pos);
137 pos = pos2+1;
  /frameworks/base/media/libstagefright/codecs/amrwbenc/src/
q_pulse.c 53 Word16 pos2, /* (i) position of the pulse 2 */
62 if (((pos2 ^ pos1) & NB_POS) == 0)
65 if(pos1 <= pos2) /* ((pos1 - pos2) <= 0) */
67 /* index = ((pos1 & mask) << N) + (pos2 & mask); */
68 index = L_deposit_l(add1((((Word16) (pos1 & mask)) << N), ((Word16) (pos2 & mask))));
71 /* ((pos2 & mask) << N) + (pos1 & mask); */
72 index = L_deposit_l(add1((((Word16) (pos2 & mask)) << N), ((Word16) (pos1 & mask))));
82 if (vo_sub((Word16) (pos1 & mask), (Word16) (pos2 & mask)) <= 0)
84 /* index = ((pos2 & mask) << N) + (pos1 & mask); */
    [all...]
c2t64fx.c 56 Word32 i, j, k, i0, i1, ix, iy, pos, pos2; local
166 pos2 = MSIZE - 2;
172 p0 = &rrixiy[pos2];
197 pos2--;
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
eap_gtc.c 114 const u8 *pos2, *end; local
125 pos2 = pos;
126 while (pos2 < end && *pos2)
127 pos2++;
128 if (pos2 == end) {
136 pos, pos2 - pos);
138 (pos2 - pos != (int) sm->identity_len ||
149 sm->identity_len = pos2 - pos;
167 pos = pos2 + 1
    [all...]
tncs.c 742 char *pos, *pos2; local
750 pos2 = os_strstr(pos, "</Base64>");
751 if (pos2 == NULL)
753 *pos2 = '\0';
757 *pos2 = '<';
855 char *buf, *start, *end, *pos, *pos2, *payload; local
990 pos2 = os_strstr(pos, "</XML>");
991 if (pos2 == NULL) {
996 xmlend = pos2;
1039 char *pos, *pos2; local
    [all...]
  /external/freetype/src/truetype/
ttpload.c 170 FT_ULong pos1, pos2; local
175 pos1 = pos2 = 0;
185 pos2 = pos1;
188 pos2 = FT_NEXT_ULONG( p );
196 pos2 = pos1;
199 pos2 = FT_NEXT_USHORT( p );
202 pos2 <<= 1;
214 if ( pos2 >= pos1 )
215 *asize = (FT_UInt)( pos2 - pos1 );
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
tncc.c 673 char *pos, *pos2; local
681 pos2 = os_strstr(pos, "</Base64>");
682 if (pos2 == NULL)
684 *pos2 = '\0';
688 *pos2 = '<';
699 char *pos, *pos2, saved; local
715 pos2 = pos;
716 while (*pos2 != '\0' && *pos2 != '"' && *pos2 != '>'
743 char *buf, *start, *end, *pos, *pos2, *payload; local
1062 char *pos, *pos2; local
    [all...]
  /frameworks/base/media/libstagefright/codecs/amrwb/src/
dec_alg_codebook.cpp 147 int16 pos1, pos2, tmp; local
158 pos2 = add_int16((int16)(index & mask), offset); /* pos2 = ((index & mask) + offset); */
160 if (pos2 < pos1) /* ((pos2 - pos1) < 0) */
168 pos2 += NB_POS; /* pos2 += NB_POS; */
176 pos2 += NB_POS; /* pos2 += NB_POS; */
181 pos[1] = pos2;
    [all...]
  /external/wpa_supplicant/
wpa_cli.c 1186 char *copy = NULL, *id, *pos2; local
1209 pos2 = id = copy;
1210 while (*pos2 && *pos2 != ' ')
1211 pos2++;
1212 *pos2++ = '\0';
1215 while (*pos2 && *pos2 != '=')
1216 pos2++;
1217 if (*pos2 == '='
1413 char *pos2 = os_strrchr(pos, '"'); local
    [all...]
driver_test.c 283 const char *pos, *pos2; local
306 pos2 = os_strchr(pos, ' ');
307 if (pos2 == NULL) {
312 len = (pos2 - pos) / 2;
321 pos = pos2 + 1;
322 pos2 = os_strchr(pos, ' ');
323 if (pos2 == NULL)
326 len = (pos2 - pos) / 2;
351 if (pos2) {
352 pos = pos2 + 1
577 const char *pos, *pos2; local
    [all...]
  /external/oprofile/daemon/
opd_anon.c 51 struct list_head * pos2; local
54 list_for_each_safe(pos, pos2, &lru) {
83 struct list_head * pos2; local
88 list_for_each_safe(pos, pos2, &hashes[hash]) {
  /external/wpa_supplicant_6/wpa_supplicant/
wpa_cli.c 1501 char *copy = NULL, *id, *pos2; local
1732 char *pos2 = os_strrchr(pos, '"'); local
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
PathMeasureTest.java 81 float[] pos2 = { 1f, 2f }; local
83 assertFalse(mPathMeasure.getPosTan(distance, pos2, tan2));

Completed in 499 milliseconds

1 2 3