Searched refs:pos (Results 251 - 275 of 3861) sorted by relevance

<<11121314151617181920>>

/external/icu/icu4c/source/common/unicode/
H A Dbytestrie.h111 const uint8_t *pos; member in class:BytesTrie::State
124 state.pos=pos_;
141 pos_=state.pos;
207 const uint8_t *pos=pos_; local
208 int32_t leadByte=*pos++;
210 return readValue(pos, leadByte>>1);
223 const uint8_t *pos=pos_; local
225 return pos!=NULL && findUniqueValue(pos+remainingMatchLength_+1, FALSE, uniqueValue);
319 const uint8_t *branchNext(const uint8_t *pos, int32_
366 skipValue(const uint8_t *pos, int32_t leadByte) argument
379 skipValue(const uint8_t *pos) argument
387 skipDelta(const uint8_t *pos) argument
[all...]
/external/lldb/source/Target/
H A DThreadPlanStepUntil.cpp117 until_collection::iterator pos, end = m_until_points.end(); local
118 for (pos = m_until_points.begin(); pos != end; pos++)
120 target_sp->RemoveBreakpointByID((*pos).second);
144 until_collection::iterator pos, end = m_until_points.end(); local
147 for (pos = m_until_points.begin(); pos != end; pos++)
149 s->Printf ("\n\t0x%" PRIx64 " (bp: %d)", (uint64_t) (*pos)
163 until_collection::iterator pos, end = m_until_points.end(); local
234 until_collection::iterator pos, end = m_until_points.end(); local
355 until_collection::iterator pos, end = m_until_points.end(); local
381 until_collection::iterator pos, end = m_until_points.end(); local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_print.cpp284 pos += snprintf(&buf[pos], size - pos, args); \
290 buf[pos++] = ' '; \
291 pos += snprintf(&buf[pos], size - pos, args); \
296 if (pos < size) \
297 buf[pos++] = ' '; \
302 size_t pos local
324 size_t pos = 0; local
378 size_t pos = 0; local
408 size_t pos = 0; local
468 size_t pos = 0; local
[all...]
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_print.cpp284 pos += snprintf(&buf[pos], size - pos, args); \
290 buf[pos++] = ' '; \
291 pos += snprintf(&buf[pos], size - pos, args); \
296 if (pos < size) \
297 buf[pos++] = ' '; \
302 size_t pos local
324 size_t pos = 0; local
378 size_t pos = 0; local
408 size_t pos = 0; local
468 size_t pos = 0; local
[all...]
/external/chromium_org/base/strings/
H A Dstring_piece.cc87 size_t pos) {
88 size_t ret = std::min(self.size() - pos, n);
89 memcpy(buf, self.data() + pos, ret * sizeof(typename STR::value_type));
93 size_t copy(const StringPiece& self, char* buf, size_t n, size_t pos) { argument
94 return copyT(self, buf, n, pos);
97 size_t copy(const StringPiece16& self, char16* buf, size_t n, size_t pos) { argument
98 return copyT(self, buf, n, pos);
104 size_t pos) {
105 if (pos > self.size())
109 std::search(self.begin() + pos, sel
84 copyT(const BasicStringPiece<STR>& self, typename STR::value_type* buf, size_t n, size_t pos) argument
102 findT(const BasicStringPiece<STR>& self, const BasicStringPiece<STR>& s, size_t pos) argument
115 find(const StringPiece& self, const StringPiece& s, size_t pos) argument
119 find(const StringPiece16& self, const StringPiece16& s, size_t pos) argument
124 findT(const BasicStringPiece<STR>& self, typename STR::value_type c, size_t pos) argument
136 find(const StringPiece& self, char c, size_t pos) argument
140 find(const StringPiece16& self, char16 c, size_t pos) argument
145 rfindT(const BasicStringPiece<STR>& self, const BasicStringPiece<STR>& s, size_t pos) argument
162 rfind(const StringPiece& self, const StringPiece& s, size_t pos) argument
166 rfind(const StringPiece16& self, const StringPiece16& s, size_t pos) argument
171 rfindT(const BasicStringPiece<STR>& self, typename STR::value_type c, size_t pos) argument
187 rfind(const StringPiece& self, char c, size_t pos) argument
191 rfind(const StringPiece16& self, char16 c, size_t pos) argument
196 find_first_of(const StringPiece& self, const StringPiece& s, size_t pos) argument
217 find_first_of(const StringPiece16& self, const StringPiece16& s, size_t pos) argument
228 find_first_not_of(const StringPiece& self, const StringPiece& s, size_t pos) argument
252 find_first_not_of(const StringPiece16& self, const StringPiece16& s, size_t pos) argument
273 find_first_not_ofT(const BasicStringPiece<STR>& self, typename STR::value_type c, size_t pos) argument
287 find_first_not_of(const StringPiece& self, char c, size_t pos) argument
293 find_first_not_of(const StringPiece16& self, char16 c, size_t pos) argument
300 find_last_of(const StringPiece& self, const StringPiece& s, size_t pos) argument
320 find_last_of(const StringPiece16& self, const StringPiece16& s, size_t pos) argument
339 find_last_not_of(const StringPiece& self, const StringPiece& s, size_t pos) argument
365 find_last_not_of(const StringPiece16& self, const StringPiece16& s, size_t pos) argument
388 find_last_not_ofT(const BasicStringPiece<STR>& self, typename STR::value_type c, size_t pos) argument
403 find_last_not_of(const StringPiece& self, char c, size_t pos) argument
409 find_last_not_of(const StringPiece16& self, char16 c, size_t pos) argument
416 substrT(const BasicStringPiece<STR>& self, size_t pos, size_t n) argument
424 substr(const StringPiece& self, size_t pos, size_t n) argument
430 substr(const StringPiece16& self, size_t pos, size_t n) argument
[all...]
/external/chromium_org/v8/src/
H A Dfunc-name-inferrer.cc54 int pos, const AstString* prev) {
55 if (pos >= names_stack_.length()) return prev;
56 if (pos < names_stack_.length() - 1 &&
57 names_stack_.at(pos).type == kVariableName &&
58 names_stack_.at(pos + 1).type == kVariableName) {
60 return MakeNameFromStackHelper(pos + 1, prev);
63 const AstRawString* name = names_stack_.at(pos).name;
68 return MakeNameFromStackHelper(pos + 1, curr);
70 return MakeNameFromStackHelper(pos + 1, names_stack_.at(pos)
53 MakeNameFromStackHelper( int pos, const AstString* prev) argument
[all...]
/external/chromium_org/v8/test/mjsunit/
H A Dsparse-array-reverse.js91 var pos = poses[pos_pos];
94 a[pos] = letter;
98 Array.prototype[pos] = letter;
101 to_delete.push(pos);
108 var pos = size - poses[pos_pos] - 1;
110 a[pos] = letter;
114 Array.prototype[pos] = letter;
117 to_delete.push(pos);
125 var pos = to_delete.pop();
126 delete(Array.prototype[pos]);
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dstrlist.h61 * @pos: the &struct str_node to use as a loop cursor.
64 #define strlist__for_each(pos, slist) \
65 for (pos = strlist__first(slist); pos; pos = strlist__next(pos))
70 * @pos: the &struct str_node to use as a loop cursor.
74 #define strlist__for_each_safe(pos, n, slist) \
75 for (pos = strlist__first(slist), n = strlist__next(pos); po
[all...]
/external/lzma/CS/7zip/Compress/LZ/
H A DLzOutWindow.cs82 uint pos = _pos - distance - 1;
83 if (pos >= _windowSize)
84 pos += _windowSize;
87 if (pos >= _windowSize)
88 pos = 0;
89 _buffer[_pos++] = _buffer[pos++];
104 uint pos = _pos - distance - 1;
105 if (pos >= _windowSize)
106 pos += _windowSize;
107 return _buffer[pos];
[all...]
/external/svox/pico/lib/
H A Dpicokfst.c78 /* Converts 'nrBytes' bytes starting at position '*pos' in byte stream 'stream' into unsigned number 'num'.
79 '*pos' is modified to the position right after the number */
80 static void FixedBytesToUnsignedNum (picoos_uint8 * stream, picoos_uint8 nrBytes, picoos_uint32 * pos, picoos_uint32 * num) argument
86 (*num) = ((*num) << 8) + (picoos_uint32)stream[*pos];
87 (*pos)++;
92 /* Converts 'nrBytes' bytes starting at position '*pos' in byte stream 'stream' into signed number 'num'.
93 '*pos' is modified to the position right after the number */
94 static void FixedBytesToSignedNum (picoos_uint8 * stream, picoos_uint8 nrBytes, picoos_uint32 * pos, picoos_int32 * num) argument
101 val = (val << 8) + (picoos_uint32)stream[*pos];
102 (*pos)
116 BytesToNum(picoos_uint8 * stream, picoos_uint32 * pos, picoos_int32 * num) argument
275 picoos_uint32 pos; local
313 picoos_uint32 pos; local
346 picoos_uint32 pos; local
368 picoos_uint32 pos; local
390 picoos_uint32 pos; local
421 picoos_uint32 pos; local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
H A Dsp_tile_cache.c46 * Return the position in the cache for the tile that contains win pos (x,y).
62 int pos, bit; local
63 pos = addr.bits.y * (MAX_WIDTH / TILE_SIZE) + addr.bits.x;
64 assert(pos / 32 < (MAX_WIDTH / TILE_SIZE) * (MAX_HEIGHT / TILE_SIZE) / 32);
65 bit = bitvec[pos / 32] & (1 << (pos & 31));
76 int pos; local
77 pos = addr.bits.y * (MAX_WIDTH / TILE_SIZE) + addr.bits.x;
78 assert(pos / 32 < (MAX_WIDTH / TILE_SIZE) * (MAX_HEIGHT / TILE_SIZE) / 32);
79 bitvec[pos / 3
87 uint pos; local
135 uint pos; local
388 sp_flush_tile(struct softpipe_tile_cache* tc, unsigned pos) argument
434 int inuse = 0, pos; local
470 unsigned pos; local
504 const int pos = CACHE_POS(addr.bits.x, local
618 uint pos; local
[all...]
/external/icu/icu4c/source/i18n/
H A Ddecimalformatpattern.cpp52 int32_t pos,
54 parseError.offset = pos;
58 int32_t start = (pos < U_PARSE_CONTEXT_LEN)? 0 : (pos - (U_PARSE_CONTEXT_LEN-1
60 int32_t stop = pos;
66 start = pos+1;
67 stop = ((pos+U_PARSE_CONTEXT_LEN)<=pattern.length()) ? (pos+(U_PARSE_CONTEXT_LEN-1)) :
170 int32_t pos = 0; local
174 for (int32_t part=0; part<2 && pos<patLe
51 syntaxError(const UnicodeString& pattern, int32_t pos, UParseError& parseError) argument
[all...]
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_tile_cache.c46 * Return the position in the cache for the tile that contains win pos (x,y).
62 int pos, bit; local
63 pos = addr.bits.y * (MAX_WIDTH / TILE_SIZE) + addr.bits.x;
64 assert(pos / 32 < (MAX_WIDTH / TILE_SIZE) * (MAX_HEIGHT / TILE_SIZE) / 32);
65 bit = bitvec[pos / 32] & (1 << (pos & 31));
76 int pos; local
77 pos = addr.bits.y * (MAX_WIDTH / TILE_SIZE) + addr.bits.x;
78 assert(pos / 32 < (MAX_WIDTH / TILE_SIZE) * (MAX_HEIGHT / TILE_SIZE) / 32);
79 bitvec[pos / 3
87 uint pos; local
135 uint pos; local
388 sp_flush_tile(struct softpipe_tile_cache* tc, unsigned pos) argument
434 int inuse = 0, pos; local
470 unsigned pos; local
504 const int pos = CACHE_POS(addr.bits.x, local
618 uint pos; local
[all...]
/external/wpa_supplicant_8/hostapd/src/eap_server/
H A Deap_server_gpsk.c145 u8 *pos, *start; local
178 pos = wpabuf_put(req, miclen);
180 data->specifier, start, pos - start, pos) < 0)
213 const u8 *pos; local
216 pos = eap_hdr_validate(EAP_VENDOR_IETF, EAP_TYPE_GPSK, respData, &len);
217 if (pos == NULL || len < 1) {
222 wpa_printf(MSG_DEBUG, "EAP-GPSK: Received frame: opcode=%d", *pos);
224 if (data->state == GPSK_1 && *pos == EAP_GPSK_OPCODE_GPSK_2)
227 if (data->state == GPSK_3 && *pos
241 const u8 *pos, *end; local
459 const u8 *pos, *end; local
528 const u8 *pos; local
[all...]
/external/wpa_supplicant_8/src/eap_server/
H A Deap_server_gpsk.c145 u8 *pos, *start; local
178 pos = wpabuf_put(req, miclen);
180 data->specifier, start, pos - start, pos) < 0)
213 const u8 *pos; local
216 pos = eap_hdr_validate(EAP_VENDOR_IETF, EAP_TYPE_GPSK, respData, &len);
217 if (pos == NULL || len < 1) {
222 wpa_printf(MSG_DEBUG, "EAP-GPSK: Received frame: opcode=%d", *pos);
224 if (data->state == GPSK_1 && *pos == EAP_GPSK_OPCODE_GPSK_2)
227 if (data->state == GPSK_3 && *pos
241 const u8 *pos, *end; local
459 const u8 *pos, *end; local
528 const u8 *pos; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/eap_server/
H A Deap_server_gpsk.c145 u8 *pos, *start; local
178 pos = wpabuf_put(req, miclen);
180 data->specifier, start, pos - start, pos) < 0)
213 const u8 *pos; local
216 pos = eap_hdr_validate(EAP_VENDOR_IETF, EAP_TYPE_GPSK, respData, &len);
217 if (pos == NULL || len < 1) {
222 wpa_printf(MSG_DEBUG, "EAP-GPSK: Received frame: opcode=%d", *pos);
224 if (data->state == GPSK_1 && *pos == EAP_GPSK_OPCODE_GPSK_2)
227 if (data->state == GPSK_3 && *pos
241 const u8 *pos, *end; local
459 const u8 *pos, *end; local
528 const u8 *pos; local
[all...]
/external/wpa_supplicant_8/hostapd/src/rsn_supp/
H A Dpmksa_cache.c127 struct rsn_pmksa_cache_entry *entry, *pos, *prev; local
150 pos = pmksa->pmksa;
152 while (pos) {
153 if (os_memcmp(aa, pos->aa, ETH_ALEN) == 0) {
154 if (pos->pmk_len == pmk_len &&
155 os_memcmp_const(pos->pmk, pmk, pmk_len) == 0 &&
156 os_memcmp_const(pos->pmkid, entry->pmkid,
161 return pos;
164 pmksa->pmksa = pos->next;
166 prev->next = pos
467 char *pos = buf; local
[all...]
/external/wpa_supplicant_8/src/rsn_supp/
H A Dpmksa_cache.c127 struct rsn_pmksa_cache_entry *entry, *pos, *prev; local
150 pos = pmksa->pmksa;
152 while (pos) {
153 if (os_memcmp(aa, pos->aa, ETH_ALEN) == 0) {
154 if (pos->pmk_len == pmk_len &&
155 os_memcmp_const(pos->pmk, pmk, pmk_len) == 0 &&
156 os_memcmp_const(pos->pmkid, entry->pmkid,
161 return pos;
164 pmksa->pmksa = pos->next;
166 prev->next = pos
467 char *pos = buf; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/rsn_supp/
H A Dpmksa_cache.c127 struct rsn_pmksa_cache_entry *entry, *pos, *prev; local
150 pos = pmksa->pmksa;
152 while (pos) {
153 if (os_memcmp(aa, pos->aa, ETH_ALEN) == 0) {
154 if (pos->pmk_len == pmk_len &&
155 os_memcmp_const(pos->pmk, pmk, pmk_len) == 0 &&
156 os_memcmp_const(pos->pmkid, entry->pmkid,
161 return pos;
164 pmksa->pmksa = pos->next;
166 prev->next = pos
467 char *pos = buf; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/
H A Dwnm_sta.c241 u8 *pos = (u8 *) frm; /* point to payload after the action field */ local
254 pos += 3 + key_len_total;
255 if (pos > frm + len) {
259 while (pos - frm < len) {
260 u8 ie_len = *(pos + 1);
261 if (pos + 2 + ie_len > frm + len) {
265 wpa_hexdump(MSG_DEBUG, "WNM: Element", pos, 2 + ie_len);
266 if (*pos == WLAN_EID_WNMSLEEP)
267 wnmsleep_ie = (struct wnm_sleep_element *) pos;
268 else if (*pos
328 wnm_parse_neighbor_report_elem(struct neighbor_report *rep, u8 id, u8 elen, const u8 *pos) argument
439 wnm_parse_neighbor_report(struct wpa_supplicant *wpa_s, const u8 *pos, u8 len, struct neighbor_report *rep) argument
524 u8 buf[1000], *pos; local
619 ieee802_11_rx_bss_trans_mgmt_req(struct wpa_supplicant *wpa_s, const u8 *pos, const u8 *end, int reply) argument
736 u8 buf[1000], *pos; local
772 const u8 *pos, *end, *next; local
878 const u8 *pos, *end; local
918 const u8 *pos, *end; local
[all...]
/external/ksoap2/kobjects/org/ksoap2/kobjects/mime/
H A DDecoder.java69 int pos = 0;
76 while (pos < len && header.charAt(pos) <= ' ')
77 pos++;
78 if (pos >= len)
81 if (header.charAt(pos) == '"') {
82 pos++;
83 int cut = header.indexOf('"', pos);
87 result.put(key, header.substring(pos, cut));
88 pos
[all...]
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugPubnamesSet.cpp132 DescriptorConstIter pos; local
134 for (pos = m_descriptors.begin(); pos != end; ++pos)
137 log->Printf("0x%8.8x + 0x%8.8x = 0x%8.8x: %s", pos->offset, m_header.die_offset, pos->offset + m_header.die_offset, pos->name.c_str());
139 log->Printf("0x%8.8x: %s", pos->offset + m_header.die_offset, pos->name.c_str());
151 for (cstr_to_index_mmap::const_iterator pos
158 DescriptorConstIter pos; local
[all...]
/external/lzma/CPP/Common/
H A DCommandLineParser.cpp96 int pos = 0; local
97 if (!IsItSwitchChar(s[pos]))
99 while (pos < len)
101 if (IsItSwitchChar(s[pos]))
102 pos++;
109 if (switchLen <= maxLen || pos + switchLen > len)
112 UString temp = s + pos;
115 // if (_strnicmp(switchForms[switchIndex].IDString, LPCSTR(s) + pos, switchLen) == 0)
128 pos += maxLen;
129 int tailSize = len - pos;
[all...]
/external/wpa_supplicant_8/hostapd/src/tls/
H A Dpkcs8.c22 const u8 *pos, *end; local
37 pos = hdr.payload;
38 end = pos + hdr.length;
41 if (asn1_get_next(pos, end - pos, &hdr) < 0 ||
58 pos = hdr.payload + hdr.length;
71 if (asn1_get_next(pos, len, &hdr) < 0 ||
81 if (asn1_get_oid(hdr.payload, hdr.length, &oid, &pos)) {
103 pos = hdr.payload + hdr.length;
106 if (asn1_get_next(pos, en
125 const u8 *pos, *end, *enc_alg; local
[all...]
/external/wpa_supplicant_8/src/tls/
H A Dpkcs8.c22 const u8 *pos, *end; local
37 pos = hdr.payload;
38 end = pos + hdr.length;
41 if (asn1_get_next(pos, end - pos, &hdr) < 0 ||
58 pos = hdr.payload + hdr.length;
71 if (asn1_get_next(pos, len, &hdr) < 0 ||
81 if (asn1_get_oid(hdr.payload, hdr.length, &oid, &pos)) {
103 pos = hdr.payload + hdr.length;
106 if (asn1_get_next(pos, en
125 const u8 *pos, *end, *enc_alg; local
[all...]

Completed in 5250 milliseconds

<<11121314151617181920>>