Searched refs:pos (Results 1 - 25 of 3391) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A D2003-08-17-DeadCodeShortCircuit.c3 int test(_Bool pos, _Bool color) { argument
5 return (pos && color);
/external/linux-kselftest/tools/testing/selftests/powerpc/math/
H A Dfpu_asm.S12 #define PUSH_FPU(pos) \
13 stfd f14,pos(sp); \
14 stfd f15,pos+8(sp); \
15 stfd f16,pos+16(sp); \
16 stfd f17,pos+24(sp); \
17 stfd f18,pos+32(sp); \
18 stfd f19,pos+40(sp); \
19 stfd f20,pos+48(sp); \
20 stfd f21,pos+56(sp); \
21 stfd f22,pos
[all...]
/external/icu/icu4c/source/common/
H A Dbytestrie.cpp32 BytesTrie::readValue(const uint8_t *pos, int32_t leadByte) { argument
37 value=((leadByte-kMinTwoByteValueLead)<<8)|*pos;
39 value=((leadByte-kMinThreeByteValueLead)<<16)|(pos[0]<<8)|pos[1];
41 value=(pos[0]<<16)|(pos[1]<<8)|pos[2];
43 value=(pos[0]<<24)|(pos[1]<<16)|(pos[
49 jumpByDelta(const uint8_t *pos) argument
70 const uint8_t *pos=pos_; local
81 branchNext(const uint8_t *pos, int32_t length, int32_t inByte) argument
151 nextImpl(const uint8_t *pos, int32_t inByte) argument
[all...]
H A Ducharstrie.cpp33 const UChar *pos=pos_; local
34 if(pos==NULL) {
38 return (remainingMatchLength_<0 && (node=*pos)>=kMinValueLead) ?
62 UCharsTrie::branchNext(const UChar *pos, int32_t length, int32_t uchar) { argument
65 length=*pos++;
71 if(uchar<*pos++) {
73 pos=jumpByDelta(pos);
76 pos=skipDelta(pos);
124 nextImpl(const UChar *pos, int32_t uchar) argument
156 const UChar *pos=pos_; local
183 const UChar *pos=pos_; local
285 findUniqueValueFromBranch(const UChar *pos, int32_t length, UBool haveUniqueValue, int32_t &uniqueValue) argument
323 findUniqueValue(const UChar *pos, UBool haveUniqueValue, int32_t &uniqueValue) argument
367 const UChar *pos=pos_; local
399 getNextBranchUChars(const UChar *pos, int32_t length, Appendable &out) argument
[all...]
/external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
H A Dlsf_check.c31 int k,n,m, Nit=2, change=0,pos; local
41 pos=m*dim+k;
44 if ((lsf[pos+1]-lsf[pos])<eps) {
46 if (lsf[pos+1]<lsf[pos]) {
47 lsf[pos+1]= lsf[pos]+eps2;
48 lsf[pos]= lsf[pos
[all...]
/external/syslinux/gpxe/src/hci/mucurses/
H A Dcursor.h20 * @v *pos pointer to struct in which original cursor position is stored
22 static inline void _restore_curs_pos ( WINDOW *win, struct cursor_pos *pos ) {
23 wmove ( win, pos->y, pos->x );
30 * @v *pos pointer to struct in which to store cursor position
32 static inline void _store_curs_pos ( WINDOW *win, struct cursor_pos *pos ) {
33 pos->y = win->curs_y;
34 pos->x = win->curs_x;
/external/wpa_supplicant_8/hostapd/src/utils/
H A Duuid.c16 const char *pos; local
19 pos = str;
22 if (hexstr2bin(pos, opos, 4))
24 pos += 8;
27 if (*pos++ != '-' || hexstr2bin(pos, opos, 2))
29 pos += 4;
32 if (*pos++ != '-' || hexstr2bin(pos, opos, 2))
34 pos
[all...]
/external/wpa_supplicant_8/src/utils/
H A Duuid.c16 const char *pos; local
19 pos = str;
22 if (hexstr2bin(pos, opos, 4))
24 pos += 8;
27 if (*pos++ != '-' || hexstr2bin(pos, opos, 2))
29 pos += 4;
32 if (*pos++ != '-' || hexstr2bin(pos, opos, 2))
34 pos
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Duuid.c16 const char *pos; local
19 pos = str;
22 if (hexstr2bin(pos, opos, 4))
24 pos += 8;
27 if (*pos++ != '-' || hexstr2bin(pos, opos, 2))
29 pos += 4;
32 if (*pos++ != '-' || hexstr2bin(pos, opos, 2))
34 pos
[all...]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/
H A DCharCache.java25 private int pos; field in class:CharCache
33 int available = cache.length - pos;
35 System.arraycopy(chars, 0, cache, pos, toWrite);
36 pos += toWrite;
40 return new String(cache, 0, pos);
44 pos = 0;
48 if (pos < cache.length - 1) {
49 cache[pos] = c;
50 pos++;
55 return pos;
[all...]
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
H A DHeaderParser.java21 * Returns the next index in {@code input} at or after {@code pos} that
25 public static int skipUntil(String input, int pos, String characters) { argument
26 for (; pos < input.length(); pos++) {
27 if (characters.indexOf(input.charAt(pos)) != -1) {
31 return pos;
38 public static int skipWhitespace(String input, int pos) { argument
39 for (; pos < input.length(); pos++) {
40 char c = input.charAt(pos);
[all...]
/external/wpa_supplicant_8/hostapd/src/rsn_supp/
H A Dwpa_ie.c45 u8 *pos; local
57 pos = (u8 *) (hdr + 1);
65 RSN_SELECTOR_PUT(pos, suite);
66 pos += WPA_SELECTOR_LEN;
68 *pos++ = 1;
69 *pos++ = 0;
78 RSN_SELECTOR_PUT(pos, suite);
79 pos += WPA_SELECTOR_LEN;
81 *pos++ = 1;
82 *pos
113 u8 *pos; local
250 u8 *pos, *len; local
340 wpa_parse_vendor_specific(const u8 *pos, const u8 *end, struct wpa_eapol_ie_parse *ie) argument
376 wpa_parse_generic(const u8 *pos, const u8 *end, struct wpa_eapol_ie_parse *ie) argument
502 const u8 *pos, *end; local
[all...]
/external/wpa_supplicant_8/src/rsn_supp/
H A Dwpa_ie.c45 u8 *pos; local
57 pos = (u8 *) (hdr + 1);
65 RSN_SELECTOR_PUT(pos, suite);
66 pos += WPA_SELECTOR_LEN;
68 *pos++ = 1;
69 *pos++ = 0;
78 RSN_SELECTOR_PUT(pos, suite);
79 pos += WPA_SELECTOR_LEN;
81 *pos++ = 1;
82 *pos
113 u8 *pos; local
250 u8 *pos, *len; local
340 wpa_parse_vendor_specific(const u8 *pos, const u8 *end, struct wpa_eapol_ie_parse *ie) argument
376 wpa_parse_generic(const u8 *pos, const u8 *end, struct wpa_eapol_ie_parse *ie) argument
502 const u8 *pos, *end; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/rsn_supp/
H A Dwpa_ie.c45 u8 *pos; local
57 pos = (u8 *) (hdr + 1);
65 RSN_SELECTOR_PUT(pos, suite);
66 pos += WPA_SELECTOR_LEN;
68 *pos++ = 1;
69 *pos++ = 0;
78 RSN_SELECTOR_PUT(pos, suite);
79 pos += WPA_SELECTOR_LEN;
81 *pos++ = 1;
82 *pos
113 u8 *pos; local
250 u8 *pos, *len; local
340 wpa_parse_vendor_specific(const u8 *pos, const u8 *end, struct wpa_eapol_ie_parse *ie) argument
376 wpa_parse_generic(const u8 *pos, const u8 *end, struct wpa_eapol_ie_parse *ie) argument
502 const u8 *pos, *end; local
[all...]
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/tls/
H A DDistinguishedNameParser.java29 private int pos; field in class:DistinguishedNameParser
51 for (; pos < length && chars[pos] == ' '; pos++) {
53 if (pos == length) {
58 beg = pos;
61 pos++;
62 for (; pos < length && chars[pos] != '=' && chars[pos] !
[all...]
/external/ltp/utils/ffsb-6.0-rc2/
H A Dlist.h26 #define list_for_each(pos, head) \
27 for (pos = (head)->next; pos->next, pos != (head); pos = pos->next)
38 #define list_for_each_entry(pos, head, member) \
39 for (pos = list_entry((head)->next, typeof(*pos), member); \
40 pos
[all...]
/external/iptables/libiptc/
H A Dlinux_list.h335 * @pos: the &struct list_head to use as a loop counter.
338 #define list_for_each(pos, head) \
339 for (pos = (head)->next, prefetch(pos->next); pos != (head); \
340 pos = pos->next, prefetch(pos->next))
344 * @pos: the &struct list_head to use as a loop counter.
352 #define __list_for_each(pos, hea
[all...]
/external/libnetfilter_conntrack/include/internal/
H A Dlinux_list.h340 * @pos: the &struct list_head to use as a loop counter.
343 #define list_for_each(pos, head) \
344 for (pos = (head)->next, prefetch(pos->next); pos != (head); \
345 pos = pos->next, prefetch(pos->next))
349 * @pos: the &struct list_head to use as a loop counter.
357 #define __list_for_each(pos, hea
[all...]
/external/libnfnetlink/include/
H A Dlinux_list.h339 * @pos: the &struct list_head to use as a loop counter.
342 #define list_for_each(pos, head) \
343 for (pos = (head)->next, prefetch(pos->next); pos != (head); \
344 pos = pos->next, prefetch(pos->next))
348 * @pos: the &struct list_head to use as a loop counter.
356 #define __list_for_each(pos, hea
[all...]
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/xpath/
H A DXMPPathParser.java92 PathPosition pos = new PathPosition();
93 pos.path = path;
97 parseRootNode(schemaNS, pos, expandedXPath);
100 while (pos.stepEnd < path.length())
102 pos.stepBegin = pos.stepEnd;
104 skipPathDelimiter(path, pos);
106 pos.stepEnd = pos.stepBegin;
110 if (path.charAt(pos
172 skipPathDelimiter(String path, PathPosition pos) argument
206 parseStructSegment(PathPosition pos) argument
235 parseIndexSegment(PathPosition pos) argument
335 parseRootNode(String schemaNS, PathPosition pos, XMPPath expandedXPath) argument
[all...]
/external/syslinux/com32/include/linux/
H A Dlist.h267 * @pos: the &struct list_head to use as a loop cursor.
270 #define list_for_each(pos, head) \
271 for (pos = (head)->next; pos != (head); \
272 pos = pos->next)
276 * @pos: the &struct list_head to use as a loop cursor.
284 #define __list_for_each(pos, head) \
285 for (pos = (head)->next; pos !
[all...]
/external/lzma/Java/Tukaani/src/org/tukaani/xz/
H A DSeekableInputStream.java46 long pos = position();
47 if (pos >= size)
50 if (size - pos < n)
51 n = size - pos;
53 seek(pos + n);
75 * @param pos new read position in the stream
77 * @throws IOException if <code>pos</code> is negative or if
80 public abstract void seek(long pos) throws IOException; argument
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
H A DUTF16CollationIterator.java35 pos = p;
44 return (pos - start) == (o.pos - o.start);
56 pos = start + newOffset;
61 return pos - start;
68 pos = p;
74 if(pos == limit) {
77 char c = seq.charAt(pos++);
79 if(Character.isHighSurrogate(c) && pos != limit &&
80 Character.isLowSurrogate(trail = seq.charAt(pos))) {
149 protected int pos; field in class:UTF16CollationIterator
[all...]
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DUTF16CollationIterator.java33 pos = p;
42 return (pos - start) == (o.pos - o.start);
54 pos = start + newOffset;
59 return pos - start;
66 pos = p;
72 if(pos == limit) {
75 char c = seq.charAt(pos++);
77 if(Character.isHighSurrogate(c) && pos != limit &&
78 Character.isLowSurrogate(trail = seq.charAt(pos))) {
147 protected int pos; field in class:UTF16CollationIterator
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/util/
H A DBytesTrie.java82 private int pos; field in class:BytesTrie.State
95 state.pos=pos_;
111 pos_=state.pos;
181 int pos=pos_;
182 if(pos<0) {
186 return (remainingMatchLength_<0 && (node=bytes_[pos]&0xff)>=kMinValueLead) ?
213 int pos=pos_;
214 if(pos<0) {
223 if(inByte==(bytes_[pos++]&0xff)) {
225 pos_=pos;
628 branchNext(int pos, int length) argument
680 readValue(byte[] bytes, int pos, int leadByte) argument
695 skipValue(int pos, int leadByte) argument
708 skipValue(byte[] bytes, int pos) argument
714 jumpByDelta(byte[] bytes, int pos) argument
733 skipDelta(byte[] bytes, int pos) argument
750 branchNext(int pos, int length, int inByte) argument
820 nextImpl(int pos, int inByte) argument
856 findUniqueValueFromBranch(byte[] bytes, int pos, int length, long uniqueValue) argument
896 findUniqueValue(byte[] bytes, int pos, long uniqueValue) argument
931 getNextBranchBytes(byte[] bytes, int pos, int length, Appendable out) argument
[all...]

Completed in 722 milliseconds

1234567891011>>