HomeSort by relevance Sort by last modified time
    Searched refs:pos (Results 401 - 425 of 4804) sorted by null

<<11121314151617181920>>

  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/linux/
plist.h 35 #define plist_for_each(pos, head) list_for_each_entry(pos, &(head)->node_list, plist.node_list)
37 #define plist_for_each_safe(pos, n, head) list_for_each_entry_safe(pos, n, &(head)->node_list, plist.node_list)
39 #define plist_for_each_entry(pos, head, mem) list_for_each_entry(pos, &(head)->node_list, mem.plist.node_list)
41 #define plist_for_each_entry_safe(pos, n, head, m) list_for_each_entry_safe(pos, n, &(head)->node_list, m.plist.node_list)
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/linux/
plist.h 35 #define plist_for_each(pos, head) list_for_each_entry(pos, &(head)->node_list, plist.node_list)
37 #define plist_for_each_safe(pos, n, head) list_for_each_entry_safe(pos, n, &(head)->node_list, plist.node_list)
39 #define plist_for_each_entry(pos, head, mem) list_for_each_entry(pos, &(head)->node_list, mem.plist.node_list)
41 #define plist_for_each_entry_safe(pos, n, head, m) list_for_each_entry_safe(pos, n, &(head)->node_list, m.plist.node_list)
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/
plist.h 35 #define plist_for_each(pos, head) list_for_each_entry(pos, &(head)->node_list, plist.node_list)
37 #define plist_for_each_safe(pos, n, head) list_for_each_entry_safe(pos, n, &(head)->node_list, plist.node_list)
39 #define plist_for_each_entry(pos, head, mem) list_for_each_entry(pos, &(head)->node_list, mem.plist.node_list)
41 #define plist_for_each_entry_safe(pos, n, head, m) list_for_each_entry_safe(pos, n, &(head)->node_list, m.plist.node_list)
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/gp_hash_table_map_/
erase_fn_imps.hpp 59 for (size_type pos = 0; pos < m_num_e; ++pos)
61 entry_pointer p_e = &m_entries[pos];
77 for (size_type pos = 0; pos < m_num_e; ++pos)
79 entry_pointer p_e = &m_entries[pos];
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/gp_hash_table_map_/
erase_fn_imps.hpp 59 for (size_type pos = 0; pos < m_num_e; ++pos)
61 entry_pointer p_e = &m_entries[pos];
77 for (size_type pos = 0; pos < m_num_e; ++pos)
79 entry_pointer p_e = &m_entries[pos];
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/pb_ds/detail/gp_hash_table_map_/
erase_fn_imps.hpp 59 for (size_type pos = 0; pos < m_num_e; ++pos)
61 entry_pointer p_e = &m_entries[pos];
77 for (size_type pos = 0; pos < m_num_e; ++pos)
79 entry_pointer p_e = &m_entries[pos];
  /sdk/emulator/opengl/host/tools/emugen/
strUtils.cpp 21 std::string getNextToken(const std::string & str, size_t pos, size_t * last, const std::string & delim)
23 if (str.size() == 0 || pos >= str.size()) return "";
25 pos = str.find_first_not_of(WHITESPACE, pos);
26 if (pos == std::string::npos) return "";
28 *last = str.find_first_of(delim, pos);
30 std::string retval = str.substr(pos, *last - pos);
EntryPoint.cpp 43 size_t pos = 0, last; local
54 std::string str = getNextToken(f, pos, &last, WHITESPACE);
60 pos = last;
66 pos = last;
74 pos = last;
97 size_t pos, last; local
108 pos = last + 1;
110 field = getNextToken(linestr, pos, &last, ",)");
116 pos = last + 1;
125 m_name = getNextToken(linestr, pos, &last, ",)")
207 size_t pos = 0; local
    [all...]
  /device/asus/flo/camera/QCamera2/stack/mm-jpeg-interface/src/
