HomeSort by relevance Sort by last modified time
    Searched refs:currentPos (Results 1 - 25 of 116) sorted by null

1 2 3 4 5

  /packages/apps/SecureElement/src/com/android/se/security/gpac/
Response_ALL_AR_DO.java 88 int currentPos = index;
91 temp = BerTlv.decode(data, currentPos);
105 currentPos = temp.getValueIndex() + temp.getValueLength();
106 } while (currentPos < endPos);
Response_AR_DO.java 83 int currentPos = index;
86 BerTlv temp = BerTlv.decode(data, currentPos);
97 currentPos = temp.getValueIndex() + temp.getValueLength();
98 } while (currentPos < endPos);
Response_ARAC_AID_DO.java 88 int currentPos = index;
91 temp = BerTlv.decode(data, currentPos);
108 currentPos = temp.getValueIndex() + temp.getValueLength();
109 } while (currentPos < endPos);
  /art/tools/ahat/src/main/com/android/ahat/heapdump/
DiffFields.java 52 int currentPos = 0;
55 while (currentPos < currentSorted.size() && baselinePos < baselineSorted.size()) {
56 FieldValue currentField = currentSorted.get(currentPos);
61 currentPos++;
64 currentPos++;
72 while (currentPos < currentSorted.size()) {
73 FieldValue currentField = currentSorted.get(currentPos);
75 currentPos++;
  /frameworks/base/core/java/android/bluetooth/le/
ScanRecord.java 182 int currentPos = 0;
192 while (currentPos < scanRecord.length) {
194 int length = scanRecord[currentPos++] & 0xFF;
201 int fieldType = scanRecord[currentPos++] & 0xFF;
204 advertiseFlag = scanRecord[currentPos] & 0xFF;
208 parseServiceUuid(scanRecord, currentPos,
213 parseServiceUuid(scanRecord, currentPos, dataLength,
218 parseServiceUuid(scanRecord, currentPos, dataLength,
224 extractBytes(scanRecord, currentPos, dataLength));
227 txPowerLevel = scanRecord[currentPos];
    [all...]
  /external/icu/icu4c/source/tools/toolutil/
ucbuf.cpp 43 UChar* currentPos;
176 if(buf->currentPos<buf->bufLimit){
177 offset = (int32_t)(buf->bufLimit-buf->currentPos);
178 memmove(buf->buffer,buf->currentPos,offset* sizeof(UChar));
312 buf->currentPos = pTarget;
329 if(buf->currentPos>=buf->bufLimit){
339 return *(buf->currentPos++);
349 if(buf->currentPos+1>=buf->bufLimit){
358 if(U16_IS_LEAD(*(buf->currentPos))){
359 retVal=U16_GET_SUPPLEMENTARY(buf->currentPos[0],buf->currentPos[1])
    [all...]
  /external/tensorflow/tensorflow/core/platform/s3/
s3_crypto.cc 73 auto currentPos = stream.tellg();
74 if (currentPos == std::streampos(std::streamoff(-1))) {
75 currentPos = 0;
94 stream.seekg(currentPos, stream.beg);
  /external/javassist/src/main/javassist/expr/
NewArray.java 81 int atype = iterator.byteAt(currentPos + 1);
86 int index = iterator.u16bitAt(currentPos + 1);
127 int index = iterator.u16bitAt(currentPos + 1);
143 return iterator.byteAt(currentPos + 3);
175 int pos = currentPos;
182 index = iterator.byteAt(currentPos + 1); // atype
198 index = iterator.u16bitAt(currentPos + 1);
200 dim = iterator.byteAt(currentPos + 3);
MethodCall.java 35 int pos = currentPos;
86 int pos = currentPos;
148 return iterator.byteAt(currentPos) == INVOKESPECIAL
181 int pos = currentPos;
Expr.java 45 int currentPos;
58 currentPos = pos;
138 int pos = currentPos;
186 return currentPos;
195 return thisMethod.getLineNumber(currentPos);
319 oldIterator.move(currentPos);
NewExpr.java 44 int pos = currentPos;
105 int methodIndex = iterator.u16bitAt(currentPos + 1); // constructor
114 int index = iterator.u16bitAt(currentPos + 1);
134 int index = iterator.u16bitAt(currentPos + 1);
177 pos = currentPos;
Cast.java 65 int pos = currentPos;
92 int pos = currentPos;
Instanceof.java 68 int pos = currentPos;
95 int pos = currentPos;
FieldAccess.java 96 int index = iterator.u16bitAt(currentPos + 1);
104 int index = iterator.u16bitAt(currentPos + 1);
135 int index = iterator.u16bitAt(currentPos + 1);
152 int pos = currentPos;
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/leanback/
PlayerActivity.java 243 int currentPos = 0;
244 currentPos = mVideoView.getCurrentPosition();
245 updateSeekbar(currentPos, mDuration);
335 int currentPos = 0;
350 currentPos = mVideoView.getCurrentPosition();
351 currentPos -= delta;
352 if (currentPos > 0)
353 play(currentPos);
356 currentPos = mVideoView.getCurrentPosition();
357 currentPos += delta
    [all...]
  /frameworks/rs/
rsFont.cpp 673 float *currentPos = mTextMeshPtr + mCurrentQuadIndex * vertsPerQuad * floatsPerVert;
684 (*currentPos++) = x1;
685 (*currentPos++) = y1;
686 (*currentPos++) = z1;
687 (*currentPos++) = 0;
688 (*currentPos++) = u1;
689 (*currentPos++) = v1;
691 (*currentPos++) = x2;
692 (*currentPos++) = y2;
693 (*currentPos++) = z2
    [all...]
  /frameworks/layoutlib/bridge/src/android/graphics/
Gradient_Delegate.java 102 // from 0 to SIZE (100%), or currentPos in the loop below will never equal 1.0
109 float currentPos = (float)i/GRADIENT_SIZE;
110 while (currentPos > mPositions[nextPos]) {
114 float percent = (currentPos - mPositions[prevPos]) /
  /tools/tradefederation/core/src/com/android/tradefed/util/
SizeLimitedOutputStream.java 98 int currentPos = (mCurrentFilePos + i + 1) % mFiles.length;
99 if (mFiles[currentPos] != null) {
101 FileInputStream fStream = new FileInputStream(mFiles[currentPos]);
  /frameworks/base/libs/hwui/
GradientCache.cpp 237 int currentPos = 1;
244 if (pos > positions[currentPos]) {
246 startPos = positions[currentPos];
248 currentPos++;
250 end.set(colors[currentPos]);
251 distance = positions[currentPos] - startPos;
  /external/javassist/src/main/javassist/bytecode/
CodeIterator.java 38 protected int currentPos;
51 currentPos = mark = 0;
68 currentPos = index;
170 public boolean hasNext() { return currentPos < endPos; }
183 int pos = currentPos;
184 currentPos = nextOpcode(bytecode, pos);
197 return currentPos;
319 return insert0(currentPos, code, false);
392 return insert0(currentPos, code, true);
455 // currentPos will change
    [all...]
  /frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
DiffUtil.java     [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
FusionDictionary.java 601 Position currentPos = mPositions.getLast();
602 mCurrentString.setLength(currentPos.length);
605 if (currentPos.pos.hasNext()) {
606 final PtNode currentPtNode = currentPos.pos.next();
607 currentPos.length = mCurrentString.length();
612 currentPos = new Position(currentPtNode.mChildren.mData);
613 currentPos.length = mCurrentString.length();
614 mPositions.addLast(currentPos);
623 currentPos = mPositions.getLast();
  /frameworks/base/cmds/statsd/src/matchers/
matcher_util.cpp 175 int currentPos = values[start].mField.getPosAtDepth(depth);
179 if (newPos != currentPos) {
182 currentPos = newPos;
  /external/lzma/CPP/7zip/Common/
FileStreams.cpp 396 UInt64 currentPos;
397 if (!File.Seek(0, FILE_CURRENT, currentPos))
401 result = result && File.Seek(currentPos, currentPos2);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
Profiler.cs 78 protected Stack<int> currentPos = new Stack<int>();
152 currentPos.Push(pos);
175 descriptor.pos = currentPos.Peek();
657 currentPos.Peek());

Completed in 2262 milliseconds

1 2 3 4 5