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

<<11121314151617181920>>

  /system/keymaster/legacy_support/
rsa_keymaster1_operation.cpp 49 int pos = begin_params.find(TAG_DIGEST); local
50 if (pos == -1)
52 begin_params[pos].enumerated = KM_DIGEST_NONE;
54 pos = begin_params.find(TAG_PADDING);
55 if (pos == -1)
57 switch (begin_params[pos].enumerated) {
62 begin_params[pos].enumerated = KM_PAD_NONE;
  /tools/tradefederation/core/src/com/android/tradefed/util/
PropertyChanger.java 56 int pos = line.indexOf('='); local
57 if (pos != -1) {
58 String name = line.substring(0, pos);
  /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...]
  /art/libdexfile/dex/
dex_file_loader.h 81 const char* pos = strrchr(location, kMultiDexSeparator); local
82 return (pos == nullptr) ? location : std::string(location, pos - location);
93 size_t pos = location.rfind(kMultiDexSeparator); local
94 return (pos == std::string::npos) ? std::string() : location.substr(pos);
  /bionic/libc/arch-arm64/generic/bionic/
strcmp.S 56 #define pos x11 define
89 clz pos, syndrome
91 lsl data1, data1, pos
92 lsl data2, data2, pos
118 clz pos, syndrome
123 lsl data1, data1, pos
124 lsl data2, data2, pos
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
open_memstream.c 32 size_t *psize; /* point to min(pos, len) */
33 size_t pos; /* current position */ member in struct:state
45 end = (st->pos + l);
62 st->string[st->pos + i] = b[i];
63 st->pos += l;
65 if (st->pos > st->len) {
66 st->len = st->pos;
70 *st->psize = st->pos;
85 base = st->pos;
97 st->pos = base + off
    [all...]
open_wmemstream.c 33 size_t *psize; /* point to min(pos, len) */
34 size_t pos; /* current position */ member in struct:state
47 end = (st->pos + l);
63 nmc = (st->size - st->pos) * sizeof(wchar_t);
64 len = mbsnrtowcs(st->string + st->pos, &b, nmc, l, &st->mbs);
67 st->pos += len;
69 if (st->pos > st->len) {
70 st->len = st->pos;
74 *st->psize = st->pos;
89 base = st->pos;
    [all...]
  /cts/hostsidetests/inputmethodservice/deviceside/lib/src/android/inputmethodservice/cts/db/
Field.java 28 final int pos; field in class:Field
36 public static Field newInstance(final int pos, final String name, final int fieldType) {
39 return new IntegerField(pos, name);
41 return new StringField(pos, name);
47 private Field(final int pos, final String name, final int fieldType) {
48 this.pos = pos;
96 IntegerField(final int pos, final String name) {
97 super(pos, name, Cursor.FIELD_TYPE_INTEGER);
102 return cursor.getLong(pos);
    [all...]
  /cts/tests/tests/transition/src/android/transition/cts/
PathMotionTest.java 38 float[] pos = new float[2]; local
42 expectedMeasure.getPosTan(along, pos, null);
43 float expectedX = pos[0];
44 float expectedY = pos[1];
46 pathMeasure.getPosTan(along, pos, null);
48 expectedX, pos[0], 0.01f);
50 expectedY, pos[1], 0.01f);
  /cts/tools/dasm/src/dasm/
Utils.java 125 int pos = name.lastIndexOf('/'); local
127 if (pos == -1) {
131 result[0] = name.substring(0, pos);
132 result[1] = name.substring(pos + 1);
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
BlockAddresses.java 137 SourcePosition pos = one.getLastInsn().getPosition(); local
139 lasts[label] = new CodeAddress(pos);
140 ends[label] = new CodeAddress(pos);
  /dalvik/dx/src/com/android/dx/dex/code/
BlockAddresses.java 137 SourcePosition pos = one.getLastInsn().getPosition(); local
139 lasts[label] = new CodeAddress(pos);
140 ends[label] = new CodeAddress(pos);
  /device/google/contexthub/lib/nanohub/
nanoapp.c 104 int pos; local
106 for (i = 0, pos = 0; i < size; ++i, pos += increment)
107 fprintf(out, "%08" PRIx32, hash[pos]);
  /device/google/marlin/camera/QCamera2/util/
QCameraQueue.cpp 227 struct cam_list *pos = NULL; local
232 pos = head->next;
233 if (pos != head) {
234 node = member_of(pos, camera_q_node, list);
262 struct cam_list *pos = NULL; local
268 pos = head->next;
270 pos = head->prev;
272 if (pos != head) {
273 node = member_of(pos, camera_q_node, list);
302 struct cam_list *pos = NULL local
346 struct cam_list *pos = NULL; local
388 struct cam_list *pos = NULL; local
433 struct cam_list *pos = NULL; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/stringlib/
find.h 15 Py_ssize_t pos; local
22 pos = fastsearch(str, str_len, sub, sub_len, -1, FAST_SEARCH);
24 if (pos >= 0)
25 pos += offset;
27 return pos;
35 Py_ssize_t pos; local
42 pos = fastsearch(str, str_len, sub, sub_len, -1, FAST_RSEARCH);
44 if (pos >= 0)
45 pos += offset;
47 return pos;
    [all...]
split.h 153 Py_ssize_t i, j, pos, count=0; local
169 pos = fastsearch(str+i, str_len-i, sep, sep_len, -1, FAST_SEARCH);
170 if (pos < 0)
172 j = i + pos;
295 Py_ssize_t j, pos, count=0; local
311 pos = fastsearch(str, j, sep, sep_len, -1, FAST_RSEARCH);
312 if (pos < 0)
314 SPLIT_ADD(str, pos + sep_len, j);
315 j = pos;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/stringlib/
find.h 15 Py_ssize_t pos; local
22 pos = fastsearch(str, str_len, sub, sub_len, -1, FAST_SEARCH);
24 if (pos >= 0)
25 pos += offset;
27 return pos;
35 Py_ssize_t pos; local
42 pos = fastsearch(str, str_len, sub, sub_len, -1, FAST_RSEARCH);
44 if (pos >= 0)
45 pos += offset;
47 return pos;
    [all...]
split.h 153 Py_ssize_t i, j, pos, count=0; local
169 pos = fastsearch(str+i, str_len-i, sep, sep_len, -1, FAST_SEARCH);
170 if (pos < 0)
172 j = i + pos;
295 Py_ssize_t j, pos, count=0; local
311 pos = fastsearch(str, j, sep, sep_len, -1, FAST_RSEARCH);
312 if (pos < 0)
314 SPLIT_ADD(str, pos + sep_len, j);
315 j = pos;
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Arm/
CompareMem.asm 42 #define pos r8 define
96 clz pos, diff
97 lsl data1, data1, pos
98 lsl data2, data2, pos
  /external/aac/libAACdec/src/
usacdec_ace_d4t64.cpp 111 * pos I: position of pulse
122 static void D_ACELP_add_pulse(SHORT pos[], SHORT nb_pulse, SHORT track,
126 /* i = ((pos[k] & (16-1))*NB_TRACK) + track; */
127 i = ((pos[k] & (16 - 1)) << 2) + track;
128 if ((pos[k] & 16) == 0) {
143 * pos O: position of the pulse
152 SHORT pos[]) {
165 pos[0] = pos1;
175 * pos O: position of the pulse
184 SHORT pos[]) {
358 SHORT k, pos[6]; local
    [all...]
  /external/apache-http/src/org/apache/http/impl/auth/
AuthSchemeBase.java 90 int pos; local
93 pos = ((FormattedHeader) header).getValuePos();
101 pos = 0;
103 while (pos < buffer.length() && HTTP.isWhitespace(buffer.charAt(pos))) {
104 pos++;
106 int beginIndex = pos;
107 while (pos < buffer.length() && !HTTP.isWhitespace(buffer.charAt(pos))) {
108 pos++
    [all...]
  /external/apache-http/src/org/apache/http/impl/conn/
LoggingSessionInputBuffer.java 111 int pos = buffer.length() - l; local
112 String s = new String(buffer.buffer(), pos, l);
  /external/apache-http/src/org/apache/http/impl/io/
ContentLengthInputStream.java 86 private long pos = 0; field in class:ContentLengthInputStream
148 if (pos >= contentLength) {
151 pos++;
172 if (pos >= contentLength) {
176 if (pos + len > contentLength) {
177 len = (int) (contentLength - pos);
180 pos += count;
211 long remaining = Math.min(n, this.contentLength - this.pos);
222 this.pos += count;
  /external/apache-http/src/org/apache/http/message/
ParserCursor.java 54 private int pos; field in class:ParserCursor
66 this.pos = lowerBound;
78 return this.pos;
81 public void updatePos(int pos) {
82 if (pos < this.lowerBound) {
85 if (pos > this.upperBound) {
88 this.pos = pos;
92 return this.pos >= this.upperBound;
100 buffer.append(Integer.toString(this.pos));
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncPosition.java 122 double pos = (double) getPositionInContextNodeList(xctxt); local
124 return new XNumber(pos);

Completed in 698 milliseconds

<<11121314151617181920>>