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

1234567891011>>

/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_anon_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
84 markpos = pos;
121 if (pos != count) {
122 return str.charAt(pos++);
154 if (pos == this.count) {
157 int end = pos + count > this.count ? this.count : pos
159 str.getChars(pos, end, buf, offset);
160 int read = end - pos;
161 pos
[all...]
/external/icu4c/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.cpp18 * Parse an integer at pos, either of the form \d+ or of the form
21 * @param pos INPUT-OUTPUT parameter. On input, the first
25 int32_t ICU_Utility::parseInteger(const UnicodeString& rule, int32_t& pos, int32_t limit) { argument
28 int32_t p = pos;
61 pos = p;
67 * Parse a pattern string starting at offset pos. Keywords are
85 int32_t ICU_Utility::parsePattern(const UnicodeString& rule, int32_t pos, int32_t limit, argument
95 if (pos >= limit) {
98 c = rule.charAt(pos++);
104 pos
142 parseUnicodeIdentifier(const UnicodeString& str, int32_t& pos) argument
184 parseNumber(const UnicodeString& text, int32_t& pos, int8_t radix) argument
[all...]
/external/wpa_supplicant_6/wpa_supplicant/src/tls/
H A Dasn1_test.c43 const u8 *pos, *prev, *end; local
56 pos = buf;
59 while (pos < end) {
60 if (asn1_get_next(pos, end - pos, &hdr) < 0)
63 prev = pos;
64 pos = hdr.payload;
75 if (asn1_parse(pos, hdr.length, level + 1) < 0)
77 pos += hdr.length;
99 tmp = *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;
169 u8 *pos = eid; local
179 *pos++ = WLAN_EID_EXT_CAPAB;
180 *pos
207 u8 *pos = eid; local
247 u8 *pos = eid; local
266 u8 *pos = eid; local
354 u8 *pos; local
404 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;
169 u8 *pos = eid; local
179 *pos++ = WLAN_EID_EXT_CAPAB;
180 *pos
207 u8 *pos = eid; local
247 u8 *pos = eid; local
266 u8 *pos = eid; local
354 u8 *pos; local
404 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;
169 u8 *pos = eid; local
179 *pos++ = WLAN_EID_EXT_CAPAB;
180 *pos
207 u8 *pos = eid; local
247 u8 *pos = eid; local
266 u8 *pos = eid; local
354 u8 *pos; local
404 u8 *pos = eid; local
[all...]
/external/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/v8/src/
H A Dcircular-queue-inl.h46 SamplingCircularQueue::Cell** pos) {
47 if (**pos == kEnd) *pos = buffer_;
45 WrapPositionIfNeeded( SamplingCircularQueue::Cell** pos) argument
/external/icu4c/common/unicode/
H A Ducharstrie.h111 const UChar *pos; member in class:UCharsTrie::State
124 state.pos=pos_;
141 pos_=state.pos;
233 const UChar *pos=pos_; local
234 int32_t leadUnit=*pos++;
237 readValue(pos, leadUnit&0x7fff) : readNodeValue(pos, leadUnit);
250 const UChar *pos=pos_; local
252 return pos!=NULL && findUniqueValue(pos
394 readValue(const UChar *pos, int32_t leadUnit) argument
405 skipValue(const UChar *pos, int32_t leadUnit) argument
415 skipValue(const UChar *pos) argument
420 readNodeValue(const UChar *pos, int32_t leadUnit) argument
432 skipNodeValue(const UChar *pos, int32_t leadUnit) argument
444 jumpByDelta(const UChar *pos) argument
457 skipDelta(const UChar *pos) argument
[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...]
H A DTransformAfter.java30 protected int match2(int pos, CodeIterator iterator) throws BadBytecode { argument
31 iterator.move(pos);
37 pos = iterator.next();
39 iterator.writeByte(iterator.byteAt(pos), p);
40 iterator.write16bit(iterator.u16bitAt(pos + 1), p + 1);
41 iterator.writeByte(INVOKESTATIC, pos);
42 iterator.write16bit(newIndex, pos + 1);
/external/wpa_supplicant_6/wpa_supplicant/src/utils/
H A Duuid.c24 const char *pos; local
27 pos = str;
30 if (hexstr2bin(pos, opos, 4))
32 pos += 8;
35 if (*pos++ != '-' || hexstr2bin(pos, opos, 2))
37 pos += 4;
40 if (*pos++ != '-' || hexstr2bin(pos, opos, 2))
42 pos
[all...]
/external/quake/quake/src/QW/client/
H A Dcl_tent.c167 vec3_t pos; local
177 pos[0] = MSG_ReadCoord ();
178 pos[1] = MSG_ReadCoord ();
179 pos[2] = MSG_ReadCoord ();
180 R_RunParticleEffect (pos, vec3_origin, 20, 30);
181 S_StartSound (-1, 0, cl_sfx_wizhit, pos, 1, 1);
185 pos[0] = MSG_ReadCoord ();
186 pos[1] = MSG_ReadCoord ();
187 pos[2] = MSG_ReadCoord ();
188 R_RunParticleEffect (pos, vec3_origi
[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/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/icu4c/test/intltest/
H A Dtokiter.cpp20 pos = lastpos = -1;
38 pos = 0;
40 lastpos = pos;
66 ICU_Utility::skipWhitespace(line, pos, TRUE);
67 if (pos == line.length()) {
70 UChar c = line.charAt(pos++);
83 while (pos < line.length()) {
84 c = line.charAt(pos); // 16-bit ok
86 UChar32 c32 = line.unescapeAt(pos);
94 ++pos;
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/functions/escape/
H A DSimpleEscapingFunction.java87 int pos = 0;
88 int start = pos;
89 while (pos < len) {
92 final char chr = in.charAt(pos);
97 if (pos > start) {
98 out.append(in, start, pos);
101 pos += 1;
102 start = pos;
105 pos += 1;
107 if (pos > star
[all...]
/external/wpa_supplicant_8/wpa_supplicant/
H A Dctrl_iface.c126 char *pos; local
130 pos = val;
131 while (pos) {
132 if (*pos == '\0')
134 if (hwaddr_aton(pos, addr)) {
147 pos = os_strchr(pos, ' ');
148 if (pos)
149 pos++;
255 char *pos; local
577 char *pos; local
687 wpa_supplicant_ctrl_iface_wps_nfc_tag_read( struct wpa_supplicant *wpa_s, char *pos) argument
773 char *pos; local
830 char *uuid = cmd, *pin, *pos; local
978 char *pos, *id_pos; local
1016 char *pos, *end, tmp[30]; local
1190 char *pos; local
1227 char *pos, *end; local
1320 char *pos, *end, *stamp; local
1370 char *pos, *end; local
1422 wpa_supplicant_cipher_txt(char *pos, char *end, int cipher) argument
1476 wpa_supplicant_ie_txt(char *pos, char *end, const char *proto, const u8 *ie, size_t ie_len) argument
1573 wpa_supplicant_wps_ie_txt_buf(struct wpa_supplicant *wpa_s, char *pos, char *end, struct wpabuf *wps_ie) argument
1602 wpa_supplicant_wps_ie_txt(struct wpa_supplicant *wpa_s, char *pos, char *end, const struct wpa_bss *bss) argument
1621 char *pos, *end; local
1697 char *pos, *end; local
2023 char *pos, *end; local
2176 char *pos, *end; local
2232 char *pos, *end; local
2297 char *pos, *end; local
2350 char *pos, *end; local
2392 char *pos, *end; local
2441 char *pos, *end, *hmode; local
2544 anqp_add_hex(char *pos, char *end, const char *title, struct wpabuf *data) argument
2583 char *pos, *end; local
3070 char *pos; local
3102 char *pos, *pos2; local
3221 char *pos; local
3264 char *pos; local
3335 char *pos, *pos2; local
3390 char *pos; local
3439 char *pos; local
3456 char *pos; local
3499 char *pos; local
3516 char *pos; local
3547 char *pos; local
3586 char *pos; local
3648 char *pos; local
3679 char *pos, *end; local
3757 const char *pos, *pos2, *pos3; local
3836 char *pos; local
3926 char *pos; local
3972 char *pos, *pos2; local
4004 char *pos; local
4048 char *pos; local
4079 char *pos, *end; local
4144 char *pos; local
4197 char *pos; local
4929 char *pos; local
5036 char *pos, *end; local
5077 char *pos, *end; local
[all...]
/external/netcat/
H A Datomicio.c44 size_t pos = 0; local
50 while (n > pos) {
51 res = (f) (fd, s + pos, n - pos);
63 return pos;
65 pos += (size_t)res;
68 return (pos);
/external/wpa_supplicant_6/wpa_supplicant/
H A Dwpa_passphrase.c25 char *ssid, *passphrase, buf[64], *pos; local
45 pos = buf;
46 while (*pos != '\0') {
47 if (*pos == '\r' || *pos == '\n') {
48 *pos = '\0';
51 pos++;
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dsha1-prf.c34 size_t pos, plen; local
47 pos = 0;
48 while (pos < buf_len) {
49 plen = buf_len - pos;
52 &buf[pos]))
54 pos += SHA1_MAC_LEN;
59 os_memcpy(&buf[pos], hash, plen);
H A Dsha256-prf.c33 size_t pos, plen; local
49 pos = 0;
50 while (pos < buf_len) {
51 plen = buf_len - pos;
55 &buf[pos]);
56 pos += SHA256_MAC_LEN;
59 os_memcpy(&buf[pos], hash, plen);

Completed in 533 milliseconds

1234567891011>>