Searched refs:pos (Results 76 - 100 of 3783) sorted by relevance

1234567891011>>

/external/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.
105 def DecodeVarint(buffer, pos):
109 b = local_ord(buffer[pos])
111 pos += 1
114 return (result, pos)
125 def DecodeVarint(buffer, pos):
129 b = local_ord(buffer[pos])
131 pos
[all...]
/external/linux-tools-perf/perf-3.12.0/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
643 u8 *pos, *hs_start; local
734 u8 *msg, *end, *pos; local
777 u8 *msg, *end, *pos; local
833 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
643 u8 *pos, *hs_start; local
734 u8 *msg, *end, *pos; local
777 u8 *msg, *end, *pos; local
833 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
643 u8 *pos, *hs_start; local
734 u8 *msg, *end, *pos; local
777 u8 *msg, *end, *pos; local
833 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/chromium_org/third_party/icu/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.cpp17 * Parse an integer at pos, either of the form \d+ or of the form
20 * @param pos INPUT-OUTPUT parameter. On input, the first
24 int32_t ICU_Utility::parseInteger(const UnicodeString& rule, int32_t& pos, int32_t limit) { argument
27 int32_t p = pos;
60 pos = p;
66 * Parse a pattern string starting at offset pos. Keywords are
84 int32_t ICU_Utility::parsePattern(const UnicodeString& rule, int32_t pos, int32_t limit, argument
94 if (pos >= limit) {
97 c = rule.charAt(pos++);
103 pos
142 parseUnicodeIdentifier(const UnicodeString& str, int32_t& pos) argument
185 parseNumber(const UnicodeString& text, int32_t& pos, int8_t radix) argument
[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/chromium_org/third_party/skia/third_party/harfbuzz/src/
H A Dharfbuzz-stream.c64 LOG(( "_hb_stream_pos() -> %ld\n", stream->pos ));
65 return stream->pos;
71 HB_UInt pos )
75 stream->pos = pos;
76 if (pos > stream->size)
79 LOG(( "_hb_stream_seek(%ld) -> 0x%04X\n", pos, error ));
91 if (HB_UNLIKELY (stream->pos + count > stream->size ||
92 stream->pos + count < stream->pos))
[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...]
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DMoveSelectionCommand.cpp44 Position pos = m_position; local
45 if (pos.isNull())
50 if (pos.anchorType() == Position::PositionIsOffsetInAnchor && selectionEnd.anchorType() == Position::PositionIsOffsetInAnchor
51 && selectionEnd.containerNode() == pos.containerNode() && selectionEnd.offsetInContainerNode() < pos.offsetInContainerNode()) {
52 pos.moveToOffset(pos.offsetInContainerNode() - selectionEnd.offsetInContainerNode());
55 if (selectionStart.anchorType() == Position::PositionIsOffsetInAnchor && selectionStart.containerNode() == pos.containerNode())
56 pos.moveToOffset(pos
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/pcm16b/
H A Dpcm16b.c50 int16_t pos; local
53 for (pos=0;pos<len;pos++) {
54 short1=HIGHEND & speech16b[pos];
55 short2=LOWEND & speech16b[pos];
57 speech8b[pos*2]=(unsigned char) short1;
58 speech8b[pos*2+1]=(unsigned char) short2;
96 int16_t pos; local
98 for (pos
[all...]
/external/javassist/src/main/javassist/convert/
H A DTransformWriteField.java29 public int transform(CtClass tclazz, int pos, CodeIterator iterator, argument
32 int c = iterator.byteAt(pos);
34 int index = iterator.u16bitAt(pos + 1);
40 iterator.move(pos);
44 pos = iterator.insertGap(3);
45 iterator.writeByte(ACONST_NULL, pos);
46 iterator.writeByte(DUP_X2, pos + 1);
47 iterator.writeByte(POP, pos + 2);
52 pos = iterator.insertGap(2);
53 iterator.writeByte(ACONST_NULL, pos);
[all...]
/external/chromium_org/chrome/common/
H A Dpref_names_util.cc20 size_t pos = pref_path.find('.', start); local
21 if (pos == std::string::npos || pos + 1 == pref_path.length())
24 *generic_family = pref_path.substr(start, pos - start);
26 *script = pref_path.substr(pos + 1);
/external/chromium_org/third_party/re2/util/
H A Dstringpiece.cc36 int StringPiece::copy(char* buf, size_type n, size_type pos) const {
37 int ret = min(length_ - pos, n);
38 memcpy(buf, ptr_ + pos, ret);
42 int StringPiece::find(const StringPiece& s, size_type pos) const {
43 if (length_ < 0 || pos > static_cast<size_type>(length_))
46 const char* result = std::search(ptr_ + pos, ptr_ + length_,
52 int StringPiece::find(char c, size_type pos) const {
53 if (length_ <= 0 || pos >= static_cast<size_type>(length_)) {
56 const char* result = std::find(ptr_ + pos, ptr_ + length_, c);
60 int StringPiece::rfind(const StringPiece& s, size_type pos) cons
81 substr(size_type pos, size_type n) const argument
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DToken.java10 private int pos; field in class:Token
34 return this.pos;
37 public void setPos(@SuppressWarnings("hiding") int pos) argument
39 this.pos = pos;
/external/regex-re2/util/
H A Dstringpiece.cc36 int StringPiece::copy(char* buf, size_type n, size_type pos) const {
37 int ret = min(length_ - pos, n);
38 memcpy(buf, ptr_ + pos, ret);
42 int StringPiece::find(const StringPiece& s, size_type pos) const {
43 if (length_ < 0 || pos > static_cast<size_type>(length_))
46 const char* result = std::search(ptr_ + pos, ptr_ + length_,
52 int StringPiece::find(char c, size_type pos) const {
53 if (length_ <= 0 || pos >= static_cast<size_type>(length_)) {
56 const char* result = std::find(ptr_ + pos, ptr_ + length_, c);
60 int StringPiece::rfind(const StringPiece& s, size_type pos) cons
81 substr(size_type pos, size_type n) const argument
[all...]
/external/lldb/source/Breakpoint/
H A DBreakpointLocationList.cpp98 collection::iterator pos, end = m_locations.end(); local
100 for (pos = m_locations.begin(); pos != end; ++pos)
102 BreakpointLocationSP break_loc = (*pos);
136 addr_map::const_iterator pos = m_address_to_location.find (so_addr); local
137 if (pos != m_address_to_location.end())
138 bp_loc_sp = pos->second;
152 collection::const_iterator pos, end = m_locations.end(); local
153 for (pos
185 collection::iterator pos, end = m_locations.end(); local
194 collection::iterator pos, end = m_locations.end(); local
208 collection::const_iterator pos, end = m_locations.end(); local
219 collection::const_iterator pos, end = m_locations.end(); local
232 collection::iterator pos, end = m_locations.end(); local
276 collection::iterator pos, end = m_locations.end(); local
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/lexer/
H A DLexer.java16 private int pos; field in class:Lexer
60 int start_pos = this.pos;
89 this.pos = 0;
94 this.pos = 0;
98 this.pos++;
148 accept_pos = this.pos;
165 this.pos = accept_pos;
180 this.pos = accept_pos;
194 this.pos = accept_pos;
208 this.pos
991 new0(@uppressWarnings�) String text, @SuppressWarnings(�) int line, @SuppressWarnings(�) int pos) argument
992 new1(@uppressWarnings�) String text, @SuppressWarnings(�) int line, @SuppressWarnings(�) int pos) argument
993 new2(@uppressWarnings�) int line, @SuppressWarnings(�) int pos) argument
994 new3(@uppressWarnings�) int line, @SuppressWarnings(�) int pos) argument
995 new4(@uppressWarnings�) int line, @SuppressWarnings(�) int pos) argument
996 new5(@uppressWarnings�) int line, @SuppressWarnings(�) int pos) argument
997 new6(@uppressWarnings�) int line, @SuppressWarnings(�) int pos) argument
998 new7(@uppressWarnings�) int line, @SuppressWarnings(�) int pos) argument
999 new8(@uppressWarnings�) String text, @SuppressWarnings(�) int line, @SuppressWarnings(�) int pos) argument
1000 new9(@uppressWarnings�) int line, @SuppressWarnings(�) int pos) argument
1001 new10(@uppressWarnings�) int line, @SuppressWarnings(�) int pos) argument
1002 new11(@uppressWarnings�) int line, @SuppressWarnings(�) int pos) argument
1003 new12(@uppressWarnings�) int line, @SuppressWarnings(�) int pos) argument
1004 new13(@uppressWarnings�) int line, @SuppressWarnings(�) int pos) argument
1005 new14(@uppressWarnings�) int line, @SuppressWarnings(�) int pos) argument
1006 new15(@uppressWarnings�) int line, @SuppressWarnings(�) int pos) argument
1007 new16(@uppressWarnings�) int line, @SuppressWarnings(�) int pos) argument
1008 new17(@uppressWarnings�) int line, @SuppressWarnings(�) int pos) argument
1009 new18(@uppressWarnings�) int line, @SuppressWarnings(�) int pos) argument
1010 new19(@uppressWarnings�) int line, @SuppressWarnings(�) int pos) argument
1011 new20(@uppressWarnings�) int line, @SuppressWarnings(�) int pos) argument
1012 new21(@uppressWarnings�) int line, @SuppressWarnings(�) int pos) argument
1013 new22(@uppressWarnings�) int line, @SuppressWarnings(�) int pos) argument
1014 new23(@uppressWarnings�) int line, @SuppressWarnings(�) int pos) argument
1015 new24(@uppressWarnings�) int line, @SuppressWarnings(�) int pos) argument
1016 new25(@uppressWarnings�) int line, @SuppressWarnings(�) int pos) argument
1017 new26(@uppressWarnings�) int line, @SuppressWarnings(�) int pos) argument
1018 new27(@uppressWarnings�) int line, @SuppressWarnings(�) int pos) argument
1019 new28(@uppressWarnings�) int line, @SuppressWarnings(�) int pos) argument
1020 new29(@uppressWarnings�) int line, @SuppressWarnings(�) int pos) argument
1021 new30(@uppressWarnings�) int line, @SuppressWarnings(�) int pos) argument
1022 new31(@uppressWarnings�) int line, @SuppressWarnings(�) int pos) argument
1023 new32(@uppressWarnings�) int line, @SuppressWarnings(�) int pos) argument
1024 new33(@uppressWarnings�) int line, @SuppressWarnings(�) int pos) argument
1025 new34(@uppressWarnings�) String text, @SuppressWarnings(�) int line, @SuppressWarnings(�) int pos) argument
1026 new35(@uppressWarnings�) int line, @SuppressWarnings(�) int pos) argument
1027 new36(@uppressWarnings�) int line, @SuppressWarnings(�) int pos) argument
1028 new37(@uppressWarnings�) int line, @SuppressWarnings(�) int pos) argument
1029 new38(@uppressWarnings�) int line, @SuppressWarnings(�) int pos) argument
1030 new39(@uppressWarnings�) int line, @SuppressWarnings(�) int pos) argument
1031 new40(@uppressWarnings�) int line, @SuppressWarnings(�) int pos) argument
1032 new41(@uppressWarnings�) int line, @SuppressWarnings(�) int pos) argument
1033 new42(@uppressWarnings�) int line, @SuppressWarnings(�) int pos) argument
1034 new43(@uppressWarnings�) int line, @SuppressWarnings(�) int pos) argument
1035 new44(@uppressWarnings�) int line, @SuppressWarnings(�) int pos) argument
1036 new45(@uppressWarnings�) int line, @SuppressWarnings(�) int pos) argument
1037 new46(@uppressWarnings�) int line, @SuppressWarnings(�) int pos) argument
1038 new47(@uppressWarnings�) String text, @SuppressWarnings(�) int line, @SuppressWarnings(�) int pos) argument
1039 new48(@uppressWarnings�) String text, @SuppressWarnings(�) int line, @SuppressWarnings(�) int pos) argument
1040 new49(@uppressWarnings�) String text, @SuppressWarnings(�) int line, @SuppressWarnings(�) int pos) argument
1041 new50(@uppressWarnings�) String text, @SuppressWarnings(�) int line, @SuppressWarnings(�) int pos) argument
1042 new51(@uppressWarnings�) int line, @SuppressWarnings(�) int pos) argument
1043 new52(@uppressWarnings�) String text, @SuppressWarnings(�) int line, @SuppressWarnings(�) int pos) argument
1044 new53(@uppressWarnings�) int line, @SuppressWarnings(�) int pos) argument
1045 new54(@uppressWarnings�) String text, @SuppressWarnings(�) int line, @SuppressWarnings(�) int pos) argument
1046 new55(@uppressWarnings�) String text, @SuppressWarnings(�) int line, @SuppressWarnings(�) int pos) argument
1047 new56(@uppressWarnings�) String text, @SuppressWarnings(�) int line, @SuppressWarnings(�) int pos) argument
[all...]
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dwpa_auth_ie.c31 u8 *pos, *count; local
38 pos = (u8 *) (hdr + 1);
46 RSN_SELECTOR_PUT(pos, suite);
47 pos += WPA_SELECTOR_LEN;
49 count = pos;
50 pos += 2;
52 num_suites = wpa_cipher_put_suites(pos, conf->wpa_pairwise);
58 pos += num_suites * WPA_SELECTOR_LEN;
62 count = pos;
63 pos
96 u8 *pos, *count; local
367 u8 *pos, buf[128]; local
410 wpa_add_kde(u8 *pos, u32 kde, const u8 *data, size_t data_len, const u8 *data2, size_t data2_len) argument
737 wpa_parse_generic(const u8 *pos, const u8 *end, struct wpa_eapol_ie_parse *ie) argument
850 const u8 *pos, *end; local
[all...]
/external/wpa_supplicant_8/src/ap/
H A Dwpa_auth_ie.c31 u8 *pos, *count; local
38 pos = (u8 *) (hdr + 1);
46 RSN_SELECTOR_PUT(pos, suite);
47 pos += WPA_SELECTOR_LEN;
49 count = pos;
50 pos += 2;
52 num_suites = wpa_cipher_put_suites(pos, conf->wpa_pairwise);
58 pos += num_suites * WPA_SELECTOR_LEN;
62 count = pos;
63 pos
96 u8 *pos, *count; local
367 u8 *pos, buf[128]; local
410 wpa_add_kde(u8 *pos, u32 kde, const u8 *data, size_t data_len, const u8 *data2, size_t data2_len) argument
737 wpa_parse_generic(const u8 *pos, const u8 *end, struct wpa_eapol_ie_parse *ie) argument
850 const u8 *pos, *end; local
[all...]

Completed in 547 milliseconds

1234567891011>>