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

1 2 3

  /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...]
  /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-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/oprofile/daemon/
opd_kernel.c 115 struct list_head * pos2; local
118 list_for_each_safe(pos, pos2, &modules) {
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]) {
opd_sfile.c 534 struct list_head * pos2; local
535 list_for_each_safe(pos, pos2, &sf->cg_hash[i]) {
556 struct list_head * pos2; local
558 list_for_each_safe(pos, pos2, &lru_list) {
605 struct list_head * pos2; local
611 list_for_each_safe(pos, pos2, &lru_list) {
  /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/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/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/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/oprofile/libop/
op_alloc_counter.c 89 struct list_head * pos, * pos2; local
90 list_for_each_safe(pos, pos2, &ctr_arc[i].next) {
  /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...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
PathMeasureTest.java 81 float[] pos2 = { 1f, 2f }; local
83 assertFalse(mPathMeasure.getPosTan(distance, pos2, tan2));
  /external/wpa_supplicant/
config_file.c 133 char buf[256], *pos, *pos2; local
150 pos2 = os_strchr(pos, '=');
151 if (pos2 == NULL) {
158 *pos2++ = '\0';
159 if (*pos2 == '"') {
160 if (os_strchr(pos2 + 1, '"') == NULL) {
162 "quotation '%s'.", *line, pos2);
168 if (wpa_config_set(ssid, pos, pos2, *line) < 0)
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...]
  /frameworks/base/media/libstagefright/codecs/amrwbenc/src/
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/
config_file.c 136 char buf[256], *pos, *pos2; local
153 pos2 = os_strchr(pos, '=');
154 if (pos2 == NULL) {
161 *pos2++ = '\0';
162 if (*pos2 == '"') {
163 if (os_strchr(pos2 + 1, '"') == NULL) {
165 "quotation '%s'.", *line, pos2);
171 if (wpa_config_set(ssid, pos, pos2, *line) < 0)
  /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/chromium/third_party/icu/source/test/intltest/
itrbnf.cpp 255 FieldPosition pos1, pos2; local
264 doubleFormatResult = formatter->format(doubleFormatNum, ruleSetName, doubleFormatResult, pos2, status);
293 doubleFormatResult = formatter->format(doubleFormatNum, "TRUC", doubleFormatResult, pos2, status);
334 FieldPosition pos2; local
335 formatter->format((int64_t)4, formatter->getRuleSetName(0), result, pos2, status = U_ZERO_ERROR);
    [all...]

Completed in 666 milliseconds

1 2 3