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

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
ftell.c 60 fpos_t pos; local
76 pos = fp->_offset;
78 pos = (*fp->_seek)(fp->_cookie, (fpos_t)0, SEEK_CUR);
79 if (pos == -1L) {
81 return (long)(pos);
90 pos -= fp->_r;
92 pos -= fp->_ur;
99 pos += fp->_p - fp->_bf._base;
102 return (long)(pos);
ftello.c 57 fpos_t pos; local
73 pos = fp->_offset;
75 pos = (*fp->_seek)(fp->_cookie, (fpos_t)0, SEEK_CUR);
76 if (pos == (fpos_t)-1) {
78 return (pos);
87 pos -= fp->_r;
89 pos -= fp->_ur;
96 pos += fp->_p - fp->_bf._base;
99 return (pos);
  /external/syslinux/gpxe/src/hci/mucurses/
print_nadv.c 20 struct cursor_pos pos; local
22 _store_curs_pos( win, &pos );
24 _restore_curs_pos( win, &pos );
  /external/adhd/cras/src/tests/
utf8_unittest.cc 18 size_t pos; local
22 "\xbc\xce\xb5", &pos));
23 EXPECT_EQ(35, pos);
25 EXPECT_EQ(1, valid_utf8_string("Playback", &pos));
26 EXPECT_EQ(8, pos);
28 EXPECT_EQ(1, valid_utf8_string("The Euro sign: \xe2\x82\xac", &pos));
29 EXPECT_EQ(18, pos);
32 EXPECT_EQ(1, valid_utf8_string("\x01", &pos));
33 EXPECT_EQ(1, pos);
34 EXPECT_EQ(1, valid_utf8_string("\xc2\x80", &pos));
80 size_t pos; local
    [all...]
  /external/icu/icu4c/source/i18n/
msgfmt_impl.h 37 int32_t pos; member in class:FormatNameEnumeration
numsys_impl.h 39 int32_t pos; member in class:NumsysNameEnumeration
region_impl.h 37 int32_t pos; member in class:RegionNameEnumeration
  /external/python/cpython3/Objects/stringlib/
