HomeSort by relevance Sort by last modified time
    Searched refs:pos (Results 1 - 25 of 5932) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
2003-08-17-DeadCodeShortCircuit.c 3 int test(_Bool pos, _Bool color) {
5 return (pos && color);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
break_lines.h 30 int nextBreakablePositionIgnoringNBSP(LazyLineBreakIterator&, int pos);
32 inline bool isBreakable(LazyLineBreakIterator& lazyBreakIterator, int pos, int& nextBreakable)
34 if (pos > nextBreakable)
35 nextBreakable = nextBreakablePositionIgnoringNBSP(lazyBreakIterator, pos);
36 return pos == nextBreakable;
  /external/wpa_supplicant_8/src/rsn_supp/
wpa_ie.c 42 u8 *pos; local
54 pos = (u8 *) (hdr + 1);
62 RSN_SELECTOR_PUT(pos, suite);
63 pos += WPA_SELECTOR_LEN;
65 *pos++ = 1;
66 *pos++ = 0;
75 RSN_SELECTOR_PUT(pos, suite);
76 pos += WPA_SELECTOR_LEN;
78 *pos++ = 1;
79 *pos++ = 0
110 u8 *pos; local
231 u8 *pos, *len; local
483 const u8 *pos, *end; local
    [all...]
  /external/chromium_org/third_party/icu/source/common/
bytestrie.cpp 30 BytesTrie::readValue(const uint8_t *pos, int32_t leadByte) {
35 value=((leadByte-kMinTwoByteValueLead)<<8)|*pos;
37 value=((leadByte-kMinThreeByteValueLead)<<16)|(pos[0]<<8)|pos[1];
39 value=(pos[0]<<16)|(pos[1]<<8)|pos[2];
41 value=(pos[0]<<24)|(pos[1]<<16)|(pos[2]<<8)|pos[3]
68 const uint8_t *pos=pos_; local
    [all...]
ucharstrie.cpp 31 const UChar *pos=pos_; local
32 if(pos==NULL) {
36 return (remainingMatchLength_<0 && (node=*pos)>=kMinValueLead) ?
60 UCharsTrie::branchNext(const UChar *pos, int32_t length, int32_t uchar) {
63 length=*pos++;
69 if(uchar<*pos++) {
71 pos=jumpByDelta(pos);
74 pos=skipDelta(pos);
154 const UChar *pos=pos_; local
181 const UChar *pos=pos_; local
365 const UChar *pos=pos_; local
    [all...]
  /external/icu/icu4c/source/common/
bytestrie.cpp 30 BytesTrie::readValue(const uint8_t *pos, int32_t leadByte) {
35 value=((leadByte-kMinTwoByteValueLead)<<8)|*pos;
37 value=((leadByte-kMinThreeByteValueLead)<<16)|(pos[0]<<8)|pos[1];
39 value=(pos[0]<<16)|(pos[1]<<8)|pos[2];
41 value=(pos[0]<<24)|(pos[1]<<16)|(pos[2]<<8)|pos[3]
68 const uint8_t *pos=pos_; local
    [all...]
ucharstrie.cpp 31 const UChar *pos=pos_; local
32 if(pos==NULL) {
36 return (remainingMatchLength_<0 && (node=*pos)>=kMinValueLead) ?
60 UCharsTrie::branchNext(const UChar *pos, int32_t length, int32_t uchar) {
63 length=*pos++;
69 if(uchar<*pos++) {
71 pos=jumpByDelta(pos);
74 pos=skipDelta(pos);
154 const UChar *pos=pos_; local
181 const UChar *pos=pos_; local
365 const UChar *pos=pos_; local
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/asm/signature/
SignatureReader.java 74 int pos; local
78 pos = 2;
80 int end = signature.indexOf(':', pos);
81 v.visitFormalTypeParameter(signature.substring(pos - 1, end));
82 pos = end + 1;
84 c = signature.charAt(pos);
86 pos = parseType(signature, pos, v.visitClassBound());
89 while ((c = signature.charAt(pos++)) == ':') {
90 pos = parseType(signature, pos, v.visitInterfaceBound());
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
lsf_check.c 31 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+1]-eps2
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/structure/v4/
ver4_patricia_trie_reading_utils.cpp 24 const uint8_t *const buffer, int *pos) {
25 return ByteArrayUtils::readUint32AndAdvancePosition(buffer, pos);
  /libcore/luni/src/main/java/javax/net/ssl/
DistinguishedNameParser.java 34 private int pos; field in class:DistinguishedNameParser
56 for (; pos < length && chars[pos] == ' '; pos++) {
58 if (pos == length) {
63 beg = pos;
66 pos++;
67 for (; pos < length && chars[pos] != '=' && chars[pos] != ' '; pos++)
    [all...]
  /external/wpa_supplicant_8/src/utils/
uuid.c 16 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 += 4
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/
CharCache.java 25 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/
HeaderParser.java 21 * Returns the next index in {@code input} at or after {@code pos} that
25 public static int skipUntil(String input, int pos, String characters) {
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) {
39 for (; pos < input.length(); pos++) {
40 char c = input.charAt(pos);
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/tls/
DistinguishedNameParser.java 29 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] != ' '; pos++)
    [all...]
  /external/chromium_org/net/filter/
gzip_header.cc 32 const uint8* pos = reinterpret_cast<const uint8*>(inbuf); local
33 const uint8* const end = pos + inbuf_len;
35 while ( pos < end ) {
38 if ( *pos != magic[0] ) return INVALID_HEADER;
39 pos++;
43 if ( *pos != magic[1] ) return INVALID_HEADER;
44 pos++;
48 if ( *pos != Z_DEFLATED ) return INVALID_HEADER;
49 pos++;
53 flags_ = (*pos) & (FLAG_FHCRC | FLAG_FEXTRA
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
DNParser.java 46 private int pos; field in class:DNParser
74 for (; pos < chars.length && chars[pos] == ' '; pos++) {
76 if (pos == chars.length) {
81 beg = pos;
84 pos++;
85 for (; pos < chars.length && chars[pos] != '=' && chars[pos] != ' '; pos++)
    [all...]
  /external/chromium_org/net/websockets/
websocket_net_log_params.cc 20 size_t pos = 0; local
21 while (pos <= headers_size) {
22 if (pos == headers_size ||
23 ((*headers)[pos] == '\r' &&
24 pos + 1 < headers_size && (*headers)[pos + 1] == '\n')) {
25 std::string entry = headers->substr(last, pos - last);
26 pos += 2;
27 last = pos;
34 for (; pos < headers_size; ++pos)
    [all...]
  /external/iptables/libiptc/
linux_list.h 335 * @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, head)
    [all...]
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/xpath/
XMPPathParser.java 92 PathPosition pos = new PathPosition(); local
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.stepBegin) != '['
    [all...]
  /external/chromium_org/third_party/brotli/src/brotli/enc/
write_bits.h 52 int * __restrict pos,
55 printf("WriteBits %2d 0x%016llx %10d\n", n_bits, bits, *pos);
63 uint8_t *p = &array[*pos >> 3];
65 v |= bits << (*pos & 7);
67 *pos += n_bits;
70 uint8_t *array_pos = &array[*pos >> 3];
71 const int bits_reserved_in_first_byte = (*pos & 7);
81 *pos += n_bits;
85 inline void WriteBitsPrepareStorage(int pos, uint8_t *array) {
87 printf("WriteBitsPrepareStorage %10d\n", pos);
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/policy/
dictionary_shortcuts_structure_policy.h 31 virtual int getStartPos(const int pos) const = 0;
35 int *const pos) const = 0;
37 virtual void skipAllShortcuts(int *const pos) const = 0;
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/socket/
inet_pton.c 22 const char* pos = src; local
30 if (isspace((int)(*pos)))
33 unsigned long value = strtoul(pos, &end_pos, 10);
34 if (value > 255 || pos == end_pos)
37 pos = end_pos;
40 if (*pos != '.')
42 ++pos;
45 if (*pos != '\0')
55 const char* pos = src; local
56 while (*pos != '\0')
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
fgetpos.c 40 fgetpos(FILE *fp, fpos_t *pos)
42 return((*pos = ftello(fp)) == (fpos_t)-1);
fsetpos.c 40 fsetpos(FILE *iop, const fpos_t *pos)
42 return (fseeko(iop, (off_t)*pos, SEEK_SET));

Completed in 2236 milliseconds

1 2 3 4 5 6 7 8 91011>>