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

1 23 4 5 6 7 8 91011>>

  /external/wpa_supplicant_8/src/crypto/
sha384-kdf.c 40 size_t pos, clen; local
59 pos = 0;
61 clen = outlen - pos;
64 os_memcpy(out + pos, T, clen);
65 pos += clen;
67 if (pos == outlen)
sha512-kdf.c 40 size_t pos, clen; local
59 pos = 0;
61 clen = outlen - pos;
64 os_memcpy(out + pos, T, clen);
65 pos += clen;
67 if (pos == outlen)
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
d2_9pf.cpp 187 Word16 pos[NB_PULSE]; local
207 pos[0] = i * 5 + startPos[k++];
215 pos[1] = i * 5 + startPos[k];
234 * cod[pos[j]] = 8191;
238 * cod[pos[j]] = -8192;
242 cod[pos[j]] = i * 16383 - 8192;
  /libcore/ojluni/src/main/java/sun/misc/
IOUtils.java 54 int pos = 0; local
55 while (pos < length) {
57 if (pos >= output.length) { // Only expand when there's no room
58 bytesToRead = Math.min(length - pos, output.length + 1024);
59 if (output.length < pos + bytesToRead) {
60 output = Arrays.copyOf(output, pos + bytesToRead);
63 bytesToRead = output.length - pos;
65 int cc = is.read(output, pos, bytesToRead);
70 if (output.length != pos) {
71 output = Arrays.copyOf(output, pos);
    [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_/
iterators_fn_imps.hpp 56 std::pair<entry_pointer, size_type> pos; local
57 get_start_it_state(p_value, pos);
58 return iterator(p_value, pos, this);
73 std::pair<entry_pointer, size_type> pos; local
74 get_start_it_state(p_value, pos);
75 return const_iterator(p_value, pos, this);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/gp_hash_table_map_/
iterator_fn_imps.hpp 56 size_type pos; local
57 get_start_it_state(p_value, pos);
58 return iterator(p_value, pos, this);
73 size_type pos; local
74 get_start_it_state(p_value, pos);
75 return const_iterator(p_value, pos, this);
resize_no_store_hash_fn_imps.hpp 53 const size_type pos = ranged_probe_fn_base::operator()(r_key, hash, i); local
54 entry_pointer p_new_e = a_entries_resized + pos;
resize_store_hash_fn_imps.hpp 54 const size_type pos = ranged_probe_fn_base::operator()(r_key, hash, i); local
55 entry_pointer p_new_e = a_entries_resized + pos;
  /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_/
iterators_fn_imps.hpp 56 std::pair<entry_pointer, size_type> pos; local
57 get_start_it_state(p_value, pos);
58 return iterator(p_value, pos, this);
73 std::pair<entry_pointer, size_type> pos; local
74 get_start_it_state(p_value, pos);
75 return const_iterator(p_value, pos, this);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/gp_hash_table_map_/
iterator_fn_imps.hpp 56 size_type pos; local
57 get_start_it_state(p_value, pos);
58 return iterator(p_value, pos, this);
73 size_type pos; local
74 get_start_it_state(p_value, pos);
75 return const_iterator(p_value, pos, this);
resize_no_store_hash_fn_imps.hpp 53 const size_type pos = ranged_probe_fn_base::operator()(r_key, hash, i); local
54 entry_pointer p_new_e = a_entries_resized + pos;
resize_store_hash_fn_imps.hpp 54 const size_type pos = ranged_probe_fn_base::operator()(r_key, hash, i); local
55 entry_pointer p_new_e = a_entries_resized + pos;
  /libcore/ojluni/src/test/java/time/tck/java/time/format/
TCKChronoPrinterParser.java 87 private ParsePosition pos; field in class:TCKChronoPrinterParser
92 pos = new ParsePosition(0);
123 TemporalAccessor parsed = builder.toFormatter().parseUnresolved(text, pos);
124 assertEquals(pos.getIndex(), expected.getId().length());
125 assertEquals(pos.getErrorIndex(), -1);
132 TemporalAccessor parsed = builder.toFormatter().parseUnresolved(text.toLowerCase(Locale.ENGLISH), pos);
133 assertEquals(pos.getIndex(), 0);
134 assertEquals(pos.getErrorIndex(), 0);
141 TemporalAccessor parsed = builder.toFormatter().parseUnresolved(text.toLowerCase(Locale.ENGLISH), pos);
142 assertEquals(pos.getIndex(), expected.getId().length())
    [all...]
  /art/tools/veridex/
hidden_api.cc 55 size_t pos = str.find("->"); local
56 if (pos != std::string::npos) {
58 entries.insert(str.substr(0, pos));
59 pos = str.find('(');
60 if (pos != std::string::npos) {
62 entries.insert(str.substr(0, pos));
64 pos = str.find(':');
65 if (pos != std::string::npos) {
67 entries.insert(str.substr(0, pos));
  /cts/tests/framework/base/activitymanager/util/src/android/server/am/
ComponentNameUtils.java 49 final int pos = className.lastIndexOf('.'); local
50 return pos >= 0 ? className.substring(pos + 1) : className;
  /device/google/cuttlefish_common/common/commands/wifi_relay/
nl_client.cpp 75 auto pos = in_flight_.find(seq); local
76 if (pos != in_flight_.end()) {
77 if (pos->second->OnResponse(msg)) {
  /device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/Sdk/C/
Bra86.c 12 SizeT pos = 0; local
21 Byte *p = data + pos;
28 SizeT d = (SizeT)(p - data - pos);
29 pos = (SizeT)(p - data);
33 return pos;
43 pos++;
52 UInt32 cur = ip + (UInt32)pos;
53 pos += 5;
79 pos++;
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/
Bra86.c 12 SizeT pos = 0; local
21 Byte *p = data + pos;
28 SizeT d = (SizeT)(p - data - pos);
29 pos = (SizeT)(p - data);
33 return pos;
43 pos++;
52 UInt32 cur = ip + (UInt32)pos;
53 pos += 5;
79 pos++;
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/
Bra86.c 12 SizeT pos = 0; local
21 Byte *p = data + pos;
28 SizeT d = (SizeT)(p - data - pos);
29 pos = (SizeT)(p - data);
33 return pos;
43 pos++;
52 UInt32 cur = ip + (UInt32)pos;
53 pos += 5;
79 pos++;
  /external/icu/icu4c/source/i18n/
fphdlimp.h 36 FieldPosition& pos; member in class:FieldPositionOnlyHandler
39 FieldPositionOnlyHandler(FieldPosition& pos);
nfsubs.h 35 int32_t pos; member in class:NFSubstitution
40 NFSubstitution(int32_t pos,
58 static NFSubstitution* makeSubstitution(int32_t pos,
114 * @param pos The position in toInsertInto where the owning rule's
118 virtual void doSubstitution(int64_t number, UnicodeString& toInsertInto, int32_t pos, int32_t recursionCount, UErrorCode& status) const;
126 * @param pos The position in toInsertInto where the owning rule's
130 virtual void doSubstitution(double number, UnicodeString& toInsertInto, int32_t pos, int32_t recursionCount, UErrorCode& status) const;
229 int32_t getPos() const { return pos; }
  /external/icu/icu4c/source/test/intltest/
tokiter.h 69 int32_t pos; member in class:TokenIterator
  /external/libcxx/test/std/strings/basic.string/string.ops/string_rfind/
pointer_size.pass.cpp 12 // size_type rfind(const charT* s, size_type pos = npos) const;
21 test(const S& s, const typename S::value_type* str, typename S::size_type pos,
24 assert(s.rfind(str, pos) == x);
28 assert(x <= pos && x + n <= s.size());
39 typename S::size_type pos = s.size(); local
41 assert(x <= pos && x + n <= s.size());
  /external/libcxx/test/std/strings/string.view/string.view.find/
rfind_pointer_size.pass.cpp 11 // constexpr size_type rfind(const charT* s, size_type pos = npos) const;
21 test(const S& s, const typename S::value_type* str, typename S::size_type pos,
24 assert(s.rfind(str, pos) == x);
28 assert(x <= pos && x + n <= s.size());
39 typename S::size_type pos = s.size(); local
41 assert(x <= pos && x + n <= s.size());
  /external/ltp/lib/
tst_mkfs.c 29 int i, pos = 1, ret; local
50 argv[pos++] = fs_opts[i];
52 if (pos + 2 > OPTS_MAX) {
65 argv[pos++] = dev;
68 argv[pos++] = extra_opt;
70 if (pos + 1 > OPTS_MAX) {
77 argv[pos] = NULL;

Completed in 1263 milliseconds

1 23 4 5 6 7 8 91011>>