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

1 2 3 4 5

  /external/u-boot/lib/efi_selftest/
efi_selftest_util.c 15 const u8 *pos2 = buf2; local
18 if (*pos1 != *pos2)
19 return *pos1 - *pos2;
21 ++pos2;
  /frameworks/av/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 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/u-boot/lib/efi_loader/
helloworld.c 23 const u8 *pos2 = buf2; local
26 if (*pos1 != *pos2)
27 return *pos1 - *pos2;
29 ++pos2;
  /external/wpa_supplicant_8/src/utils/
ext_password_test.c 47 char *pos, *pos2; local
61 pos2 = pos;
62 while (*pos2 != '|' && *pos2 != '\0')
63 pos2++;
64 buf = ext_password_alloc(pos2 - pos);
67 wpabuf_put_data(buf, pos, pos2 - pos);
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
userdatarequest.cpp 39 char *tmp, *pos, *pos2; local
51 pos2 = strchr(pos, ':');
52 if (pos2 == NULL) {
56 *pos2++ = '\0';
59 queryInfo->setText(pos2);
  /external/aac/libAACdec/src/
usacdec_ace_d4t64.cpp 185 SHORT pos1, pos2; local
193 pos2 = (SHORT)((index & mask) + offset);
194 if ((pos2 - pos1) < 0) {
198 pos2 += 16;
203 pos2 += 16;
207 pos[1] = pos2;
  /external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/zip/
CircularBuffer.java 82 final int pos2 = pos1 + length; local
83 for (int i = pos1; i < pos2; i++) {
  /external/wpa_supplicant_8/src/wps/
wps_er_ssdp.c 26 char buf[MULTICAST_MAX_READ], *pos, *pos2, *start; local
82 pos2 = os_strstr(start, "max-age=");
83 if (pos2 == NULL)
85 pos2 += 8;
86 max_age = atoi(pos2);
89 pos2 = os_strstr(start, "uuid:");
90 if (pos2) {
91 pos2 += 5;
92 while (*pos2 == ' ')
93 pos2++
    [all...]
  /frameworks/av/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 201 FT_ULong pos1, pos2; local
206 pos1 = pos2 = 0;
216 pos2 = pos1;
219 pos2 = FT_NEXT_ULONG( p );
227 pos2 = pos1;
230 pos2 = FT_NEXT_USHORT( p );
233 pos2 <<= 1;
249 if ( pos2 > face->glyf_len )
258 pos2 - pos1, gindex, face->glyf_len - pos1 ));
259 pos2 = face->glyf_len
    [all...]
  /external/google-breakpad/src/common/linux/
linux_libc_support.cc 200 size_t pos2 = 0; local
202 while (s2[pos2] != '\0') {
204 s1[pos1] = s2[pos2];
207 pos2++;
212 return pos2;
  /external/icu/icu4c/source/samples/uciter8/
uciter8.c 55 int32_t i, pos1, pos2, middle, length; local
60 pos2=iter2->getIndex(iter2, UITER_LENGTH);
61 if(length!=pos2) {
62 log_err("%s->getIndex(length)=%d != %d=%s->getIndex(length)\n", n1, length, pos2, n2);
75 pos2=iter2->move(iter2, middle, UITER_ZERO);
76 if(pos2!=middle) {
77 log_err("%s->move(from 0 to middle %d)=%d does not move to the middle\n", n2, middle, pos2);
120 pos2=iter2->move(iter2, 0, UITER_START);
121 if(pos2<0) {
155 pos2=iter2->move(iter2, middle, UITER_ZERO)
    [all...]
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_wide_line.c 63 float *pos2 = v2->data[pos]; local
66 const float dx = fabsf(pos0[0] - pos2[0]);
67 const float dy = fabsf(pos0[1] - pos2[1]);
85 pos2[1] = pos2[1] - half_width - bias;
88 if (pos0[0] < pos2[0]) {
92 pos2[0] -= 0.5f;
99 pos2[0] += 0.5f;
108 pos2[0] = pos2[0] - half_width + bias
    [all...]
  /external/u-boot/board/siemens/common/
board.c 192 unsigned char i, idx, pos1, pos2, ccount; local
207 pos2 = 0;
214 pos2 = idx;
218 if (pos2 <= pos1 || ccount > 2)
236 (pos2-pos1-1)*sizeof(char));
245 strcpy(str_tmp, ptr_env+pos2+1);
  /external/wpa_supplicant_8/src/ap/
mbo_ap.c 132 char *pos2 = pos; local
134 ret = os_snprintf(pos2, end - pos2,
139 if (os_snprintf_error(end - pos2, ret))
141 pos2 += ret;
144 ret = os_snprintf(pos2, end - pos2, "%u%s",
148 if (os_snprintf_error(end - pos2, ret)) {
149 pos2 = NULL;
152 pos2 += ret
    [all...]
  /external/wpa_supplicant_8/src/common/
cli.c 256 char *pos2 = os_strrchr(pos, '"'); local
257 if (pos2)
258 pos = pos2 + 1;
  /external/wpa_supplicant_8/src/eap_server/
eap_server_gtc.c 108 const u8 *pos2, *end; local
119 pos2 = pos;
120 while (pos2 < end && *pos2)
121 pos2++;
122 if (pos2 == end) {
130 pos, pos2 - pos);
132 (pos2 - pos != (int) sm->identity_len ||
143 sm->identity_len = pos2 - pos;
160 pos = pos2 + 1
    [all...]
  /external/brotli/research/
draw_histogram.cc 115 int pos2 = static_cast<int>(ceil(1.0 * (y + 1) * max_pos / width)); local
116 histo[x][y] += pos2 - pos;
122 pos2 = static_cast<int>(ceil(1.0 * right * max_pos / width));
123 histo[x][right] += pos + copy - 1 - pos2 + 1;
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
ValidIdentifiers.java 71 int pos2 = pos+1; local
73 pos2 = pos = s.charAt(0) < 'A' ? 3 : 2;
76 final String subdivision = s.substring(pos2);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
IntlTestDateFormatAPI.java 111 FieldPosition pos2 = new FieldPosition(0); local
116 res2 = it.format(d, res2, pos2);
IntlTestSimpleDateFormatAPI.java 88 FieldPosition pos2 = new FieldPosition(0); local
93 res2 = cust1.format(d, res2, pos2);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
ValidIdentifiers.java 60 int pos2 = pos+1; local
62 pos2 = pos = s.charAt(0) < 'A' ? 3 : 2;
65 final String subdivision = s.substring(pos2);
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
IntlTestSimpleDateFormatAPI.java 85 FieldPosition pos2 = new FieldPosition(0); local
90 res2 = cust1.format(d, res2, pos2);
  /art/compiler/utils/
intrusive_forward_list_test.cc 769 auto pos2 = list2.before_begin(); local
771 pos2 = list2.insert_after(pos2, storage[idx]);

Completed in 3101 milliseconds

1 2 3 4 5