partition.h 14 Py_ssize_t pos; local
25 pos = FASTSEARCH(str, str_len, sep, sep_len, -1, FAST_SEARCH);
27 if (pos < 0) {
48 PyTuple_SET_ITEM(out, 0, STRINGLIB_NEW(str, pos));
51 pos += sep_len;
52 PyTuple_SET_ITEM(out, 2, STRINGLIB_NEW(str + pos, str_len - pos));
69 Py_ssize_t pos; local
80 pos = FASTSEARCH(str, str_len, sep, sep_len, -1, FAST_RSEARCH);
82 if (pos < 0)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/cc_hash_table_map_/
insert_no_store_hash_fn_imps.hpp 49 const size_type pos = ranged_hash_fn_base::operator()(r_key); local
50 entry_pointer p_e = m_entries[pos];
68 return std::make_pair(insert_new_imp(r_val, pos), true);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/cc_hash_table_map_/
insert_no_store_hash_fn_imps.hpp 49 const size_type pos = ranged_hash_fn_base::operator()(r_key); local
50 entry_pointer p_e = m_entries[pos];
68 return std::make_pair(insert_new_imp(r_val, pos), true);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/stringlib/
partition.h 17 Py_ssize_t pos; local
28 pos = fastsearch(str, str_len, sep, sep_len, -1, FAST_SEARCH);
30 if (pos < 0) {
46 PyTuple_SET_ITEM(out, 0, STRINGLIB_NEW(str, pos));
49 pos += sep_len;
50 PyTuple_SET_ITEM(out, 2, STRINGLIB_NEW(str + pos, str_len - pos));
67 Py_ssize_t pos; local
78 pos = fastsearch(str, str_len, sep, sep_len, -1, FAST_RSEARCH);
80 if (pos < 0) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/stringlib/
partition.h 17 Py_ssize_t pos; local
28 pos = fastsearch(str, str_len, sep, sep_len, -1, FAST_SEARCH);
30 if (pos < 0) {
46 PyTuple_SET_ITEM(out, 0, STRINGLIB_NEW(str, pos));
49 pos += sep_len;
50 PyTuple_SET_ITEM(out, 2, STRINGLIB_NEW(str + pos, str_len - pos));
67 Py_ssize_t pos; local
78 pos = fastsearch(str, str_len, sep, sep_len, -1, FAST_RSEARCH);
80 if (pos < 0) {
    [all...]
  /external/ImageMagick/Magick++/demo/
analyze.cpp 54 list<std::string>::iterator pos = attributes.begin(); local
55 while(pos != attributes.end())
58 << *pos << " = " << image.attribute(*pos) << endl;
59 pos++;
  /external/deqp/framework/egl/
egluStrUtil.cpp 149 int pos = 0; local
155 int attrib = fmt.attribs[pos];
157 if (pos != 0)
172 str << attribName << ", " << getConfigAttribValueStr(attrib, fmt.attribs[pos+1]);
173 pos += 2;
189 int pos = 0; local
195 int attrib = fmt.attribs[pos];
197 if (pos != 0)
212 str << attribName << ", " << getSurfaceAttribValueStr(attrib, fmt.attribs[pos+1]);
213 pos += 2
229 int pos = 0; local
    [all...]
  /external/icu/icu4c/source/samples/msgfmt/answers/
main_2.cpp 29 FieldPosition pos; local
41 msg.format(msgArgs, 2, str, pos, status);
main_3.cpp 29 FieldPosition pos; local
41 msg.format(msgArgs, 2, str, pos, status);
  /external/icu/icu4c/source/samples/msgfmt/
main.cpp 29 FieldPosition pos; local
41 msg.format(msgArgs, 2, str, pos, status);
  /external/netcat/
atomicio.c 44 size_t pos = 0; local
50 while (n > pos) {
51 res = (f) (fd, s + pos, n - pos);
63 return pos;
65 pos += (size_t)res;
68 return (pos);
  /external/python/cpython2/Objects/stringlib/
partition.h 17 Py_ssize_t pos; local
28 pos = fastsearch(str, str_len, sep, sep_len, -1, FAST_SEARCH);
30 if (pos < 0) {
46 PyTuple_SET_ITEM(out, 0, STRINGLIB_NEW(str, pos));
49 pos += sep_len;
50 PyTuple_SET_ITEM(out, 2, STRINGLIB_NEW(str + pos, str_len - pos));
67 Py_ssize_t pos; local
78 pos = fastsearch(str, str_len, sep, sep_len, -1, FAST_RSEARCH);
80 if (pos < 0)
    [all...]
  /external/skia/gm/
bigtext.cpp 40 SkPoint pos = { variable
46 canvas->drawString("/", pos.fX, pos.fY, paint);
49 canvas->drawPosText("\\", 1, &pos, paint);
  /external/skqp/gm/
bigtext.cpp 40 SkPoint pos = { variable
46 canvas->drawString("/", pos.fX, pos.fY, paint);
49 canvas->drawPosText("\\", 1, &pos, paint);
  /external/tensorflow/tensorflow/compiler/tf2xla/
str_util.cc 26 size_t pos = 0; local
27 while ((pos = text->find(from.data(), pos, from.size())) != string::npos) {
28 text->replace(pos, from.size(), to.data(), to.size());
29 pos += to.size();
31 pos++; // Match at the beginning of the text and after every byte
  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
simple_lsf_dequant.c 31 int i, j, pos, cb_pos; local
35 pos = 0;
39 lsfdeq[pos + j] = WebRtcIlbcfix_kLsfCb[cb_pos + j + index[i] *
42 pos += WebRtcIlbcfix_kLsfDimCb[i];
48 pos = 0;
52 lsfdeq[LPC_FILTERORDER + pos + j] = WebRtcIlbcfix_kLsfCb[
55 pos += WebRtcIlbcfix_kLsfDimCb[i];
  /external/wpa_supplicant_8/src/ap/
ieee802_11_he.c 22 u8 *pos = eid; local
27 *pos++ = WLAN_EID_EXTENSION;
28 *pos++ = 1 + sizeof(struct ieee80211_he_capabilities);
29 *pos++ = WLAN_EID_EXT_HE_CAPABILITIES;
31 cap = (struct ieee80211_he_capabilities *) pos;
46 pos += sizeof(*cap);
48 return pos;
55 u8 *pos = eid; local
60 *pos++ = WLAN_EID_EXTENSION;
61 *pos++ = 1 + sizeof(struct ieee80211_he_operation)
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
d2_11pf.cpp 160 Word16 pos[NB_PULSE]; local
170 pos[0] = i * 5 + j * 2 + 1;
185 pos[1] = i * 5 + 4;
189 pos[1] = i * 5 + j;
210 * cod[pos[j]] = 8191;
214 * cod[pos[j]] = -8192;
218 cod[pos[j]] = i * 16383 - 8192;

Completed in 684 milliseconds

1 2 3 4 5 6 7 8 91011>>