Searched refs:pos (Results 151 - 175 of 2848) sorted by relevance

1234567891011>>

/external/zopfli/src/zopfli/
H A Dcache.h53 size_t pos, size_t length,
58 size_t pos, size_t length,
62 size_t pos, size_t length);
/external/wpa_supplicant_8/wpa_supplicant/
H A Dctrl_iface.c62 char *pos; local
66 pos = val;
67 while (pos) {
68 if (*pos == '\0')
70 if (hwaddr_aton(pos, addr)) {
83 pos = os_strchr(pos, ' ');
84 if (pos)
85 pos++;
99 char *pos; local
222 wpas_ctrl_set_blob(struct wpa_supplicant *wpa_s, char *pos) argument
264 char *pos; local
406 char *pos; local
689 char *pos, *end; local
952 char *pos; local
996 char *pos; local
1059 char *pos; local
1115 wpa_supplicant_ctrl_iface_wps_nfc_tag_read( struct wpa_supplicant *wpa_s, char *pos) argument
1203 char *pos; local
1286 char *pos, *pos2; local
1334 char *pos, *role, *type, *pos2; local
1504 char *pos; local
1561 char *uuid = cmd, *pin, *pos; local
1709 char *pos, *id_pos; local
1747 char *pos, *end, tmp[30]; local
2053 char *pos; local
2090 char *pos, *end; local
2180 char *pos, *end, *stamp; local
2226 char *pos, *end, *prev; local
2290 wpa_supplicant_cipher_txt(char *pos, char *end, int cipher) argument
2305 wpa_supplicant_ie_txt(char *pos, char *end, const char *proto, const u8 *ie, size_t ie_len) argument
2441 wpa_supplicant_wps_ie_txt_buf(struct wpa_supplicant *wpa_s, char *pos, char *end, struct wpabuf *wps_ie) argument
2468 wpa_supplicant_wps_ie_txt(struct wpa_supplicant *wpa_s, char *pos, char *end, const struct wpa_bss *bss) argument
2487 char *pos, *end; local
2604 char *pos, *end; local
2633 char *pos, ifname[IFNAMSIZ + 1]; local
2743 char *pos; local
3152 char *pos, *end; local
3449 char *pos, *end; local
3485 char *pos, *end; local
3521 char *pos, *end; local
3550 char *pos, *end; local
3620 char *pos, *end; local
3663 char *pos, *end; local
3721 char *pos, *end; local
3771 char *pos, *end, *hmode; local
3821 char *pos, *end, *hmode; local
3959 anqp_add_hex(char *pos, char *end, const char *title, struct wpabuf *data) argument
3998 char *pos, *end; local
4576 char *pos; local
4653 char *pos; local
4743 char *pos; local
4774 char *pos; local
4801 char *pos, *pos2; local
4937 char *pos; local
4980 char *pos; local
5085 char *pos, *pos2; local
5140 char *pos; local
5189 char *pos; local
5207 char *pos; local
5306 char *pos; local
5351 char *pos; local
5384 char *pos; local
5404 char *pos; local
5434 char *pos; local
5484 char *pos; local
5582 char *pos, *end; local
5741 char *pos; local
5831 char *pos; local
5870 char *pos; local
5926 char *pos, *pos2; local
5958 char *pos; local
5976 const char *pos; local
6040 char *pos; local
6104 char *pos; local
6149 char *pos, *end; local
6214 char *pos; local
6288 char *pos; local
6445 char *pos; local
6511 char *pos, *end; local
6614 char *pos; local
6783 char *pos, *end; local
6851 char *pos, *pos2; local
6979 const char *pos = value; local
6999 char *pos; local
7206 char *pos, *param; local
7283 char *pos, *param; local
7325 char *pos; local
7365 const u16 *pos = buf; local
7385 const u8 *pos; local
7442 char *pos; local
7550 char *pos; local
7668 char *pos = cmd; local
7745 char *pos = cmd; local
8666 char *pos, *extra; local
8827 char *pos, *end; local
8868 char *pos, *end; local
9083 char *pos, *end; local
9138 char *pos = os_strchr(buf + 7, ' '); local
[all...]
/external/apache-http/src/org/apache/http/impl/io/
H A DContentLengthInputStream.java86 private long pos = 0; field in class:ContentLengthInputStream
148 if (pos >= contentLength) {
151 pos++;
172 if (pos >= contentLength) {
176 if (pos + len > contentLength) {
177 len = (int) (contentLength - pos);
180 pos += count;
211 long remaining = Math.min(n, this.contentLength - this.pos);
222 this.pos += count;
/external/clang/test/CodeGenCXX/
H A Dcxx11-trivial-initializer-struct.cpp9 unsigned char *pos; member in struct:sAFSearchPos
/external/glide/third_party/disklrucache/src/main/java/com/bumptech/glide/disklrucache/
H A DStrictLineReader.java53 * Buffered data is stored in {@code buf}. As long as no exception occurs, 0 <= pos <= end
54 * and the data in the range [pos, end) is buffered for reading. At end of input, if there is
55 * an unterminated line, we set end == -1, otherwise end == pos. If the underlying
56 * {@code InputStream} throws an {@code IOException}, end may remain as either pos or -1.
59 private int pos; field in class:StrictLineReader
133 // throw again if that happens; thus we need to handle end == -1 as well as end == pos.
134 if (pos >= end) {
138 for (int i = pos; i != end; ++i) {
140 int lineEnd = (i != pos && buf[i - 1] == CR) ? i - 1 : i;
141 String res = new String(buf, pos, lineEn
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DStringPrepParseException.java94 * @param pos The position of error in the rules string
97 public StringPrepParseException(String message,int error, String rules, int pos){ argument
100 setContext(rules,pos);
109 * @param pos The position of error in the rules string
117 public StringPrepParseException(String message, int error, String rules, int pos, int lineNumber){ argument
120 setContext(rules,pos);
197 private void setPreContext(String str, int pos){ argument
198 setPreContext(str.toCharArray(),pos);
201 private void setPreContext(char[] str, int pos){ argument
202 int start = (pos <
208 setPostContext(String str, int pos) argument
212 setPostContext(char[] str, int pos) argument
219 setContext(String str,int pos) argument
[all...]
/external/lldb/include/lldb/Core/
H A DThreadSafeSTLMap.h82 const_iterator pos = m_collection.find(key); local
83 if (pos != m_collection.end())
85 value = pos->second;
101 const_iterator pos, end = m_collection.end(); local
102 for (pos = m_collection.begin(); pos != end; ++pos)
104 if (pos->second == value)
106 key = pos->first;
129 const_iterator pos local
[all...]
/external/llvm/tools/llvm-symbolizer/
H A Dllvm-symbolizer.cpp82 char *pos = InputString; local
83 if (strncmp(pos, kDataCmd, strlen(kDataCmd)) == 0) {
85 pos += strlen(kDataCmd);
86 } else if (strncmp(pos, kCodeCmd, strlen(kCodeCmd)) == 0) {
88 pos += strlen(kCodeCmd);
95 pos += strspn(pos, kDelimiters);
96 if (*pos == '"' || *pos == '\'') {
97 char quote = *pos;
[all...]
/external/mesa3d/src/gallium/auxiliary/rbug/
H A Drbug_internal.h81 PAD(pos, size); \
82 pos += size; \
83 if (pos > len) \
85 ret->name = *((type *)(&data[pos - size])); \
91 if (pos > len) \
93 PAD(pos, size); \
94 pos += size * ret->name##_len; \
95 if (pos > len) \
97 ret->name = (type *)&data[pos - size * ret->name##_len]; \
/external/wpa_supplicant_8/hostapd/
H A Dhlr_auc_gw.c229 char cmd[128], val[13], *pos; local
234 pos = val;
235 pos += wpa_snprintf_hex(pos, sizeof(val), m->sqn, 6);
236 *pos = '\0';
278 char buf[200], *pos, *pos2; local
299 pos = buf;
300 while (*pos != '\0' && *pos != '\n')
301 pos
416 char buf[200], *pos, *pos2; local
553 char buf[500], *pos; local
646 char *pos; local
719 char *pos, *rpos, *rend; local
791 char *pos, *end; local
[all...]
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dsha256-prf.c56 size_t pos, plen; local
73 pos = 0;
74 while (pos < buf_len) {
75 plen = buf_len - pos;
79 &buf[pos]);
80 pos += SHA256_MAC_LEN;
83 os_memcpy(&buf[pos], hash, plen);
84 pos += plen;
96 buf[pos - 1] &= mask;
/external/wpa_supplicant_8/hostapd/src/eap_common/
H A Deap_ttls.h31 #define AVP_PAD(start, pos) \
34 __pad = (4 - (((pos) - (start)) & 3)) & 3; \
35 os_memset((pos), 0, __pad); \
36 pos += __pad; \
/external/wpa_supplicant_8/src/crypto/
H A Dsha256-prf.c56 size_t pos, plen; local
73 pos = 0;
74 while (pos < buf_len) {
75 plen = buf_len - pos;
79 &buf[pos]);
80 pos += SHA256_MAC_LEN;
83 os_memcpy(&buf[pos], hash, plen);
84 pos += plen;
96 buf[pos - 1] &= mask;
/external/wpa_supplicant_8/src/eap_common/
H A Deap_ttls.h31 #define AVP_PAD(start, pos) \
34 __pad = (4 - (((pos) - (start)) & 3)) & 3; \
35 os_memset((pos), 0, __pad); \
36 pos += __pad; \
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Dsha256-prf.c56 size_t pos, plen; local
73 pos = 0;
74 while (pos < buf_len) {
75 plen = buf_len - pos;
79 &buf[pos]);
80 pos += SHA256_MAC_LEN;
83 os_memcpy(&buf[pos], hash, plen);
84 pos += plen;
96 buf[pos - 1] &= mask;
/external/wpa_supplicant_8/wpa_supplicant/src/eap_common/
H A Deap_ttls.h31 #define AVP_PAD(start, pos) \
34 __pad = (4 - (((pos) - (start)) & 3)) & 3; \
35 os_memset((pos), 0, __pad); \
36 pos += __pad; \
/external/lldb/source/Target/
H A DPathMappingList.cpp93 const_iterator pos, end = rhs.m_pairs.end(); local
94 for (pos = rhs.m_pairs.begin(); pos != end; ++pos)
95 m_pairs.push_back(*pos);
188 const_iterator pos, end = m_pairs.end();
189 for (pos = m_pairs.begin(); pos != end; ++pos)
191 const size_t prefixLen = pos
235 const_iterator pos, end = m_pairs.end(); local
278 iterator pos = FindIteratorForPath (path); local
293 const_iterator pos; local
308 iterator pos; local
337 const_iterator pos; local
[all...]
/external/wpa_supplicant_8/hostapd/src/eap_peer/
H A Deap_fast_pac.c182 const char *pos; member in struct:eap_fast_read_ctx
191 char *pos; local
200 if (rc->pos >= rc->end)
202 l_end = rc->pos;
205 len = l_end - rc->pos;
208 os_memcpy(rc->buf, rc->pos, len);
210 rc->pos = l_end + 1;
214 pos = rc->buf;
215 while (*pos != '\0') {
216 if (*pos
330 eap_fast_parse_pac_type(struct eap_fast_pac *pac, char *pos) argument
345 eap_fast_parse_pac_key(struct eap_fast_pac *pac, char *pos) argument
363 eap_fast_parse_pac_opaque(struct eap_fast_pac *pac, char *pos) argument
374 eap_fast_parse_a_id(struct eap_fast_pac *pac, char *pos) argument
384 eap_fast_parse_i_id(struct eap_fast_pac *pac, char *pos) argument
394 eap_fast_parse_a_id_info(struct eap_fast_pac *pac, char *pos) argument
418 char *pos; local
477 eap_fast_write(char **buf, char **pos, size_t *buf_len, const char *field, const u8 *data, size_t len, int txt) argument
574 eap_fast_add_pac_data(struct eap_fast_pac *pac, char **buf, char **pos, size_t *buf_len) argument
623 char *buf, *pos; local
706 u8 *pos, *end; local
754 u8 *buf, *end, *pos; local
878 u8 *buf, *pos; local
[all...]
/external/wpa_supplicant_8/src/eap_peer/
H A Deap_fast_pac.c182 const char *pos; member in struct:eap_fast_read_ctx
191 char *pos; local
200 if (rc->pos >= rc->end)
202 l_end = rc->pos;
205 len = l_end - rc->pos;
208 os_memcpy(rc->buf, rc->pos, len);
210 rc->pos = l_end + 1;
214 pos = rc->buf;
215 while (*pos != '\0') {
216 if (*pos
330 eap_fast_parse_pac_type(struct eap_fast_pac *pac, char *pos) argument
345 eap_fast_parse_pac_key(struct eap_fast_pac *pac, char *pos) argument
363 eap_fast_parse_pac_opaque(struct eap_fast_pac *pac, char *pos) argument
374 eap_fast_parse_a_id(struct eap_fast_pac *pac, char *pos) argument
384 eap_fast_parse_i_id(struct eap_fast_pac *pac, char *pos) argument
394 eap_fast_parse_a_id_info(struct eap_fast_pac *pac, char *pos) argument
418 char *pos; local
477 eap_fast_write(char **buf, char **pos, size_t *buf_len, const char *field, const u8 *data, size_t len, int txt) argument
574 eap_fast_add_pac_data(struct eap_fast_pac *pac, char **buf, char **pos, size_t *buf_len) argument
623 char *buf, *pos; local
706 u8 *pos, *end; local
754 u8 *buf, *end, *pos; local
878 u8 *buf, *pos; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/eap_peer/
H A Deap_fast_pac.c182 const char *pos; member in struct:eap_fast_read_ctx
191 char *pos; local
200 if (rc->pos >= rc->end)
202 l_end = rc->pos;
205 len = l_end - rc->pos;
208 os_memcpy(rc->buf, rc->pos, len);
210 rc->pos = l_end + 1;
214 pos = rc->buf;
215 while (*pos != '\0') {
216 if (*pos
330 eap_fast_parse_pac_type(struct eap_fast_pac *pac, char *pos) argument
345 eap_fast_parse_pac_key(struct eap_fast_pac *pac, char *pos) argument
363 eap_fast_parse_pac_opaque(struct eap_fast_pac *pac, char *pos) argument
374 eap_fast_parse_a_id(struct eap_fast_pac *pac, char *pos) argument
384 eap_fast_parse_i_id(struct eap_fast_pac *pac, char *pos) argument
394 eap_fast_parse_a_id_info(struct eap_fast_pac *pac, char *pos) argument
418 char *pos; local
477 eap_fast_write(char **buf, char **pos, size_t *buf_len, const char *field, const u8 *data, size_t len, int txt) argument
574 eap_fast_add_pac_data(struct eap_fast_pac *pac, char **buf, char **pos, size_t *buf_len) argument
623 char *buf, *pos; local
706 u8 *pos, *end; local
754 u8 *buf, *end, *pos; local
878 u8 *buf, *pos; local
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/
H A DCompositeFormat.java62 * @param pos input/ouput parsing parameter. On output, <code>pos</code>
66 final ParsePosition pos) {
67 parseNextCharacter(source, pos);
68 pos.setIndex(pos.getIndex() - 1);
75 * @param pos input/ouput parsing parameter.
79 final ParsePosition pos) {
80 int index = pos.getIndex();
89 pos
65 parseAndIgnoreWhitespace(final String source, final ParsePosition pos) argument
78 parseNextCharacter(final String source, final ParsePosition pos) argument
108 parseNumber(final String source, final double value, final ParsePosition pos) argument
140 parseNumber(final String source, final NumberFormat format, final ParsePosition pos) argument
170 parseFixedstring(final String source, final String expected, final ParsePosition pos) argument
207 formatDouble(final double value, final NumberFormat format, final StringBuffer toAppendTo, final FieldPosition pos) argument
[all...]
/external/javassist/src/main/javassist/bytecode/analysis/
H A DSubroutineScanner.java62 private void scan(int pos, CodeIterator iter, Subroutine sub) throws BadBytecode { argument
64 if (done.contains(new Integer(pos)))
67 done.add(new Integer(pos));
70 iter.move(pos);
74 pos = iter.next();
75 next = scanOp(pos, iter, sub) && iter.hasNext();
81 private boolean scanOp(int pos, CodeIterator iter, Subroutine sub) throws BadBytecode { argument
82 subroutines[pos] = sub;
84 int opcode = iter.byteAt(pos);
87 scanTableSwitch(pos, ite
125 scanLookupSwitch(int pos, CodeIterator iter, Subroutine sub) argument
139 scanTableSwitch(int pos, CodeIterator iter, Subroutine sub) argument
[all...]
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DHttpUrl.java423 int pos = skipLeadingAsciiWhitespace(input, 0, input.length());
424 int limit = skipTrailingAsciiWhitespace(input, pos, input.length());
427 int schemeDelimiterOffset = schemeDelimiterOffset(input, pos, limit);
429 if (input.regionMatches(true, pos, "https:", 0, 6)) {
431 pos += "https:".length();
432 } else if (input.regionMatches(true, pos, "http:", 0, 5)) {
434 pos += "http:".length();
446 int slashCount = slashCount(input, pos, limit);
457 pos += slashCount;
460 int componentDelimiterOffset = delimiterOffset(input, pos, limi
597 skipLeadingAsciiWhitespace(String input, int pos, int limit) argument
617 skipTrailingAsciiWhitespace(String input, int pos, int limit) argument
637 schemeDelimiterOffset(String input, int pos, int limit) argument
663 slashCount(String input, int pos, int limit) argument
681 delimiterOffset(String input, int pos, int limit, String delimiters) argument
689 portColonOffset(String input, int pos, int limit) argument
704 username(String input, int pos, int limit) argument
708 password(String input, int pos, int limit) argument
712 host(String input, int pos, int limit) argument
734 decodeIpv6(String input, int pos, int limit) argument
742 port(String input, int pos, int limit) argument
753 pathSegment(String input, int pos, int limit) argument
757 query(String input, int pos, int limit) argument
761 fragment(String input, int pos, int limit) argument
766 decode(String encoded, int pos, int limit) argument
780 decode(Buffer out, String encoded, int pos, int limit) argument
815 encode(String input, int pos, int limit, String encodeSet) argument
834 encode(StringBuilder out, String input, int pos, int limit, String encodeSet) argument
[all...]
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dcommon.c141 const char *pos = txt; local
146 while (*pos == ':' || *pos == '.' || *pos == '-')
147 pos++;
149 a = hex2num(*pos++);
152 b = hex2num(*pos++);
158 return pos - txt;
223 int pos = len - 1; local
224 while (pos >
286 char *pos = buf, *end = buf + buf_size; local
310 char *pos = buf, *end = buf + buf_size; local
517 const char *pos = str; local
634 const char *pos; local
646 const char *pos; local
752 const char *pos, *pos2, *pos3; local
808 char *buf, *pos, *end; local
985 char *end, *pos = str; local
[all...]
/external/wpa_supplicant_8/src/utils/
H A Dcommon.c141 const char *pos = txt; local
146 while (*pos == ':' || *pos == '.' || *pos == '-')
147 pos++;
149 a = hex2num(*pos++);
152 b = hex2num(*pos++);
158 return pos - txt;
223 int pos = len - 1; local
224 while (pos >
286 char *pos = buf, *end = buf + buf_size; local
310 char *pos = buf, *end = buf + buf_size; local
517 const char *pos = str; local
634 const char *pos; local
646 const char *pos; local
752 const char *pos, *pos2, *pos3; local
808 char *buf, *pos, *end; local
985 char *end, *pos = str; local
[all...]

Completed in 798 milliseconds

1234567891011>>