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

1234567891011>>

/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/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 |
221 u8 *pos = eid; local
271 u8 *pos = eid; local
288 u8 *pos = eid; local
328 u8 *pos = eid; local
347 u8 *pos = eid; local
435 u8 *pos; local
485 u8 *pos = eid; 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 |
221 u8 *pos = eid; local
271 u8 *pos = eid; local
288 u8 *pos = eid; local
328 u8 *pos = eid; local
347 u8 *pos = eid; local
435 u8 *pos; local
485 u8 *pos = eid; 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 |
221 u8 *pos = eid; local
271 u8 *pos = eid; local
288 u8 *pos = eid; local
328 u8 *pos = eid; local
347 u8 *pos = eid; local
435 u8 *pos; local
485 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) & 0x3f];
52 *pos++ = base64_table[(((in[0] & 0x03) << 4) |
54 *pos++ = base64_table[(((in[1] & 0x0f) << 2) |
56 *pos++ = base64_table[in[2] & 0x3f];
60 *pos++ = '\n';
66 *pos++ = base64_table[(in[0] >> 2) & 0x3f];
68 *pos++ = base64_table[((in[0] & 0x03) << 4) & 0x3f];
69 *pos
102 unsigned char dtable[256], *out, *pos, block[4], tmp; 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) & 0x3f];
52 *pos++ = base64_table[(((in[0] & 0x03) << 4) |
54 *pos++ = base64_table[(((in[1] & 0x0f) << 2) |
56 *pos++ = base64_table[in[2] & 0x3f];
60 *pos++ = '\n';
66 *pos++ = base64_table[(in[0] >> 2) & 0x3f];
68 *pos++ = base64_table[((in[0] & 0x03) << 4) & 0x3f];
69 *pos
102 unsigned char dtable[256], *out, *pos, block[4], tmp; 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) & 0x3f];
52 *pos++ = base64_table[(((in[0] & 0x03) << 4) |
54 *pos++ = base64_table[(((in[1] & 0x0f) << 2) |
56 *pos++ = base64_table[in[2] & 0x3f];
60 *pos++ = '\n';
66 *pos++ = base64_table[(in[0] >> 2) & 0x3f];
68 *pos++ = base64_table[((in[0] & 0x03) << 4) & 0x3f];
69 *pos
102 unsigned char dtable[256], *out, *pos, block[4], tmp; local
[all...]
/external/nanopb-c/generator/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/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...]
H A DDNBRegisterInfo.cpp41 #define PRINT_COMMA_SEPARATOR do { if (pos < end) { if (i > 0) { strncpy(pos, ", ", end - pos); pos += 2; } } } while (0)
50 char *pos; local
64 pos = str + 2;
67 if (pos < end)
68 pos += snprintf(pos, end - pos, "
[all...]
/external/llvm/tools/llvm-c-test/
H A Ddisassemble.c23 static void pprint(int pos, unsigned char *buf, int len, const char *disasm) { argument
25 printf("%04x: ", pos);
42 int pos; local
49 pos = 0;
50 while (pos < siz) {
51 size_t l = LLVMDisasmInstruction(D, buf + pos, siz - pos, 0, outline,
54 pprint(pos, buf + pos, 1, "\t???");
55 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
587 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
587 const u8 *pos, *end; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/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
587 const u8 *pos, *end; local
[all...]
/external/linux-tools-perf/src/include/linux/
H A Dlist.h377 * @pos: the &struct list_head to use as a loop cursor.
380 #define list_for_each(pos, head) \
381 for (pos = (head)->next; pos != (head); pos = pos->next)
385 * @pos: the &struct list_head to use as a loop cursor.
388 #define list_for_each_prev(pos, head) \
389 for (pos = (head)->prev; pos !
[all...]
/external/wpa_supplicant_8/hostapd/src/tls/
H A Dtlsv1_client_write.c47 u8 *hello, *end, *pos, *hs_length, *hs_start, *rhdr; local
71 pos = rhdr + TLS_RECORD_HEADER_LEN;
76 hs_start = pos;
78 *pos++ = TLS_HANDSHAKE_TYPE_CLIENT_HELLO;
80 hs_length = pos;
81 pos += 3;
84 WPA_PUT_BE16(pos, TLS_VERSION);
85 pos += 2;
87 os_memcpy(pos, conn->client_random, TLS_RANDOM_LEN);
88 pos
132 u8 *pos, *rhdr, *hs_start, *hs_length, *cert_start; local
208 tlsv1_key_x_dh(struct tlsv1_client *conn, u8 **pos, u8 *end) argument
324 tlsv1_key_x_rsa(struct tlsv1_client *conn, u8 **pos, u8 *end) argument
374 u8 *pos, *rhdr, *hs_start, *hs_length; local
432 u8 *pos, *rhdr, *hs_start, *hs_length, *signed_start; local
637 u8 *pos, *hs_start; local
728 u8 *msg, *end, *pos; local
771 u8 *msg, *end, *pos; local
827 u8 *alert, *pos, *length; local
[all...]
/external/wpa_supplicant_8/src/tls/
H A Dtlsv1_client_write.c47 u8 *hello, *end, *pos, *hs_length, *hs_start, *rhdr; local
71 pos = rhdr + TLS_RECORD_HEADER_LEN;
76 hs_start = pos;
78 *pos++ = TLS_HANDSHAKE_TYPE_CLIENT_HELLO;
80 hs_length = pos;
81 pos += 3;
84 WPA_PUT_BE16(pos, TLS_VERSION);
85 pos += 2;
87 os_memcpy(pos, conn->client_random, TLS_RANDOM_LEN);
88 pos
132 u8 *pos, *rhdr, *hs_start, *hs_length, *cert_start; local
208 tlsv1_key_x_dh(struct tlsv1_client *conn, u8 **pos, u8 *end) argument
324 tlsv1_key_x_rsa(struct tlsv1_client *conn, u8 **pos, u8 *end) argument
374 u8 *pos, *rhdr, *hs_start, *hs_length; local
432 u8 *pos, *rhdr, *hs_start, *hs_length, *signed_start; local
637 u8 *pos, *hs_start; local
728 u8 *msg, *end, *pos; local
771 u8 *msg, *end, *pos; local
827 u8 *alert, *pos, *length; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/tls/
H A Dtlsv1_client_write.c47 u8 *hello, *end, *pos, *hs_length, *hs_start, *rhdr; local
71 pos = rhdr + TLS_RECORD_HEADER_LEN;
76 hs_start = pos;
78 *pos++ = TLS_HANDSHAKE_TYPE_CLIENT_HELLO;
80 hs_length = pos;
81 pos += 3;
84 WPA_PUT_BE16(pos, TLS_VERSION);
85 pos += 2;
87 os_memcpy(pos, conn->client_random, TLS_RANDOM_LEN);
88 pos
132 u8 *pos, *rhdr, *hs_start, *hs_length, *cert_start; local
208 tlsv1_key_x_dh(struct tlsv1_client *conn, u8 **pos, u8 *end) argument
324 tlsv1_key_x_rsa(struct tlsv1_client *conn, u8 **pos, u8 *end) argument
374 u8 *pos, *rhdr, *hs_start, *hs_length; local
432 u8 *pos, *rhdr, *hs_start, *hs_length, *signed_start; local
637 u8 *pos, *hs_start; local
728 u8 *msg, *end, *pos; local
771 u8 *msg, *end, *pos; local
827 u8 *alert, *pos, *length; local
[all...]
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_StringReader.java28 private int pos = 0; field in class:Support_StringReader
79 markpos = pos;
114 if (pos != count) {
115 return str.charAt(pos++);
142 if (pos == this.count) {
145 int end = pos + count > this.count ? this.count : pos
147 str.getChars(pos, end, buf, offset);
148 int read = end - pos;
149 pos
[all...]
/external/icu/icu4c/source/common/
H A Dchariter.cpp22 : textLength(0), pos(0), begin(0), end(0) {
26 : textLength(length), pos(0), begin(0), end(length) {
33 : textLength(length), pos(position), begin(0), end(length) {
37 if(pos < 0) {
38 pos = 0;
39 } else if(pos > end) {
40 pos = end;
45 : textLength(length), pos(position), begin(textBegin), end(textEnd) {
59 if(pos < begin) {
60 pos
[all...]
H A Dutil_props.cpp19 * Parse an integer at pos, either of the form \d+ or of the form
22 * @param pos INPUT-OUTPUT parameter. On input, the first
26 int32_t ICU_Utility::parseInteger(const UnicodeString& rule, int32_t& pos, int32_t limit) { argument
29 int32_t p = pos;
62 pos = p;
68 * Parse a pattern string starting at offset pos. Keywords are
86 int32_t ICU_Utility::parsePattern(const UnicodeString& rule, int32_t pos, int32_t limit, argument
96 if (pos >= limit) {
99 c = rule.charAt(pos++);
105 pos
143 parseUnicodeIdentifier(const UnicodeString& str, int32_t& pos) argument
185 parseNumber(const UnicodeString& text, int32_t& pos, int8_t radix) argument
[all...]
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DUniqueDWARFASTType.cpp31 collection::const_iterator pos, end = m_collection.end(); local
32 for (pos = m_collection.begin(); pos != end; ++pos)
35 if (pos->m_die->Tag() == die->Tag())
38 if (pos->m_byte_size < 0 || byte_size < 0 || pos->m_byte_size == byte_size)
41 if (pos->m_declaration == decl)
46 const DWARFDebugInfoEntry *parend_pos_die = pos->m_die->GetParent();
68 const char *parent_pos_die_name = parend_pos_die->GetName(pos
[all...]
/external/icu/icu4c/source/common/unicode/
H A Ducharstrie.h111 const UChar *pos; member in class:UCharsTrie::State
124 state.pos=pos_;
141 pos_=state.pos;
221 const UChar *pos=pos_; local
222 int32_t leadUnit=*pos++;
225 readValue(pos, leadUnit&0x7fff) : readNodeValue(pos, leadUnit);
238 const UChar *pos=pos_; local
240 return pos!=NULL && findUniqueValue(pos
382 readValue(const UChar *pos, int32_t leadUnit) argument
393 skipValue(const UChar *pos, int32_t leadUnit) argument
403 skipValue(const UChar *pos) argument
408 readNodeValue(const UChar *pos, int32_t leadUnit) argument
420 skipNodeValue(const UChar *pos, int32_t leadUnit) argument
432 jumpByDelta(const UChar *pos) argument
445 skipDelta(const UChar *pos) argument
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/asm/util/
H A DCheckMethodAdapter.java1011 int pos = 0;
1013 pos = checkFormalTypeParameters(signature, pos);
1015 pos = checkClassTypeSignature(signature, pos);
1016 while (getChar(signature, pos) == 'L') {
1017 pos = checkClassTypeSignature(signature, pos);
1019 if (pos != signature.length()) {
1021 + pos);
1083 checkFormalTypeParameters(final String signature, int pos) argument
1103 checkFormalTypeParameter(final String signature, int pos) argument
1126 checkFieldTypeSignature(final String signature, int pos) argument
1151 checkClassTypeSignature(final String signature, int pos) argument
1181 checkTypeArguments(final String signature, int pos) argument
1200 checkTypeArgument(final String signature, int pos) argument
1220 checkTypeVariableSignature( final String signature, int pos) argument
1239 checkTypeSignature(final String signature, int pos) argument
1265 checkIdentifier(final String signature, int pos) argument
1284 checkChar(final char c, final String signature, int pos) argument
1301 getChar(final String signature, int pos) argument
[all...]

Completed in 595 milliseconds

1234567891011>>