mm_jpeg_queue.c 68 struct cam_list *pos = NULL; local
72 pos = head->next;
73 if (pos != head) {
74 node = member_of(pos, mm_jpeg_q_node_t, list);
112 struct cam_list *pos = NULL; local
116 pos = head->next;
118 while(pos != head) {
119 node = member_of(pos, mm_jpeg_q_node_t, list);
129 pos = pos->next
141 struct cam_list *pos = NULL; local
    [all...]
  /hardware/qcom/camera/QCamera2/stack/mm-jpeg-interface/src/
mm_jpeg_queue.c 68 struct cam_list *pos = NULL; local
72 pos = head->next;
73 if (pos != head) {
74 node = member_of(pos, mm_jpeg_q_node_t, list);
112 struct cam_list *pos = NULL; local
116 pos = head->next;
118 while(pos != head) {
119 node = member_of(pos, mm_jpeg_q_node_t, list);
129 pos = pos->next
141 struct cam_list *pos = NULL; local
    [all...]
  /art/runtime/base/
stringpiece.cc 28 int StringPiece::copy(char* buf, size_type n, size_type pos) const {
29 int ret = std::min(length_ - pos, n);
30 memcpy(buf, ptr_ + pos, ret);
34 StringPiece::size_type StringPiece::find(const StringPiece& s, size_type pos) const {
35 if (length_ < 0 || pos > static_cast<size_type>(length_))
38 const char* result = std::search(ptr_ + pos, ptr_ + length_,
53 StringPiece::size_type StringPiece::find(char c, size_type pos) const {
54 if (length_ <= 0 || pos >= static_cast<size_type>(length_)) {
57 const char* result = std::find(ptr_ + pos, ptr_ + length_, c);
61 StringPiece::size_type StringPiece::rfind(const StringPiece& s, size_type pos) const
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
versionparsing.cc 37 size_t pos = 0; local
39 size_t dot_pos = version_str.find('.', pos);
45 n = dot_pos - pos;
48 version[i] = atoi(version_str.substr(pos, n).c_str());
57 pos = dot_pos + 1;
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HttpAuthenticator.java 137 int pos = 0; local
138 while (pos < value.length()) {
139 int tokenStart = pos;
140 pos = HeaderParser.skipUntil(value, pos, " ");
142 String scheme = value.substring(tokenStart, pos).trim();
143 pos = HeaderParser.skipWhitespace(value, pos);
149 if (!value.regionMatches(true, pos, "realm=\"", 0, "realm=\"".length())) {
153 pos += "realm=\"".length()
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
d3_14pf.cpp 165 Word16 pos[NB_PULSE]; local
171 pos[0] = i * 5;
185 pos[1] = i * 5 + j * 2 + 1;
199 pos[2] = i * 5 + j * 2 + 2;
218 * cod[pos[j]] = 8191;
222 * cod[pos[j]] = -8192;
226 cod[pos[j]] = i * 16383 - 8192;
  /frameworks/base/core/java/android/widget/
AlphabetIndexer.java 167 int pos; local
173 if (Integer.MIN_VALUE != (pos = alphaMap.get(key, Integer.MIN_VALUE))) {
177 if (pos < 0) {
178 pos = -pos;
179 end = pos;
182 return pos;
198 pos = (end + start) / 2;
200 while (pos < end) {
201 // Get letter at pos
    [all...]
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
RoundRobinScheduler.java 45 int pos = 0; local
50 if (pos <= mLastPos) {
54 firstNdx = pos;
58 mLastPos = pos;
62 pos ++;
  /external/icu4c/common/unicode/
bytestrie.h 111 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_t length, UErrorCode &errorCode)
    [all...]
  /external/wpa_supplicant_8/src/p2p/
p2p_sd.c 21 const u8 *pos, *end; local
28 pos = wpabuf_head(wfd);
29 end = pos + wpabuf_len(wfd);
31 while (pos + 3 <= end) {
32 subelem = *pos++;
33 len = WPA_GET_BE16(pos);
34 pos += 2;
35 if (pos + len > end)
39 u16 info = WPA_GET_BE16(pos);
43 pos += len
274 const u8 *pos = data; local
424 const u8 *pos = data; local
    [all...]
  /libcore/luni/src/main/java/java/io/
BufferedInputStream.java 63 protected int pos; field in class:BufferedInputStream
114 return count - pos + localIn.available();
140 if (markpos == -1 || (pos - markpos >= marklimit)) {
145 pos = 0;
166 pos -= markpos;
168 int bytesread = localIn.read(localBuf, pos, localBuf.length - pos);
169 count = bytesread <= 0 ? pos : pos + bytesread;
189 markpos = pos;
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_print.cpp 284 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 = 0 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/
nv50_ir_print.cpp 284 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 = 0 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...]
  /device/asus/flo/camera/QCamera2/stack/common/
cam_queue.h 75 struct cam_list *pos = NULL; local
79 pos = head->next;
80 if (pos != head) {
81 node = member_of(pos, cam_node_t, list);
99 struct cam_list *pos = NULL; local
103 pos = head->next;
105 while(pos != head) {
106 node = member_of(pos, cam_node_t, list);
107 pos = pos->next
    [all...]
  /external/chromium_org/v8/src/
func-name-inferrer.cc 76 Handle<String> FuncNameInferrer::MakeNameFromStackHelper(int pos,
78 if (pos >= names_stack_.length()) return prev;
79 if (pos < names_stack_.length() - 1 &&
80 names_stack_.at(pos).type == kVariableName &&
81 names_stack_.at(pos + 1).type == kVariableName) {
83 return MakeNameFromStackHelper(pos + 1, prev);
88 factory->dot_string(), names_stack_.at(pos).name);
89 return MakeNameFromStackHelper(pos + 1,
92 return MakeNameFromStackHelper(pos + 1, names_stack_.at(pos).name)
    [all...]
  /external/svox/pico/lib/
picokfst.c 78 /* 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)
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)
101 val = (val << 8) + (picoos_uint32)stream[*pos];
102 (*pos)++
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/v8/src/
func-name-inferrer.cc 75 Handle<String> FuncNameInferrer::MakeNameFromStackHelper(int pos,
77 if (pos >= names_stack_.length()) return prev;
78 if (pos < names_stack_.length() - 1 &&
79 names_stack_.at(pos).type == kVariableName &&
80 names_stack_.at(pos + 1).type == kVariableName) {
82 return MakeNameFromStackHelper(pos + 1, prev);
87 factory->dot_symbol(), names_stack_.at(pos).name);
88 return MakeNameFromStackHelper(pos + 1,
91 return MakeNameFromStackHelper(pos + 1, names_stack_.at(pos).name)
    [all...]

Completed in 2238 milliseconds

<<11121314151617181920>>