Searched refs:pos (Results 51 - 75 of 3391) sorted by relevance

1234567891011>>

/external/f2fs-tools/include/
H A Dlist.h74 #define list_for_each(pos, head) \
75 for (pos = (head)->next; pos != (head); pos = pos->next)
77 #define list_for_each_safe(pos, n, head) \
78 for (pos = (head)->next, n = pos->next; pos != (head); \
79 pos
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DUtilityExtensions.java58 Transliterator.Position pos) {
60 formatInput(appendTo, input, pos);
71 Transliterator.Position pos) {
72 if (0 <= pos.contextStart &&
73 pos.contextStart <= pos.start &&
74 pos.start <= pos.limit &&
75 pos.limit <= pos
57 formatInput(ReplaceableString input, Transliterator.Position pos) argument
69 formatInput(StringBuffer appendTo, ReplaceableString input, Transliterator.Position pos) argument
102 formatInput(Replaceable input, Transliterator.Position pos) argument
110 formatInput(StringBuffer appendTo, Replaceable input, Transliterator.Position pos) argument
[all...]
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/impl/
H A DUtilityExtensions.java56 Transliterator.Position pos) {
58 formatInput(appendTo, input, pos);
69 Transliterator.Position pos) {
70 if (0 <= pos.contextStart &&
71 pos.contextStart <= pos.start &&
72 pos.start <= pos.limit &&
73 pos.limit <= pos
55 formatInput(ReplaceableString input, Transliterator.Position pos) argument
67 formatInput(StringBuffer appendTo, ReplaceableString input, Transliterator.Position pos) argument
100 formatInput(Replaceable input, Transliterator.Position pos) argument
108 formatInput(StringBuffer appendTo, Replaceable input, Transliterator.Position pos) argument
[all...]
/external/javasqlite/src/main/java/SQLite/
H A DBlob.java22 private int pos; field in class:BlobR
30 this.pos = 0;
39 int ret = blob.size - pos;
73 pos = 0;
81 long ret = pos + n;
84 pos = 0;
87 pos = blob.size;
89 pos = (int) ret;
101 int n = blob.read(b, 0, pos, b.length);
103 pos
168 private int pos; field in class:BlobW
295 write(byte[] b, int off, int pos, int len) argument
306 read(byte[] b, int off, int pos, int len) argument
[all...]
/external/selinux/libsepol/cil/src/
H A Dcil_stack.h36 int pos; member in struct:cil_stack
44 #define cil_stack_for_each_starting_at(stack, start, pos, item) \
45 for (pos = start, item = cil_stack_peek_at(stack, pos); item != NULL; pos++, item = cil_stack_peek_at(stack, pos))
47 #define cil_stack_for_each(stack, pos, item) cil_stack_for_each_starting_at(stack, 0, pos, item)
59 struct cil_stack_item *cil_stack_peek_at(struct cil_stack *stack, int pos);
/external/compiler-rt/test/tsan/
H A Dsignal_sync2.cc28 int pos = signals_handled++; local
29 if (pos >= kSignalCount)
31 data[pos] = pos;
32 __atomic_store_n(&ready[pos], 1, __ATOMIC_RELEASE);
62 for (int pos = 0; pos < kSignalCount; pos++) {
63 while (__atomic_load_n(&ready[pos], __ATOMIC_ACQUIRE) == 0) {
65 if (data[pos] !
[all...]
/external/guava/guava/src/com/google/common/io/
H A DLineBuffer.java51 int pos = off;
54 if (finishLine(cbuf[pos] == '\n')) {
55 pos++;
59 int start = pos;
60 for (int end = off + len; pos < end; pos++) {
61 switch (cbuf[pos]) {
63 line.append(cbuf, start, pos - start);
65 if (pos + 1 < end) {
66 if (finishLine(cbuf[pos
[all...]
/external/v8/src/inspector/
H A Dsearch-util.cc22 size_t pos = length; local
26 pos = content.reverseFind(name, pos);
27 if (pos == String16::kNotFound) return String16();
30 if (pos < 4) return String16();
31 pos -= 4;
32 if (content[pos] != '/') continue;
33 if ((content[pos + 1] != '/' || multiline) &&
34 (content[pos + 1] != '*' || !multiline))
36 if (content[pos
[all...]
/external/icu/icu4c/source/i18n/
H A Dutf16collationiterator.cpp34 pos(newText + (other.pos - other.start)),
45 return (pos - start) == (o.pos - o.start);
51 pos = start + newOffset;
56 return (int32_t)(pos - start);
61 if(pos == limit) {
65 c = *pos++;
71 if(pos == limit) { return 0; }
73 if(U16_IS_TRAIL(trail = *pos)) {
[all...]
/external/libdrm/
H A Dutil_double_list.h110 #define LIST_FOR_EACH_ENTRY(pos, head, member) \
111 for (pos = container_of((head)->next, pos, member); \
112 &pos->member != (head); \
113 pos = container_of(pos->member.next, pos, member))
115 #define LIST_FOR_EACH_ENTRY_SAFE(pos, storage, head, member) \
116 for (pos = container_of((head)->next, pos, membe
[all...]
/external/javassist/src/main/javassist/bytecode/
H A DAnnotationsAttribute.java318 void parameters(int numParam, int pos) throws Exception { argument
320 pos = annotationArray(pos);
327 final int annotationArray(int pos) throws Exception { argument
328 int num = ByteArray.readU16bit(info, pos);
329 return annotationArray(pos + 2, num);
332 int annotationArray(int pos, int num) throws Exception { argument
334 pos = annotation(pos);
336 return pos;
339 annotation(int pos) argument
345 annotation(int pos, int type, int numPairs) argument
352 memberValuePair(int pos) argument
357 memberValuePair(int pos, int nameIndex) argument
361 memberValue(int pos) argument
389 enumMemberValue(int pos, int typeNameIndex, int constNameIndex) argument
393 classMemberValue(int pos, int index) argument
395 annotationMemberValue(int pos) argument
399 arrayMemberValue(int pos, int num) argument
427 annotation(int pos, int type, int numPairs) argument
432 enumMemberValue(int pos, int typeNameIndex, int constNameIndex) argument
439 classMemberValue(int pos, int index) argument
444 renameType(int pos, int index) argument
485 parameters(int numParam, int pos) argument
490 annotationArray(int pos, int num) argument
495 annotation(int pos, int type, int numPairs) argument
500 memberValuePair(int pos, int nameIndex) argument
510 enumMemberValue(int pos, int typeNameIndex, int constNameIndex) argument
517 classMemberValue(int pos, int index) argument
522 annotationMemberValue(int pos) argument
527 arrayMemberValue(int pos, int num) argument
596 parameters(int numParam, int pos) argument
606 annotationArray(int pos, int num) argument
617 annotation(int pos, int type, int numPairs) argument
622 memberValuePair(int pos, int nameIndex) argument
667 enumMemberValue(int pos, int typeNameIndex, int constNameIndex) argument
675 classMemberValue(int pos, int index) argument
680 annotationMemberValue(int pos) argument
688 arrayMemberValue(int pos, int num) argument
[all...]
/external/pdfium/xfa/fxbarcode/datamatrix/
H A DBC_DefaultPlacement.cpp59 int32_t pos = 0; local
64 corner1(pos++);
67 corner2(pos++);
70 corner3(pos++);
73 corner4(pos++);
77 utah(row, col, pos++);
86 utah(row, col, pos++);
101 int32_t pos,
111 int32_t v = m_codewords.GetAt(pos);
115 void CBC_DefaultPlacement::utah(int32_t row, int32_t col, int32_t pos) { argument
99 module(int32_t row, int32_t col, int32_t pos, int32_t bit) argument
125 corner1(int32_t pos) argument
135 corner2(int32_t pos) argument
145 corner3(int32_t pos) argument
155 corner4(int32_t pos) argument
[all...]
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dbase64.c32 unsigned char *out, *pos; local
48 pos = out;
51 *pos++ = base64_table[(in[0] >> 2) & 0x3f];
52 *pos++ = base64_table[(((in[0] & 0x03) << 4) |
54 *pos++ = base64_table[(((in[1] & 0x0f) << 2) |
56 *pos++ = base64_table[in[2] & 0x3f];
60 *pos++ = '\n';
66 *pos++ = base64_table[(in[0] >> 2) & 0x3f];
68 *pos++ = base64_table[((in[0] & 0x03) << 4) & 0x3f];
69 *pos
102 unsigned char dtable[256], *out, *pos, block[4], tmp; local
[all...]
/external/wpa_supplicant_8/src/utils/
H A Dbase64.c32 unsigned char *out, *pos; local
48 pos = out;
51 *pos++ = base64_table[(in[0] >> 2) & 0x3f];
52 *pos++ = base64_table[(((in[0] & 0x03) << 4) |
54 *pos++ = base64_table[(((in[1] & 0x0f) << 2) |
56 *pos++ = base64_table[in[2] & 0x3f];
60 *pos++ = '\n';
66 *pos++ = base64_table[(in[0] >> 2) & 0x3f];
68 *pos++ = base64_table[((in[0] & 0x03) << 4) & 0x3f];
69 *pos
102 unsigned char dtable[256], *out, *pos, block[4], tmp; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dbase64.c32 unsigned char *out, *pos; local
48 pos = out;
51 *pos++ = base64_table[(in[0] >> 2) & 0x3f];
52 *pos++ = base64_table[(((in[0] & 0x03) << 4) |
54 *pos++ = base64_table[(((in[1] & 0x0f) << 2) |
56 *pos++ = base64_table[in[2] & 0x3f];
60 *pos++ = '\n';
66 *pos++ = base64_table[(in[0] >> 2) & 0x3f];
68 *pos++ = base64_table[((in[0] & 0x03) << 4) & 0x3f];
69 *pos
102 unsigned char dtable[256], *out, *pos, block[4], tmp; local
[all...]
/external/nanopb-c/generator/google/protobuf/internal/
H A Ddecoder.py36 Decode(buffer, pos, end, message, field_dict)
39 pos: The current position in the string.
53 Decoders are expected to raise an exception if they are called with pos > end.
112 def DecodeVarint(buffer, pos):
116 b = local_ord(buffer[pos])
118 pos += 1
121 return (result, pos)
132 def DecodeVarint(buffer, pos):
136 b = local_ord(buffer[pos])
138 pos
[all...]
/external/llvm/tools/llvm-c-test/
H A Ddisassemble.c23 static void pprint(int pos, unsigned char *buf, int len, const char *disasm) { argument
25 printf("%04x: ", pos);
42 int pos; local
49 pos = 0;
50 while (pos < siz) {
51 size_t l = LLVMDisasmInstruction(D, buf + pos, siz - pos, 0, outline,
54 pprint(pos, buf + pos, 1, "\t???");
55 pos
[all...]
/external/ltp/tools/top-LTP/proc/
H A Dwhattime.c34 int pos; local
44 pos = sprintf(buf, " %02d:%02d:%02d ",
53 pos += 3;
55 pos +=
56 sprintf(buf + pos, "%d day%s, ", updays,
63 pos += sprintf(buf + pos, "%2d:%02d, ", uphours, upminutes);
65 pos += sprintf(buf + pos, "%d min, ", upminutes);
78 pos
[all...]
/external/protobuf/src/google/protobuf/stubs/
H A Dstringpiece.cc50 StringPiece::StringPiece(StringPiece x, stringpiece_ssize_type pos) argument
51 : ptr_(x.ptr_ + pos), length_(x.length_ - pos) {
52 GOOGLE_DCHECK_LE(0, pos);
53 GOOGLE_DCHECK_LE(pos, x.length_);
57 stringpiece_ssize_type pos,
59 : ptr_(x.ptr_ + pos), length_(std::min(len, x.length_ - pos)) {
60 GOOGLE_DCHECK_LE(0, pos);
61 GOOGLE_DCHECK_LE(pos,
56 StringPiece(StringPiece x, stringpiece_ssize_type pos, stringpiece_ssize_type len) argument
259 substr(size_type pos, size_type n) const argument
[all...]
/external/wpa_supplicant_8/hostapd/src/wps/
H A Dwps_attr_parse.c21 u8 id, u8 len, const u8 *pos)
32 attr->version2 = pos;
35 attr->authorized_macs = pos;
44 attr->network_key_shareable = pos;
52 attr->request_to_enroll = pos;
60 attr->settings_delay_time = pos;
68 attr->registrar_configuration_methods = pos;
80 static int wps_parse_vendor_ext_wfa(struct wps_parse_attr *attr, const u8 *pos, argument
83 const u8 *end = pos + len;
86 while (end - pos >
20 wps_set_vendor_ext_wfa_subelem(struct wps_parse_attr *attr, u8 id, u8 len, const u8 *pos) argument
100 wps_parse_vendor_ext(struct wps_parse_attr *attr, const u8 *pos, u16 len) argument
141 wps_set_attr(struct wps_parse_attr *attr, u16 type, const u8 *pos, u16 len) argument
587 const u8 *pos, *end; local
[all...]
/external/wpa_supplicant_8/src/wps/
H A Dwps_attr_parse.c21 u8 id, u8 len, const u8 *pos)
32 attr->version2 = pos;
35 attr->authorized_macs = pos;
44 attr->network_key_shareable = pos;
52 attr->request_to_enroll = pos;
60 attr->settings_delay_time = pos;
68 attr->registrar_configuration_methods = pos;
80 static int wps_parse_vendor_ext_wfa(struct wps_parse_attr *attr, const u8 *pos, argument
83 const u8 *end = pos + len;
86 while (end - pos >
20 wps_set_vendor_ext_wfa_subelem(struct wps_parse_attr *attr, u8 id, u8 len, const u8 *pos) argument
100 wps_parse_vendor_ext(struct wps_parse_attr *attr, const u8 *pos, u16 len) argument
141 wps_set_attr(struct wps_parse_attr *attr, u16 type, const u8 *pos, u16 len) argument
587 const u8 *pos, *end; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/wps/
H A Dwps_attr_parse.c21 u8 id, u8 len, const u8 *pos)
32 attr->version2 = pos;
35 attr->authorized_macs = pos;
44 attr->network_key_shareable = pos;
52 attr->request_to_enroll = pos;
60 attr->settings_delay_time = pos;
68 attr->registrar_configuration_methods = pos;
80 static int wps_parse_vendor_ext_wfa(struct wps_parse_attr *attr, const u8 *pos, argument
83 const u8 *end = pos + len;
86 while (end - pos >
20 wps_set_vendor_ext_wfa_subelem(struct wps_parse_attr *attr, u8 id, u8 len, const u8 *pos) argument
100 wps_parse_vendor_ext(struct wps_parse_attr *attr, const u8 *pos, u16 len) argument
141 wps_set_attr(struct wps_parse_attr *attr, u16 type, const u8 *pos, u16 len) argument
587 const u8 *pos, *end; local
[all...]
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_StringReader.java28 private int pos = 0; field in class:Support_StringReader
79 markpos = pos;
114 if (pos != count) {
115 return str.charAt(pos++);
142 if (pos == this.count) {
145 int end = pos + count > this.count ? this.count : pos
147 str.getChars(pos, end, buf, offset);
148 int read = end - pos;
149 pos
[all...]
/external/icu/icu4c/source/common/
H A Dchariter.cpp24 : textLength(0), pos(0), begin(0), end(0) {
28 : textLength(length), pos(0), begin(0), end(length) {
35 : textLength(length), pos(position), begin(0), end(length) {
39 if(pos < 0) {
40 pos = 0;
41 } else if(pos > end) {
42 pos = end;
47 : textLength(length), pos(position), begin(textBegin), end(textEnd) {
61 if(pos < begin) {
62 pos
[all...]
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dieee802_11_he.c23 u8 *pos = eid; local
33 *pos++ = WLAN_EID_VENDOR_SPECIFIC;
34 *pos++ = 4 /* The Vendor OUI, subtype */ +
37 WPA_PUT_BE32(pos, (OUI_QCA << 8) | QCA_VENDOR_ELEM_HE_CAPAB);
38 pos += 4;
39 cap = (struct ieee80211_he_capabilities *) pos;
54 pos += sizeof(*cap);
56 return pos;
63 u8 *pos = eid; local
73 *pos
[all...]

Completed in 745 milliseconds

1234567891011>>