HomeSort by relevance Sort by last modified time
    Searched full:currentpos (Results 1 - 25 of 50) sorted by null

1 2

  /system/bt/bta/dm/
bta_dm_sco.c 94 CurrentPos -= 8000; \
96 if (CurrentPos >= 0) \
101 CurrentPos += dwSrcSps; \
148 CurrentPos -= 8000; \
150 if (CurrentPos >= 0) \
155 CurrentPos += dwSrcSps; \
201 CurrentPos -= 8000; \
203 if (CurrentPos >= 0) \
208 CurrentPos += dwSrcSps; \
245 INT32 CurrentPos = *pLastCurPos
    [all...]
  /frameworks/base/core/java/android/bluetooth/le/
ScanRecord.java 180 int currentPos = 0;
190 while (currentPos < scanRecord.length) {
192 int length = scanRecord[currentPos++] & 0xFF;
199 int fieldType = scanRecord[currentPos++] & 0xFF;
202 advertiseFlag = scanRecord[currentPos] & 0xFF;
206 parseServiceUuid(scanRecord, currentPos,
211 parseServiceUuid(scanRecord, currentPos, dataLength,
216 parseServiceUuid(scanRecord, currentPos, dataLength,
222 extractBytes(scanRecord, currentPos, dataLength));
225 txPowerLevel = scanRecord[currentPos];
    [all...]
  /external/icu/icu4c/source/tools/toolutil/
ucbuf.c 41 UChar* currentPos;
174 if(buf->currentPos<buf->bufLimit){
175 offset = (int32_t)(buf->bufLimit-buf->currentPos);
176 memmove(buf->buffer,buf->currentPos,offset* sizeof(UChar));
310 buf->currentPos = pTarget;
327 if(buf->currentPos>=buf->bufLimit){
337 return *(buf->currentPos++);
347 if(buf->currentPos+1>=buf->bufLimit){
356 if(U16_IS_LEAD(*(buf->currentPos))){
357 retVal=U16_GET_SUPPLEMENTARY(buf->currentPos[0],buf->currentPos[1])
    [all...]
  /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 674 float *currentPos = mTextMeshPtr + mCurrentQuadIndex * vertsPerQuad * floatsPerVert;
685 (*currentPos++) = x1;
686 (*currentPos++) = y1;
687 (*currentPos++) = z1;
688 (*currentPos++) = 0;
689 (*currentPos++) = u1;
690 (*currentPos++) = v1;
692 (*currentPos++) = x2;
693 (*currentPos++) = y2;
694 (*currentPos++) = z2
    [all...]
  /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);
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;
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);
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;
Cast.java 65 int pos = currentPos;
92 int pos = currentPos;
Instanceof.java 68 int pos = currentPos;
95 int pos = currentPos;
  /frameworks/base/libs/hwui/
GradientCache.cpp 245 int currentPos = 1;
252 if (pos > positions[currentPos]) {
254 startPos = positions[currentPos];
256 currentPos++;
258 (this->*split)(colors[currentPos], end);
259 distance = positions[currentPos] - startPos;
  /frameworks/base/tools/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]) /
  /packages/services/Car/car-support-lib/src/android/support/car/ui/
GroupingCursorRecyclerViewAdapter.java 170 int currentPos = 0;
173 gMetadata.offsetInList = currentPos;
174 currentPos += gMetadata.getActualSize();
176 mCount = currentPos;
GroupingRecyclerViewAdapter.java 183 int currentPos = 0;
186 gMetadata.offsetInDisplayList = currentPos;
187 currentPos += gMetadata.getActualSize();
189 mCount = currentPos;
  /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...]
  /external/lzma/CPP/7zip/Common/
FileStreams.cpp 372 UInt64 currentPos;
373 if (!File.Seek(0, FILE_CURRENT, currentPos))
377 result = result && File.Seek(currentPos, currentPos2);
  /external/lzma/CPP/7zip/Compress/
Bcj2Coder.cpp 162 UInt64 currentPos = (nowPos64 + bufPos);
163 while (subStreamEndPos < currentPos)
193 UInt64 dest64 = (currentPos + 5) + Int64(Int32(src));
  /external/llvm/lib/ProfileData/
InstrProfReader.cpp 256 RawInstrProfReader<IntPtrT>::readNextHeader(const char *CurrentPos) {
259 while (CurrentPos != End && *CurrentPos == 0)
260 ++CurrentPos;
262 if (CurrentPos == End)
266 if (CurrentPos + sizeof(RawInstrProf::Header) > End)
269 if (reinterpret_cast<size_t>(CurrentPos) % alignOf<uint64_t>())
272 uint64_t Magic = *reinterpret_cast<const uint64_t *>(CurrentPos);
277 auto *Header = reinterpret_cast<const RawInstrProf::Header *>(CurrentPos);
  /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/support/v7/recyclerview/src/android/support/v7/util/
DiffUtil.java     [all...]
  /external/ImageMagick/coders/
meta.c 320 currentpos;
428 currentpos = TellBlob(ofile);
429 if (currentpos < 0)
435 offset=SeekBlob(ofile,currentpos,SEEK_SET);
527 currentpos = TellBlob(ofile);
528 if (currentpos < 0)
534 offset=SeekBlob(ofile,currentpos,SEEK_SET);
620 currentpos;
724 currentpos = TellBlob(ofile);
725 if (currentpos < 0
316 currentpos; local
616 currentpos; local
    [all...]
  /external/v8/benchmarks/
navier-stokes.js 262 var currentPos = j * rowSize;
269 u[++currentPos] -= wScale * (p[++nextPos] - p[++prevPos]);
270 v[currentPos] -= hScale * (p[++nextRow] - p[++prevRow]);
  /external/dng_sdk/source/
dng_string.cpp 61 // 'currentPos' to write at least 'space' elements of type T (to positions
62 // currentPos[0] through currentPos[space - 1]. Throws a dng_exception if there
68 static void CheckSpaceLeftInBuffer(const T *currentPos,
73 if (bufferEnd < currentPos || static_cast<size_t>(bufferEnd - currentPos) < space)
    [all...]

Completed in 1787 milliseconds

1 2