Searched refs:pos (Results 176 - 200 of 2848) sorted by relevance

1234567891011>>

/external/wpa_supplicant_8/wpa_supplicant/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/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
H A DBreakTransliterator.java74 protected synchronized void handleTransliterate(Replaceable text, Position pos, boolean incremental) { argument
78 bi.setText(new ReplaceableCharacterIterator(text, pos.start, pos.limit, pos.start));
83 bi.setText(new StringCharacterIterator(new String(tempBuffer), pos.start, pos.limit, pos.start));
90 for(boundary = bi.first(); boundary != BreakIterator.DONE && boundary < pos.limit; boundary = bi.next()) {
130 pos.contextLimit += delta;
131 pos
160 private int pos; field in class:BreakTransliterator.ReplaceableCharacterIterator
190 ReplaceableCharacterIterator(Replaceable text, int begin, int end, int pos) argument
[all...]
/external/javassist/src/main/javassist/bytecode/
H A DStackMapTable.java178 int pos = 2;
180 pos = stackMapFrames(pos, i);
186 * @param pos the position of the frame in the <code>info</code>
192 int stackMapFrames(int pos, int nth) throws BadBytecode { argument
193 int type = info[pos] & 0xff;
195 sameFrame(pos, type);
196 pos++;
199 pos = sameLocals(pos, typ
230 sameFrame(int pos, int offsetDelta) argument
232 sameLocals(int pos, int type) argument
265 sameLocals(int pos, int offsetDelta, int stackTag, int stackData) argument
275 chopFrame(int pos, int offsetDelta, int k) argument
277 appendFrame(int pos, int type) argument
309 appendFrame(int pos, int offsetDelta, int[] tags, int[] data) argument
312 fullFrame(int pos) argument
338 fullFrame(int pos, int offsetDelta, int[] localTags, int[] localData, int[] stackTags, int[] stackData) argument
342 verifyTypeInfo(int pos, int n, int[] tags, int[] data) argument
369 sameFrame(int pos, int offsetDelta) argument
373 sameLocals(int pos, int offsetDelta, int stackTag, int stackData) argument
377 chopFrame(int pos, int offsetDelta, int k) argument
381 appendFrame(int pos, int offsetDelta, int[] tags, int[] data) argument
385 fullFrame(int pos, int offsetDelta, int[] localTags, int[] localData, int[] stackTags, int[] stackData) argument
491 fullFrame(int pos, int offsetDelta, int[] localTags, int[] localData, int[] stackTags, int[] stackData) argument
715 sameFrame(int pos, int offsetDelta) argument
720 sameLocals(int pos, int offsetDelta, int stackTag, int stackData) argument
726 chopFrame(int pos, int offsetDelta, int k) argument
731 appendFrame(int pos, int offsetDelta, int[] tags, int[] data) argument
738 fullFrame(int pos, int offsetDelta, int[] localTags, int[] localData, int[] stackTags, int[] stackData) argument
817 sameFrame(int pos, int offsetDelta) argument
821 sameLocals(int pos, int offsetDelta, int stackTag, int stackData) argument
825 update(int pos, int offsetDelta, int base, int entry) argument
859 chopFrame(int pos, int offsetDelta, int k) argument
863 appendFrame(int pos, int offsetDelta, int[] tags, int[] data) argument
867 fullFrame(int pos, int offsetDelta, int[] localTags, int[] localData, int[] stackTags, int[] stackData) argument
872 update(int pos, int offsetDelta) argument
911 NewRemover(byte[] data, int pos) argument
916 sameLocals(int pos, int offsetDelta, int stackTag, int stackData) argument
923 fullFrame(int pos, int offsetDelta, int[] localTags, int[] localData, int[] stackTags, int[] stackData) argument
[all...]
/external/javassist/src/test/test/javassist/convert/
H A DArrayAccessReplaceTest.java245 public void setBoolean(int pos, boolean value); argument
246 public boolean getBoolean(int pos); argument
248 public void setByte(int pos, byte value); argument
249 public byte getByte(int pos); argument
251 public void setShort(int pos, short value); argument
252 public short getShort(int pos); argument
254 public void setChar(int pos, char value); argument
255 public char getChar(int pos); argument
257 public void setInt(int pos, int value); argument
258 public int getInt(int pos); argument
260 setLong(int pos, long value) argument
261 getLong(int pos) argument
263 setFloat(int pos, float value) argument
264 getFloat(int pos) argument
266 setDouble(int pos, double value) argument
267 getDouble(int pos) argument
269 setObject(int pos, Object value) argument
270 getObject(int pos) argument
272 setFoo(int pos, Foo value) argument
273 getFoo(int pos) argument
297 getBoolean(int pos) argument
301 getByte(int pos) argument
305 getChar(int pos) argument
309 getDouble(int pos) argument
313 getFloat(int pos) argument
317 getFoo(int pos) argument
321 getInt(int pos) argument
325 getLong(int pos) argument
329 getObject(int pos) argument
333 getShort(int pos) argument
341 setBoolean(int pos, boolean value) argument
345 setByte(int pos, byte value) argument
349 setChar(int pos, char value) argument
353 setDouble(int pos, double value) argument
357 setFloat(int pos, float value) argument
361 setFoo(int pos, Foo value) argument
365 setInt(int pos, int value) argument
369 setLong(int pos, long value) argument
373 setObject(int pos, Object value) argument
377 setShort(int pos, short value) argument
[all...]
/external/icu/icu4c/source/i18n/
H A Dfphdlimp.cpp40 : pos(_pos) {
48 if (pos.getField() == id) {
49 pos.setBeginIndex(start);
50 pos.setEndIndex(limit);
56 if (delta != 0 && pos.getField() != FieldPosition::DONT_CARE && pos.getBeginIndex() != -1) {
57 pos.setBeginIndex(delta + pos.getBeginIndex());
58 pos.setEndIndex(delta + pos
[all...]
/external/marisa-trie/lib/marisa/
H A Drange.h11 Range(UInt32 begin, UInt32 end, UInt32 pos) argument
12 : begin_(begin), end_(end), pos_(pos) {}
20 void set_pos(UInt32 pos) { argument
21 pos_ = pos;
30 UInt32 pos() const { function in class:marisa::Range
45 WRange(UInt32 begin, UInt32 end, UInt32 pos, double weight) argument
46 : range_(begin, end, pos), weight_(weight) {}
54 void set_pos(UInt32 pos) { argument
55 range_.set_pos(pos);
70 UInt32 pos() cons function in class:marisa::WRange
[all...]
/external/marisa-trie/v0_1_5/lib/marisa_alpha/
H A Drange.h11 Range(UInt32 begin, UInt32 end, UInt32 pos) argument
12 : begin_(begin), end_(end), pos_(pos) {}
20 void set_pos(UInt32 pos) { argument
21 pos_ = pos;
30 UInt32 pos() const { function in class:marisa_alpha::Range
45 WRange(UInt32 begin, UInt32 end, UInt32 pos, double weight) argument
46 : range_(begin, end, pos), weight_(weight) {}
54 void set_pos(UInt32 pos) { argument
55 range_.set_pos(pos);
70 UInt32 pos() cons function in class:marisa_alpha::WRange
[all...]
/external/svox/pico/lib/
H A Dpicokpdf.c95 picoos_uint16 pos; local
103 pos = 0;
105 pdfdur->numframes = ((picoos_uint16)(this->base[pos+1])) << 8 |
106 this->base[pos];
107 pos += 2;
108 pdfdur->vecsize = this->base[pos++];
109 pdfdur->sampperframe = this->base[pos++];
110 pdfdur->phonquantlen = this->base[pos++];
111 pdfdur->phonquant = &(this->base[pos]);
112 pos
147 picoos_uint16 pos; local
252 picoos_uint16 pos; local
[all...]
/external/lldb/source/Target/
H A DThreadList.cpp270 collection::iterator pos, end = threads_copy.end(); local
286 for (pos = threads_copy.begin(); pos != end; ++pos)
288 ThreadSP thread_sp(*pos);
292 for (pos = threads_copy.begin(); pos != end; ++pos)
294 ThreadSP thread_sp(*pos);
319 for (pos
336 collection::iterator pos, end = m_threads.end(); local
385 collection::iterator pos, end = m_threads.end(); local
401 collection::iterator pos, end = m_threads.end(); local
464 collection::iterator pos, end = m_threads.end(); local
476 collection::iterator pos, end = m_threads.end(); local
492 collection::iterator pos, end = m_threads.end(); local
636 collection::iterator pos, end = m_threads.end(); local
651 collection::iterator pos, end = m_threads.end(); local
775 collection::iterator pos, end = m_threads.end(); local
[all...]
/external/wpa_supplicant_8/hostapd/src/eap_common/
H A Deap_gpsk_common.c115 u8 mk[32], *pos, *data; local
143 pos = data;
144 WPA_PUT_BE16(pos, psk_len);
145 pos += 2;
146 os_memcpy(pos, psk, psk_len);
147 pos += psk_len;
148 WPA_PUT_BE32(pos, EAP_GPSK_VENDOR_IETF); /* CSuite/Vendor = IETF */
149 pos += 4;
150 WPA_PUT_BE16(pos, csuite_specifier); /* CSuite/Specifier */
151 pos
286 u8 *seed, *pos; local
347 u8 *pos, *data; local
423 u8 *seed, *pos; local
[all...]
/external/wpa_supplicant_8/src/eap_common/
H A Deap_gpsk_common.c115 u8 mk[32], *pos, *data; local
143 pos = data;
144 WPA_PUT_BE16(pos, psk_len);
145 pos += 2;
146 os_memcpy(pos, psk, psk_len);
147 pos += psk_len;
148 WPA_PUT_BE32(pos, EAP_GPSK_VENDOR_IETF); /* CSuite/Vendor = IETF */
149 pos += 4;
150 WPA_PUT_BE16(pos, csuite_specifier); /* CSuite/Specifier */
151 pos
286 u8 *seed, *pos; local
347 u8 *pos, *data; local
423 u8 *seed, *pos; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/eap_common/
H A Deap_gpsk_common.c115 u8 mk[32], *pos, *data; local
143 pos = data;
144 WPA_PUT_BE16(pos, psk_len);
145 pos += 2;
146 os_memcpy(pos, psk, psk_len);
147 pos += psk_len;
148 WPA_PUT_BE32(pos, EAP_GPSK_VENDOR_IETF); /* CSuite/Vendor = IETF */
149 pos += 4;
150 WPA_PUT_BE16(pos, csuite_specifier); /* CSuite/Specifier */
151 pos
286 u8 *seed, *pos; local
347 u8 *pos, *data; local
423 u8 *seed, *pos; local
[all...]
/external/toybox/toys/pending/
H A Dmdev.c85 char *conf, *pos, *end; local
95 for (pos = conf; pos-conf<len;) {
101 for(end = pos; end-conf<len && *end!='\n'; end++);
106 while (pos<end && isspace(*pos)) pos++;
107 if (pos==end || *pos=='#') break;
108 for (end2 = pos;
[all...]
/external/v8/src/
H A Dharmony-string.js45 var pos = 0;
47 pos = %_Arguments(1); // position
48 pos = ToInteger(pos);
52 var start = MathMin(MathMax(pos, 0), s_len);
75 var pos = s_len;
79 pos = ToInteger(arg);
83 var end = MathMin(MathMax(pos, 0), s_len);
106 var pos = 0;
108 pos
[all...]
/external/wpa_supplicant_8/hostapd/src/common/
H A Dwpa_common.c281 const u8 *end, *pos; local
286 pos = ie + sizeof(struct rsn_ftie);
289 while (pos + 2 <= end && pos + 2 + pos[1] <= end) {
290 switch (pos[0]) {
292 if (pos[1] != FT_R1KH_ID_LEN) {
294 "length in FTIE: %d", pos[1]);
297 parse->r1kh_id = pos + 2;
300 parse->gtk = pos
330 const u8 *end, *pos; local
523 const u8 *pos; local
716 const u8 *pos; local
832 u8 *pos, r0_key_data[48], hash[32]; local
915 u8 *pos; local
941 u8 *pos, hash[32]; local
1441 u8 *pos = start; local
1474 u8 *pos = start; local
1584 char *pos = start; local
[all...]
/external/wpa_supplicant_8/src/common/
H A Dwpa_common.c281 const u8 *end, *pos; local
286 pos = ie + sizeof(struct rsn_ftie);
289 while (pos + 2 <= end && pos + 2 + pos[1] <= end) {
290 switch (pos[0]) {
292 if (pos[1] != FT_R1KH_ID_LEN) {
294 "length in FTIE: %d", pos[1]);
297 parse->r1kh_id = pos + 2;
300 parse->gtk = pos
330 const u8 *end, *pos; local
523 const u8 *pos; local
716 const u8 *pos; local
832 u8 *pos, r0_key_data[48], hash[32]; local
915 u8 *pos; local
941 u8 *pos, hash[32]; local
1441 u8 *pos = start; local
1474 u8 *pos = start; local
1584 char *pos = start; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/common/
H A Dwpa_common.c281 const u8 *end, *pos; local
286 pos = ie + sizeof(struct rsn_ftie);
289 while (pos + 2 <= end && pos + 2 + pos[1] <= end) {
290 switch (pos[0]) {
292 if (pos[1] != FT_R1KH_ID_LEN) {
294 "length in FTIE: %d", pos[1]);
297 parse->r1kh_id = pos + 2;
300 parse->gtk = pos
330 const u8 *end, *pos; local
523 const u8 *pos; local
716 const u8 *pos; local
832 u8 *pos, r0_key_data[48], hash[32]; local
915 u8 *pos; local
941 u8 *pos, hash[32]; local
1441 u8 *pos = start; local
1474 u8 *pos = start; local
1584 char *pos = start; local
[all...]
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dbeacon.c138 u8 *pos = eid; local
191 *pos++ = WLAN_EID_PWR_CONSTRAINT;
193 *pos++ = 1;
196 *pos++ = local_pwr_constraint;
198 *pos++ = hapd->iconf->local_pwr_constraint;
200 return pos;
204 static u8 * hostapd_eid_country_add(u8 *pos, u8 *end, int chan_spacing, argument
208 if (end - pos < 3)
209 return pos;
212 *pos
225 u8 *pos = eid; local
341 hostapd_add_csa_elems(struct hostapd_data *hapd, u8 *pos, u8 *start, unsigned int *csa_counter_off) argument
367 u8 *pos, *epos; local
513 const u8 *pos, *end; local
786 u8 *pos, *tailpos; local
[all...]
/external/wpa_supplicant_8/src/ap/
H A Dbeacon.c138 u8 *pos = eid; local
191 *pos++ = WLAN_EID_PWR_CONSTRAINT;
193 *pos++ = 1;
196 *pos++ = local_pwr_constraint;
198 *pos++ = hapd->iconf->local_pwr_constraint;
200 return pos;
204 static u8 * hostapd_eid_country_add(u8 *pos, u8 *end, int chan_spacing, argument
208 if (end - pos < 3)
209 return pos;
212 *pos
225 u8 *pos = eid; local
341 hostapd_add_csa_elems(struct hostapd_data *hapd, u8 *pos, u8 *start, unsigned int *csa_counter_off) argument
367 u8 *pos, *epos; local
513 const u8 *pos, *end; local
786 u8 *pos, *tailpos; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dbeacon.c138 u8 *pos = eid; local
191 *pos++ = WLAN_EID_PWR_CONSTRAINT;
193 *pos++ = 1;
196 *pos++ = local_pwr_constraint;
198 *pos++ = hapd->iconf->local_pwr_constraint;
200 return pos;
204 static u8 * hostapd_eid_country_add(u8 *pos, u8 *end, int chan_spacing, argument
208 if (end - pos < 3)
209 return pos;
212 *pos
225 u8 *pos = eid; local
341 hostapd_add_csa_elems(struct hostapd_data *hapd, u8 *pos, u8 *start, unsigned int *csa_counter_off) argument
367 u8 *pos, *epos; local
513 const u8 *pos, *end; local
786 u8 *pos, *tailpos; local
[all...]
/external/wpa_supplicant_8/hostapd/
H A Dctrl_iface.c198 char *pos; local
208 pos = os_strchr(timeout_txt, ' ');
209 if (pos) {
210 *pos++ = '\0';
211 if (hwaddr_aton(pos, addr_buf) == 0)
226 char *pos; local
231 for (pos = cmd, len = 0; *pos != '\0'; pos++) {
232 if (*pos < '
267 hostapd_ctrl_iface_wps_nfc_tag_read(struct hostapd_data *hapd, char *pos) argument
376 char *pos; local
415 char *pos, *role, *type, *pos2; local
485 char *pos; local
536 char *pos; local
582 char *pos, *end; local
660 const char *pos; local
713 const char *pos = cmd; local
874 const char *pos, *end; local
1063 char *pos, *end; local
1386 char *pos, *param; local
1472 char *pos; local
1512 const u16 *pos = buf; local
1533 const u8 *pos; local
1562 char *pos; local
1599 char *pos; local
1717 char *pos; local
1753 hostapd_ctrl_iface_chan_switch(struct hostapd_iface *iface, char *pos) argument
1798 char *pos; local
[all...]
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DFCDIterCollationIterator.java41 return pos;
42 } else if(pos == 0) {
77 } else if(state == State.ITER_IN_FCD_SEGMENT && pos != limit) {
79 pos += Character.charCount(c);
83 pos != normalized.length()) {
84 c = normalized.codePointAt(pos);
85 pos += Character.charCount(c);
100 start = pos = 0;
131 } else if(state == State.ITER_IN_FCD_SEGMENT && pos != start) {
133 pos
443 private int pos; field in class:FCDIterCollationIterator
[all...]
/external/harfbuzz_ng/src/
H A Dhb-buffer-deserialize-text.hh340 hb_glyph_position_t pos; local
393 { if (!parse_int (tok, p, &pos.x_offset )) return false; }
397 { if (!parse_int (tok, p, &pos.y_offset )) return false; }
401 { if (!parse_int (tok, p, &pos.x_advance)) return false; }
407 memset (&pos , 0, sizeof (pos ));
427 buffer->pos[buffer->len - 1] = pos;
439 buffer->pos[buffer->len - 1] = pos;
[all...]
/external/icu/icu4c/source/common/
H A Ducharstrieiterator.cpp103 const UChar *pos=pos_; local
104 if(pos==NULL) {
112 pos=uchars_+stack_->elementAti(stackSize-2);
117 pos=branchNext(pos, length, errorCode);
118 if(pos==NULL) {
122 str_.append(*pos++);
131 int32_t node=*pos++;
134 pos=skipNodeValue(pos, nod
184 branchNext(const UChar *pos, int32_t length, UErrorCode &errorCode) argument
[all...]
/external/javassist/src/main/javassist/convert/
H A DTransformNewClass.java46 public int transform(CtClass clazz, int pos, CodeIterator iterator, argument
50 int c = iterator.byteAt(pos);
52 index = iterator.u16bitAt(pos + 1);
54 if (iterator.byteAt(pos + 3) != DUP)
61 iterator.write16bit(newClassIndex, pos + 1);
66 index = iterator.u16bitAt(pos + 1);
75 iterator.write16bit(newMethodIndex, pos + 1);
80 return pos;

Completed in 2190 milliseconds

1234567891011>>