HomeSort by relevance Sort by last modified time
    Searched refs:pos (Results 326 - 350 of 4804) sorted by null

<<11121314151617181920>>

  /external/javassist/src/main/javassist/bytecode/
StackMapTable.java 178 int pos = 2; local
180 pos = stackMapFrames(pos, i);
186 * @param pos the position of the frame in the <code>info</code>
192 int stackMapFrames(int pos, int nth) throws BadBytecode {
193 int type = info[pos] & 0xff;
195 sameFrame(pos, type);
196 pos++;
199 pos = sameLocals(pos, type)
    [all...]
  /external/iptables/include/linux/netfilter/
x_tables.h 165 /* pos is normally a struct ipt_entry/ip6t_entry/etc. */
166 #define xt_entry_foreach(pos, ehead, esize) \
167 for ((pos) = (typeof(pos))(ehead); \
168 (pos) < (typeof(pos))((char *)(ehead) + (esize)); \
169 (pos) = (typeof(pos))((char *)(pos) + (pos)->next_offset)
    [all...]
  /external/javassist/src/test/test/javassist/convert/
ArrayAccessReplaceTest.java 245 public void setBoolean(int pos, boolean value);
246 public boolean getBoolean(int pos);
248 public void setByte(int pos, byte value);
249 public byte getByte(int pos);
251 public void setShort(int pos, short value);
252 public short getShort(int pos);
254 public void setChar(int pos, char value);
255 public char getChar(int pos);
257 public void setInt(int pos, int value);
258 public int getInt(int pos);
    [all...]
  /external/wpa_supplicant_8/hostapd/
hlr_auc_gw.c 215 char cmd[128], val[13], *pos; local
217 pos = val;
218 pos += wpa_snprintf_hex(pos, sizeof(val), m->sqn, 6);
219 *pos = '\0';
261 char buf[200], *pos, *pos2; local
282 pos = buf;
283 while (*pos != '\0' && *pos != '\n')
284 pos++
399 char buf[200], *pos, *pos2; local
524 char buf[500], *pos; local
618 char *pos; local
718 char reply[1000], *pos, *end; local
    [all...]
ctrl_iface.c 186 char *pos; local
196 pos = os_strchr(timeout_txt, ' ');
197 if (pos) {
198 *pos++ = '\0';
199 if (hwaddr_aton(pos, addr_buf) == 0)
214 char *pos; local
219 for (pos = cmd, len = 0; *pos != '\0'; pos++) {
220 if (*pos < '0' || *pos > '9'
364 char *pos; local
416 char *pos; local
467 char *pos; local
513 char *pos, *end; local
568 u8 buf[1000], *pos; local
611 u8 buf[1000], *pos; local
709 char *pos, *end; local
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
fphdlimp.cpp 40 : pos(_pos) {
48 if (pos.getField() == id) {
49 pos.setBeginIndex(start);
50 pos.setEndIndex(limit);
56 if (delta != 0 && pos.getField() != FieldPosition::DONT_CARE && pos.getBeginIndex() != -1) {
57 pos.setBeginIndex(delta + pos.getBeginIndex());
58 pos.setEndIndex(delta + pos.getEndIndex())
    [all...]
  /external/icu4c/i18n/
fphdlimp.cpp 40 : pos(_pos) {
48 if (pos.getField() == id) {
49 pos.setBeginIndex(start);
50 pos.setEndIndex(limit);
56 if (delta != 0 && pos.getField() != FieldPosition::DONT_CARE && pos.getBeginIndex() != -1) {
57 pos.setBeginIndex(delta + pos.getBeginIndex());
58 pos.setEndIndex(delta + pos.getEndIndex())
    [all...]
  /external/svox/pico/lib/
picokpdf.c 95 picoos_uint16 pos; local
103 pos = 0;
105 pdfdur->numframes = ((picoos_uint16)(this->base[pos+1])) << 8 |
106 this->base[pos];
107 pos += 2;
108 pdfdur->vecsize = this->base[pos++];
109 pdfdur->sampperframe = this->base[pos++];
110 pdfdur->phonquantlen = this->base[pos++];
111 pdfdur->phonquant = &(this->base[pos]);
112 pos += pdfdur->phonquantlen
147 picoos_uint16 pos; local
252 picoos_uint16 pos; local
    [all...]
  /external/wpa_supplicant_8/src/crypto/
aes-omac1.c 47 const u8 *pos, *end; local
61 pos = addr[0];
62 end = pos + len[0];
66 cbc[i] ^= *pos++;
67 if (pos >= end) {
69 pos = addr[e];
70 end = pos + len[e];
84 cbc[i] ^= *pos++;
85 if (pos >= end) {
87 pos = addr[e]
    [all...]
  /external/wpa_supplicant_8/src/p2p/
p2p_parse.c 21 const u8 *pos; local
126 pos = data;
127 msg->p2p_device_addr = pos;
128 pos += ETH_ALEN;
129 msg->config_methods = WPA_GET_BE16(pos);
130 pos += 2;
131 msg->pri_dev_type = pos;
132 pos += 8;
133 msg->num_sec_dev_types = *pos++;
134 if (msg->num_sec_dev_types * 8 > data + len - pos) {
292 const u8 *pos = wpabuf_head_u8(buf); local
542 char *pos = buf; local
619 char *pos = buf; local
    [all...]
  /external/wpa_supplicant_8/src/tls/
tlsv1_server_read.c 33 const u8 *pos, *end, *c; local
48 pos = in_data;
55 if (*pos != TLS_HANDSHAKE_TYPE_CLIENT_HELLO) {
57 "message %d (expected ClientHello)", *pos);
63 pos++;
65 len = WPA_GET_BE24(pos);
66 pos += 3;
74 wpa_hexdump(MSG_MSGDUMP, "TLSv1: ClientHello", pos, len);
75 end = pos + len;
78 if (end - pos < 2
280 const u8 *pos, *end; local
691 const u8 *pos, *end; local
769 const u8 *pos, *end; local
1016 const u8 *pos; local
1065 const u8 *pos, *end; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/network/
HTTPParsers.cpp 46 // true if there is more to parse, after incrementing pos past whitespace.
47 // Note: Might return pos == str.length()
48 static inline bool skipWhiteSpace(const String& str, unsigned& pos, bool fromHttpEquivMeta)
53 while (pos < len && str[pos] <= ' ')
54 ++pos;
56 while (pos < len && (str[pos] == '\t' || str[pos] == ' '))
57 ++pos;
174 unsigned pos = 0; local
306 unsigned pos, len; local
316 size_t pos = start; local
366 unsigned pos = 0; local
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
PipedInputStreamTest.java 26 PipedOutputStream pos; field in class:PipedInputStreamTest.PWriter
32 pos.write(bytes);
43 pos = pout;
57 PipedOutputStream pos; field in class:PipedInputStreamTest
82 pos = new PipedOutputStream();
85 pis.connect(pos);
86 t = new Thread(pw = new PWriter(pos, 1000));
96 pos.close();
106 pos = new PipedOutputStream();
108 pis.connect(pos);
    [all...]
  /external/dropbear/
keyimport.c 171 len = fwrite(buf_getptr(buf, buf->len - buf->pos),
172 1, buf->len - buf->pos, fp);
174 } while (len > 0 && buf->len != buf->pos);
178 if (buf->pos != buf->len) {
701 int nnumbers = -1, pos, len, seqlen, i; local
896 pos = 0;
897 pos += ber_write_id_len(outblob+pos, 16, seqlen, ASN1_CONSTRUCTED);
899 pos += ber_write_id_len(outblob+pos, 2, numbers[i].bytes, 0)
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
losertree.h 133 unsigned int pos = k + source; local
143 new(&(losers[pos].key)) T(key);
145 losers[pos].sup = sup;
146 losers[pos].source = source;
223 for (unsigned int pos = (k + source) / 2; pos > 0; pos /= 2)
226 if ((sup && (!losers[pos].sup || losers[pos].source < source))
227 || (!sup && !losers[pos].su
380 unsigned int pos = k + source; local
604 unsigned int pos = k + source; local
840 unsigned int pos = k + source; local
    [all...]
  /bionic/libc/kernel/common/linux/
plist.h 39 #define plist_for_each(pos, head) list_for_each_entry(pos, &(head)->node_list, plist.node_list)
40 #define plist_for_each_safe(pos, n, head) list_for_each_entry_safe(pos, n, &(head)->node_list, plist.node_list)
41 #define plist_for_each_entry(pos, head, mem) list_for_each_entry(pos, &(head)->node_list, mem.plist.node_list)
42 #define plist_for_each_entry_safe(pos, n, head, m) list_for_each_entry_safe(pos, n, &(head)->node_list, m.plist.node_list)
  /bionic/libc/upstream-freebsd/lib/libc/stdio/
fsetpos.c 46 fsetpos(FILE *iop, const fpos_t *pos)
48 return (fseeko(iop, (off_t)*pos, SEEK_SET));
  /development/ndk/platforms/android-3/include/linux/
plist.h 35 #define plist_for_each(pos, head) list_for_each_entry(pos, &(head)->node_list, plist.node_list)
37 #define plist_for_each_safe(pos, n, head) list_for_each_entry_safe(pos, n, &(head)->node_list, plist.node_list)
39 #define plist_for_each_entry(pos, head, mem) list_for_each_entry(pos, &(head)->node_list, mem.plist.node_list)
41 #define plist_for_each_entry_safe(pos, n, head, m) list_for_each_entry_safe(pos, n, &(head)->node_list, m.plist.node_list)
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-buffer-deserialize-text.hh 340 hb_glyph_position_t pos; local
393 { if (!parse_int (tok, p, &pos.x_offset )) return false; }
397 { if (!parse_int (tok, p, &pos.y_offset )) return false; }
401 { if (!parse_int (tok, p, &pos.x_advance)) return false; }
407 memset (&pos , 0, sizeof (pos ));
427 buffer->pos[buffer->len - 1] = pos;
439 buffer->pos[buffer->len - 1] = pos;
    [all...]
  /external/harfbuzz_ng/src/
hb-buffer-deserialize-text.hh 340 hb_glyph_position_t pos; local
393 { if (!parse_int (tok, p, &pos.x_offset )) return false; }
397 { if (!parse_int (tok, p, &pos.y_offset )) return false; }
401 { if (!parse_int (tok, p, &pos.x_advance)) return false; }
407 memset (&pos , 0, sizeof (pos ));
427 buffer->pos[buffer->len - 1] = pos;
439 buffer->pos[buffer->len - 1] = pos;
    [all...]
  /external/icu4c/common/
ucharstrieiterator.cpp 103 const UChar *pos=pos_; local
104 if(pos==NULL) {
112 pos=uchars_+stack_->elementAti(stackSize-2);
117 pos=branchNext(pos, length, errorCode);
118 if(pos==NULL) {
122 str_.append(*pos++);
131 int32_t node=*pos++;
134 pos=skipNodeValue(pos, node)
    [all...]
  /external/javassist/src/main/javassist/convert/
TransformNewClass.java 46 public int transform(CtClass clazz, int pos, CodeIterator iterator,
50 int c = iterator.byteAt(pos);
52 index = iterator.u16bitAt(pos + 1);
54 if (iterator.byteAt(pos + 3) != DUP)
61 iterator.write16bit(newClassIndex, pos + 1);
66 index = iterator.u16bitAt(pos + 1);
75 iterator.write16bit(newMethodIndex, pos + 1);
80 return pos;
  /external/lzma/C/
7zBuf2.c 11 p->pos = 0;
16 p->pos = 0;
21 if (size > p->size - p->pos)
23 size_t newSize = p->pos + size;
30 memcpy(data, p->data, p->pos);
34 memcpy(p->data + p->pos, buf, size);
35 p->pos += size;
44 p->pos = 0;
  /external/lzma/CPP/Common/
IntToString.cpp 15 int pos = 0; local
19 temp[pos++] = (char)((delta < 10) ? ('0' + delta) : ('a' + (delta - 10)));
24 *s++ = temp[--pos];
25 while (pos > 0);
32 int pos = 0; local
35 temp[pos++] = (wchar_t)(L'0' + (int)(value % 10));
40 *s++ = temp[--pos];
41 while (pos > 0);
  /libcore/support/src/test/java/tests/support/
Support_ASimpleWriter.java 18 public int pos; field in class:Support_ASimpleWriter
36 pos = 0;
63 System.arraycopy(src, offset, buf, pos, count);
64 pos += count;
66 pos = size;
72 byte[] toReturn = new byte[pos];
73 System.arraycopy(buf, 0, toReturn, 0, pos);
78 return new String(buf, 0, pos);

Completed in 3587 milliseconds

<<11121314151617181920>>