Searched refs:pos (Results 51 - 75 of 3861) sorted by relevance

1234567891011>>

/external/javasqlite/src/main/java/SQLite/
H A DBlob.java22 private int pos; field in class:BlobR
30 this.pos = 0;
39 int ret = blob.size - pos;
73 pos = 0;
81 long ret = pos + n;
84 pos = 0;
87 pos = blob.size;
89 pos = (int) ret;
101 int n = blob.read(b, 0, pos, b.length);
103 pos
168 private int pos; field in class:BlobW
295 write(byte[] b, int off, int pos, int len) argument
306 read(byte[] b, int off, int pos, int len) argument
[all...]
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DCacheControl.java121 int pos = 0;
122 while (pos < string.length()) {
123 int tokenStart = pos;
124 pos = HeaderParser.skipUntil(string, pos, "=,;");
125 String directive = string.substring(tokenStart, pos).trim();
128 if (pos == string.length() || string.charAt(pos) == ',' || string.charAt(pos) == ';') {
129 pos
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A Dfpositer.cpp24 pos = -1;
28 : data(NULL), pos(-1) {
32 : UObject(rhs), data(NULL), pos(rhs.pos) {
41 pos = -1;
50 if (pos != rhs.pos) {
85 pos = adopt == NULL ? -1 : 0;
89 if (pos == -1) {
93 fp.setField(data->elementAti(pos
[all...]
/external/guava/guava/src/com/google/common/io/
H A DLineBuffer.java51 int pos = off;
54 if (finishLine(cbuf[pos] == '\n')) {
55 pos++;
59 int start = pos;
60 for (int end = off + len; pos < end; pos++) {
61 switch (cbuf[pos]) {
63 line.append(cbuf, start, pos - start);
65 if (pos + 1 < end) {
66 if (finishLine(cbuf[pos
[all...]
/external/icu/icu4c/source/i18n/
H A Dfpositer.cpp24 pos = -1;
28 : data(NULL), pos(-1) {
32 : UObject(rhs), data(NULL), pos(rhs.pos) {
41 pos = -1;
50 if (pos != rhs.pos) {
85 pos = (adopt == NULL || adopt->size() == 0) ? -1 : 0; // android-changed: http://bugs.icu-project.org/trac/ticket/10354
89 if (pos == -1) {
93 fp.setField(data->elementAti(pos
[all...]
H A Dutf16collationiterator.cpp32 pos(newText + (other.pos - other.start)),
43 return (pos - start) == (o.pos - o.start);
49 pos = start + newOffset;
54 return (int32_t)(pos - start);
59 if(pos == limit) {
63 c = *pos++;
69 if(pos == limit) { return 0; }
71 if(U16_IS_TRAIL(trail = *pos)) {
[all...]
/external/javassist/src/main/javassist/bytecode/
H A DAnnotationsAttribute.java318 void parameters(int numParam, int pos) throws Exception { argument
320 pos = annotationArray(pos);
327 final int annotationArray(int pos) throws Exception { argument
328 int num = ByteArray.readU16bit(info, pos);
329 return annotationArray(pos + 2, num);
332 int annotationArray(int pos, int num) throws Exception { argument
334 pos = annotation(pos);
336 return pos;
339 annotation(int pos) argument
345 annotation(int pos, int type, int numPairs) argument
352 memberValuePair(int pos) argument
357 memberValuePair(int pos, int nameIndex) argument
361 memberValue(int pos) argument
389 enumMemberValue(int pos, int typeNameIndex, int constNameIndex) argument
393 classMemberValue(int pos, int index) argument
395 annotationMemberValue(int pos) argument
399 arrayMemberValue(int pos, int num) argument
427 annotation(int pos, int type, int numPairs) argument
432 enumMemberValue(int pos, int typeNameIndex, int constNameIndex) argument
439 classMemberValue(int pos, int index) argument
444 renameType(int pos, int index) argument
485 parameters(int numParam, int pos) argument
490 annotationArray(int pos, int num) argument
495 annotation(int pos, int type, int numPairs) argument
500 memberValuePair(int pos, int nameIndex) argument
510 enumMemberValue(int pos, int typeNameIndex, int constNameIndex) argument
517 classMemberValue(int pos, int index) argument
522 annotationMemberValue(int pos) argument
527 arrayMemberValue(int pos, int num) argument
596 parameters(int numParam, int pos) argument
606 annotationArray(int pos, int num) argument
617 annotation(int pos, int type, int numPairs) argument
622 memberValuePair(int pos, int nameIndex) argument
667 enumMemberValue(int pos, int typeNameIndex, int constNameIndex) argument
675 classMemberValue(int pos, int index) argument
680 annotationMemberValue(int pos) argument
688 arrayMemberValue(int pos, int num) argument
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
H A Dnegequ.asm3 pos equ 4 define
6 mov [ebp+pos], eax
8 mov [ebp-pos], eax
/external/smack/src/org/xbill/DNS/
H A DDNSOutput.java15 private int pos; field in class:DNSOutput
25 pos = 0;
42 return pos;
57 if (array.length - pos >= n) {
61 if (newsize < pos + n) {
62 newsize = pos + n;
65 System.arraycopy(array, 0, newarray, 0, pos);
76 if (index > pos) {
80 pos = index;
89 saved_pos = pos;
[all...]
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dieee802_11_shared.c25 u8 *pos = eid; local
29 *pos++ = WLAN_EID_TIMEOUT_INTERVAL;
30 *pos++ = 5;
31 *pos++ = WLAN_TIMEOUT_ASSOC_COMEBACK;
41 WPA_PUT_LE32(pos, timeout);
42 pos += 4;
44 return pos;
167 static void hostapd_ext_capab_byte(struct hostapd_data *hapd, u8 *pos, int idx) argument
169 *pos = 0x00;
174 *pos |
219 u8 *pos = eid; local
269 u8 *pos = eid; local
286 u8 *pos = eid; local
326 u8 *pos = eid; local
345 u8 *pos = eid; local
433 u8 *pos; local
483 u8 *pos = eid; local
[all...]
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dbase64.c32 unsigned char *out, *pos; local
48 pos = out;
51 *pos++ = base64_table[in[0] >> 2];
52 *pos++ = base64_table[((in[0] & 0x03) << 4) | (in[1] >> 4)];
53 *pos++ = base64_table[((in[1] & 0x0f) << 2) | (in[2] >> 6)];
54 *pos++ = base64_table[in[2] & 0x3f];
58 *pos++ = '\n';
64 *pos++ = base64_table[in[0] >> 2];
66 *pos++ = base64_table[(in[0] & 0x03) << 4];
67 *pos
100 unsigned char dtable[256], *out, *pos, block[4], tmp; local
[all...]
/external/wpa_supplicant_8/src/ap/
H A Dieee802_11_shared.c25 u8 *pos = eid; local
29 *pos++ = WLAN_EID_TIMEOUT_INTERVAL;
30 *pos++ = 5;
31 *pos++ = WLAN_TIMEOUT_ASSOC_COMEBACK;
41 WPA_PUT_LE32(pos, timeout);
42 pos += 4;
44 return pos;
167 static void hostapd_ext_capab_byte(struct hostapd_data *hapd, u8 *pos, int idx) argument
169 *pos = 0x00;
174 *pos |
219 u8 *pos = eid; local
269 u8 *pos = eid; local
286 u8 *pos = eid; local
326 u8 *pos = eid; local
345 u8 *pos = eid; local
433 u8 *pos; local
483 u8 *pos = eid; local
[all...]
/external/wpa_supplicant_8/src/utils/
H A Dbase64.c32 unsigned char *out, *pos; local
48 pos = out;
51 *pos++ = base64_table[in[0] >> 2];
52 *pos++ = base64_table[((in[0] & 0x03) << 4) | (in[1] >> 4)];
53 *pos++ = base64_table[((in[1] & 0x0f) << 2) | (in[2] >> 6)];
54 *pos++ = base64_table[in[2] & 0x3f];
58 *pos++ = '\n';
64 *pos++ = base64_table[in[0] >> 2];
66 *pos++ = base64_table[(in[0] & 0x03) << 4];
67 *pos
100 unsigned char dtable[256], *out, *pos, block[4], tmp; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dieee802_11_shared.c25 u8 *pos = eid; local
29 *pos++ = WLAN_EID_TIMEOUT_INTERVAL;
30 *pos++ = 5;
31 *pos++ = WLAN_TIMEOUT_ASSOC_COMEBACK;
41 WPA_PUT_LE32(pos, timeout);
42 pos += 4;
44 return pos;
167 static void hostapd_ext_capab_byte(struct hostapd_data *hapd, u8 *pos, int idx) argument
169 *pos = 0x00;
174 *pos |
219 u8 *pos = eid; local
269 u8 *pos = eid; local
286 u8 *pos = eid; local
326 u8 *pos = eid; local
345 u8 *pos = eid; local
433 u8 *pos; local
483 u8 *pos = eid; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dbase64.c32 unsigned char *out, *pos; local
48 pos = out;
51 *pos++ = base64_table[in[0] >> 2];
52 *pos++ = base64_table[((in[0] & 0x03) << 4) | (in[1] >> 4)];
53 *pos++ = base64_table[((in[1] & 0x0f) << 2) | (in[2] >> 6)];
54 *pos++ = base64_table[in[2] & 0x3f];
58 *pos++ = '\n';
64 *pos++ = base64_table[in[0] >> 2];
66 *pos++ = base64_table[(in[0] & 0x03) << 4];
67 *pos
100 unsigned char dtable[256], *out, *pos, block[4], tmp; local
[all...]
/external/chromium_org/third_party/protobuf/python/google/protobuf/internal/
H A Ddecoder.py36 Decode(buffer, pos, end, message, field_dict)
39 pos: The current position in the string.
53 Decoders are expected to raise an exception if they are called with pos > end.
112 def DecodeVarint(buffer, pos):
116 b = local_ord(buffer[pos])
118 pos += 1
121 return (result, pos)
132 def DecodeVarint(buffer, pos):
136 b = local_ord(buffer[pos])
138 pos
[all...]
/external/wpa_supplicant_8/hostapd/src/common/
H A Dieee802_11_common.c17 static int ieee802_11_parse_vendor_specific(const u8 *pos, size_t elen, argument
35 oui = WPA_GET_BE24(pos);
40 switch (pos[3]) {
44 elems->wpa_ie = pos;
56 switch (pos[4]) {
65 elems->wmm = pos;
69 elems->wmm_tspec = pos;
76 pos[4], (unsigned long) elen);
82 elems->wps_ie = pos;
89 pos[
165 const u8 *pos = start; local
317 const u8 *pos, *end; local
340 const u8 *end, *pos, *ie; local
425 const char *pos; local
[all...]
/external/wpa_supplicant_8/src/common/
H A Dieee802_11_common.c17 static int ieee802_11_parse_vendor_specific(const u8 *pos, size_t elen, argument
35 oui = WPA_GET_BE24(pos);
40 switch (pos[3]) {
44 elems->wpa_ie = pos;
56 switch (pos[4]) {
65 elems->wmm = pos;
69 elems->wmm_tspec = pos;
76 pos[4], (unsigned long) elen);
82 elems->wps_ie = pos;
89 pos[
165 const u8 *pos = start; local
317 const u8 *pos, *end; local
340 const u8 *end, *pos, *ie; local
425 const char *pos; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/common/
H A Dieee802_11_common.c17 static int ieee802_11_parse_vendor_specific(const u8 *pos, size_t elen, argument
35 oui = WPA_GET_BE24(pos);
40 switch (pos[3]) {
44 elems->wpa_ie = pos;
56 switch (pos[4]) {
65 elems->wmm = pos;
69 elems->wmm_tspec = pos;
76 pos[4], (unsigned long) elen);
82 elems->wps_ie = pos;
89 pos[
165 const u8 *pos = start; local
317 const u8 *pos, *end; local
340 const u8 *end, *pos, *ie; local
425 const char *pos; local
[all...]
/external/chromium_org/ui/gfx/
H A Dutf16_indexing.cc17 ptrdiff_t UTF16IndexToOffset(const base::string16& s, size_t base, size_t pos) { argument
24 DCHECK_LE(pos, s.length());
26 while (base < pos)
28 while (pos < base)
29 delta -= IsValidCodePointIndex(s, pos++) ? 1 : 0;
38 // the second. When stepping from pos to pos+1 we check s[pos:pos+1] == s[pos]
41 size_t pos = base; local
[all...]
/external/lldb/source/Breakpoint/
H A DBreakpointList.cpp55 bp_collection::iterator pos = GetBreakpointIDIterator(break_id); // Predicate local
56 if (pos != m_breakpoints.end())
58 BreakpointSP bp_sp (*pos);
59 m_breakpoints.erase(pos);
75 bp_collection::iterator pos, end = m_breakpoints.end(); local
76 for (pos = m_breakpoints.begin(); pos != end; ++pos)
77 (*pos)->SetEnabled (enabled);
89 bp_collection::iterator pos, en local
139 bp_collection::iterator pos = GetBreakpointIDIterator(break_id); local
151 bp_collection::const_iterator pos = GetBreakpointIDConstIterator(break_id); local
166 bp_collection::const_iterator pos; local
180 bp_collection::iterator pos; local
196 bp_collection::const_iterator pos; local
211 bp_collection::iterator pos; local
222 bp_collection::iterator pos; local
233 bp_collection::iterator pos; local
[all...]
/external/lldb/tools/debugserver/source/
H A DDNBBreakpoint.cpp80 iterator pos = m_breakpoints.find (addr); local
81 return &pos->second;
87 iterator pos = m_breakpoints.find(addr); local
88 if (pos != m_breakpoints.end())
90 m_breakpoints.erase(pos);
99 iterator pos = m_breakpoints.find(addr); local
100 if (pos != m_breakpoints.end())
101 return &pos->second;
109 const_iterator pos = m_breakpoints.find(addr); local
110 if (pos !
125 iterator pos = m_breakpoints.lower_bound(addr); local
159 const_iterator pos; local
168 iterator pos, end = m_breakpoints.end(); local
179 const_iterator pos = m_breakpoints.lower_bound(addr); local
217 iterator pos = m_breakpoints.begin(); local
[all...]
/external/llvm/tools/llvm-c-test/
H A Ddisassemble.c22 static void pprint(int pos, unsigned char *buf, int len, const char *disasm) { argument
24 printf("%04x: ", pos);
39 int pos; local
46 pos = 0;
47 while (pos < siz) {
48 size_t l = LLVMDisasmInstruction(D, buf + pos, siz - pos, 0, outline,
51 pprint(pos, buf + pos, 1, "\t???");
52 pos
[all...]
/external/wpa_supplicant_8/hostapd/src/wps/
H A Dwps_attr_parse.c21 u8 id, u8 len, const u8 *pos)
32 attr->version2 = pos;
35 attr->authorized_macs = pos;
44 attr->network_key_shareable = pos;
52 attr->request_to_enroll = pos;
60 attr->settings_delay_time = pos;
68 attr->registrar_configuration_methods = pos;
80 static int wps_parse_vendor_ext_wfa(struct wps_parse_attr *attr, const u8 *pos, argument
83 const u8 *end = pos + len;
86 while (pos
20 wps_set_vendor_ext_wfa_subelem(struct wps_parse_attr *attr, u8 id, u8 len, const u8 *pos) argument
100 wps_parse_vendor_ext(struct wps_parse_attr *attr, const u8 *pos, u16 len) argument
141 wps_set_attr(struct wps_parse_attr *attr, u16 type, const u8 *pos, u16 len) argument
552 const u8 *pos, *end; local
[all...]
/external/wpa_supplicant_8/src/wps/
H A Dwps_attr_parse.c21 u8 id, u8 len, const u8 *pos)
32 attr->version2 = pos;
35 attr->authorized_macs = pos;
44 attr->network_key_shareable = pos;
52 attr->request_to_enroll = pos;
60 attr->settings_delay_time = pos;
68 attr->registrar_configuration_methods = pos;
80 static int wps_parse_vendor_ext_wfa(struct wps_parse_attr *attr, const u8 *pos, argument
83 const u8 *end = pos + len;
86 while (pos
20 wps_set_vendor_ext_wfa_subelem(struct wps_parse_attr *attr, u8 id, u8 len, const u8 *pos) argument
100 wps_parse_vendor_ext(struct wps_parse_attr *attr, const u8 *pos, u16 len) argument
141 wps_set_attr(struct wps_parse_attr *attr, u16 type, const u8 *pos, u16 len) argument
552 const u8 *pos, *end; local
[all...]

Completed in 1359 milliseconds

1234567891011>>