/frameworks/compile/mclinker/include/mcld/Support/ |
D | CXADemangle.tcc | 34 const char* parse_type(const char* first, const char* last, C& db); 36 const char* parse_encoding(const char* first, const char* last, C& db); 38 const char* parse_name(const char* first, const char* last, C& db, 41 const char* parse_expression(const char* first, const char* last, C& db); 43 const char* parse_template_args(const char* first, const char* last, C& db); 45 const char* parse_operator_name(const char* first, const char* last, C& db); 47 const char* parse_unqualified_name(const char* first, const char* last, C& db); 49 const char* parse_decltype(const char* first, const char* last, C& db); 94 print_state(const char* msg, const char* first, const char* last, const C& db) in print_state() argument 97 for (; first != last; ++first) in print_state() [all …]
|
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/ |
D | vlc_decode.cpp | 875 pTcoef->last = (uint) tab->last; //(tab->val >> 16) & 1; in VlcDecTCOEFIntra() 922 pTcoef->last = (uint)tab->last; //(tab->val >> 16) & 1; in VlcDecTCOEFIntra() 926 if ((pTcoef->last == 0 && pTcoef->run > 14) || (pTcoef->last == 1 && pTcoef->run > 20)) in VlcDecTCOEFIntra() 930 pTcoef->level = pTcoef->level + intra_max_level[pTcoef->last][pTcoef->run]; in VlcDecTCOEFIntra() 974 pTcoef->last = (uint)tab->last; //(tab->val >> 16) & 1; in VlcDecTCOEFIntra() 979 if (pTcoef->last) in VlcDecTCOEFIntra() 1002 pTcoef->last = code >> 7; in VlcDecTCOEFIntra() 1057 pTcoef->last = (uint)tab->last; //(tab->val >> 12) & 1; in VlcDecTCOEFInter() 1100 pTcoef->last = (uint)tab->last; //(tab->val >> 12) & 1; in VlcDecTCOEFInter() 1103 if ((pTcoef->last == 0 && pTcoef->run > 26) || (pTcoef->last == 1 && pTcoef->run > 40)) in VlcDecTCOEFInter() [all …]
|
D | vlc_dequant.cpp | 69 int last, return_status; in VlcDequantMpegIntraBlock() local 117 last = 1;/* 11/1/2000 let it slips undetected, just like in VlcDequantMpegIntraBlock() 125 last = run_level.last; in VlcDequantMpegIntraBlock() 131 last = 1; in VlcDequantMpegIntraBlock() 162 while (!last); in VlcDequantMpegIntraBlock() 395 int last, return_status; in VlcDequantMpegInterBlock() local 422 last = 1;/* 11/1/2000 let it slips undetected, just like in VlcDequantMpegInterBlock() 430 last = run_level.last; in VlcDequantMpegInterBlock() 436 last = 1; in VlcDequantMpegInterBlock() 463 while (!last); in VlcDequantMpegInterBlock() [all …]
|
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/ |
D | vlc_encode.h | 24 Int PutCoeff_Inter(Int run, Int level, Int last, BitstreamEncVideo *bitstream); 25 Int PutCoeff_Intra(Int run, Int level, Int last, BitstreamEncVideo *bitstream); 33 Int PutCoeff_Inter_RVLC(Int run, Int level, Int last, BitstreamEncVideo *bitstream); 34 Int PutCoeff_Intra_RVLC(Int run, Int level, Int last, BitstreamEncVideo *bitstream); 35 Int PutRunCoeff_Inter(Int run, Int level, Int last, BitstreamEncVideo *bitstream); 36 Int PutRunCoeff_Intra(Int run, Int level, Int last, BitstreamEncVideo *bitstream); 37 Int PutLevelCoeff_Inter(Int run, Int level, Int last, BitstreamEncVideo *bitstream); 38 Int PutLevelCoeff_Intra(Int run, Int level, Int last, BitstreamEncVideo *bitstream);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | NoisyVelocityTracker.java | 71 MotionEventCopy last = null; in computeCurrentVelocity() local 78 if (last != null) { in computeCurrentVelocity() 79 final float dt = (float) (event.t - last.t) / units; in computeCurrentVelocity() 80 final float dx = (event.x - last.x); in computeCurrentVelocity() 81 final float dy = (event.y - last.y); in computeCurrentVelocity() 91 if (event.t == last.t) { in computeCurrentVelocity() 101 last = event; in computeCurrentVelocity()
|
/frameworks/base/tools/aapt2/ |
D | ResourceTable.cpp | 43 const auto last = packages.end(); in findPackage() local 44 auto iter = std::lower_bound(packages.begin(), last, name, in findPackage() 46 if (iter != last && name == (*iter)->name) { in findPackage() 75 const auto last = packages.end(); in findOrCreatePackage() local 76 auto iter = std::lower_bound(packages.begin(), last, name, in findOrCreatePackage() 78 if (iter != last && name == (*iter)->name) { in findOrCreatePackage() 88 const auto last = types.end(); in findType() local 89 auto iter = std::lower_bound(types.begin(), last, type, lessThanType); in findType() 90 if (iter != last && (*iter)->type == type) { in findType() 97 const auto last = types.end(); in findOrCreateType() local [all …]
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/ |
D | armVCM4P2_PutVLCBits.c | 123 OMX_U8 last = 0, first = 1, fMode; in armVCM4P2_PutVLCBits() local 143 last = 0; in armVCM4P2_PutVLCBits() 169 last, in armVCM4P2_PutVLCBits() 183 last = 1; in armVCM4P2_PutVLCBits() 208 last, in armVCM4P2_PutVLCBits()
|
D | omxVCM4P2_DecodeVLCZigzag_Inter.c | 94 OMX_U8 last,start = 0; in omxVCM4P2_DecodeVLCZigzag_Inter() local 111 &last, in omxVCM4P2_DecodeVLCZigzag_Inter() 127 if (last == 0) in omxVCM4P2_DecodeVLCZigzag_Inter()
|
D | armVCM4P2_DecodeVLCZigzag_intra.c | 95 OMX_U8 last = 0; in armVCM4P2_DecodeVLCZigzag_Intra() local 135 &last, in armVCM4P2_DecodeVLCZigzag_Intra() 151 if (last == 0) in armVCM4P2_DecodeVLCZigzag_Intra()
|
D | armVCM4P2_FillVLCBuffer.c | 86 OMX_U8 last, in armVCM4P2_FillVLCBuffer() argument 118 armPackBits(ppBitStream, pBitOffset, (OMX_U32)last, 1); in armVCM4P2_FillVLCBuffer() 157 armPackBits(ppBitStream, pBitOffset, (OMX_U32)last, 1); in armVCM4P2_FillVLCBuffer()
|
D | armVCM4P2_FillVLDBuffer.c | 66 OMX_U8 last, in armVCM4P2_FillVLDBuffer() argument 88 if (last == 1) in armVCM4P2_FillVLDBuffer()
|
/frameworks/rs/ |
D | rsList.h | 30 List() : last(nullptr), first(&firstBuffer.data.typed), in List() 38 List(InputIterator first, InputIterator last) : List() { in List() argument 39 for (InputIterator it = first; it != last; ++it) { in List() 55 last = current; in push_back() 113 T& back() const { return *last; } in back() 119 T* last; variable
|
/frameworks/base/libs/common_time/ |
D | utils.cpp | 88 Entry* last = NULL; in internalLog() local 91 last = &(mRingBuffer[(mWr + mSize - 1) % mSize]); in internalLog() 94 if ((NULL != last) && !last->s.compare(s)) { in internalLog() 95 gettimeofday(&(last->last_ts), NULL); in internalLog() 96 ++last->count; in internalLog()
|
/frameworks/base/tools/aapt2/link/ |
D | PrivateAttributeMover.cpp | 28 const auto last = inputContainer.end(); in moveIf() local 30 if (newEnd == last) { in moveIf() 39 for (; first != last; ++first) { in moveIf() 52 inputContainer.erase(newEnd, last); in moveIf()
|
/frameworks/av/media/libeffects/loudness/common/core/ |
D | byte_swapper.h | 44 char *first = &new_val, *last = first + kValSize - 1, x; in Swap() local 45 for (; first < last; ++first, --last) { in Swap() 46 x = *last; in Swap() 47 *last = *first; in Swap()
|
/frameworks/base/core/java/android/content/ |
D | ContentUris.java | 85 String last = contentUri.getLastPathSegment(); in parseId() local 86 return last == null ? -1 : Long.parseLong(last); in parseId()
|
/frameworks/base/core/java/android/os/ |
D | FileUtils.java | 281 byte[] last = null; in readTextFile() 284 if (last != null) rolled = true; in readTextFile() 285 byte[] tmp = last; last = data; data = tmp; in readTextFile() 290 if (last == null && len <= 0) return ""; in readTextFile() 291 if (last == null) return new String(data, 0, len); in readTextFile() 294 System.arraycopy(last, len, last, 0, last.length - len); in readTextFile() 295 System.arraycopy(data, 0, last, last.length - len, len); in readTextFile() 297 if (ellipsis == null || !rolled) return new String(last); in readTextFile() 298 return ellipsis + new String(last); in readTextFile()
|
/frameworks/base/core/java/android/util/jar/ |
D | StrictJarManifestReader.java | 145 int last = pos; in readValue() local 165 valueBuffer.write(buf, mark, last - mark); in readValue() 176 last = pos; in readValue() 179 valueBuffer.write(buf, mark, last - mark); in readValue()
|
/frameworks/support/v7/recyclerview/src/android/support/v7/util/ |
D | MessageThreadUtil.java | 252 SyncQueueItem last = mRoot; 253 while (last.next != null) { 254 last = last.next; 256 last.next = item;
|
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/dirlist/ |
D | FocusManager.java | 232 int last = mLayout.findLastVisibleItemPosition(); in findPagedTargetPosition() local 234 int pageSize = last - first + 1; in findPagedTargetPosition() 248 if (current < last) { in findPagedTargetPosition() 250 return last; in findPagedTargetPosition() 509 long last = mLastEvent.getEventTime(); in run() local 511 if ((now - last) > SEARCH_TIMEOUT) { in run()
|
/frameworks/base/services/core/java/com/android/server/job/ |
D | JobPackageTracker.java | 337 DataSet last = mCurDataSet; in rebatchIfNeeded() local 338 last.mSummedTime = totalTime; in rebatchIfNeeded() 340 last.finish(mCurDataSet, now); in rebatchIfNeeded() 342 mLastDataSets[0] = last; in rebatchIfNeeded() 393 PackageEntry last = mLastDataSets[0] != null ? mLastDataSets[0].getEntry(uid, pkg) : null; in getLoadFactor() local 394 if (cur == null && last == null) { in getLoadFactor() 400 if (last != null) { in getLoadFactor() 401 time += last.getActiveTime(now) + last.getPendingTime(now); in getLoadFactor()
|
/frameworks/base/core/tests/coretests/src/android/widget/listview/touch/ |
D | ListGetSelectedViewTest.java | 58 View last = mListView.getChildAt(1); in testGetSelectedView() local 59 TouchUtils.clickView(this, last); in testGetSelectedView()
|
/frameworks/base/libs/hwui/ |
D | PathTessellator.cpp | 213 const Vertex* last = &(perimeter[perimeter.size() - 1]); in getStrokeVerticesFromPerimeter() local 215 Vector2 lastNormal = {current->y - last->y, last->x - current->x}; in getStrokeVerticesFromPerimeter() 308 const Vertex* last = &(vertices[0]); in getStrokeVerticesFromUnclosedVertices() local 310 Vector2 lastNormal = {current->y - last->y, last->x - current->x}; in getStrokeVerticesFromUnclosedVertices() 354 const Vertex* last = &(perimeter[perimeter.size() - 1]); in getFillVerticesFromPerimeterAA() local 356 Vector2 lastNormal = {current->y - last->y, last->x - current->x}; in getFillVerticesFromPerimeterAA() 591 const Vertex* last = &(vertices[0]); in getStrokeVerticesFromUnclosedVerticesAA() local 593 Vector2 lastNormal = {current->y - last->y, last->x - current->x}; in getStrokeVerticesFromUnclosedVerticesAA() 659 const Vertex* last = &(perimeter[perimeter.size() - 1]); in getStrokeVerticesFromPerimeterAA() local 661 Vector2 lastNormal = {current->y - last->y, last->x - current->x}; in getStrokeVerticesFromPerimeterAA()
|
/frameworks/rs/api/ |
D | Scanner.cpp | 154 size_t last = s->find('\"', first); in parseDocumentation() local 155 if (last == string::npos) { in parseDocumentation() 158 *documentation = s->substr(first, last - first); in parseDocumentation()
|
/frameworks/av/media/libmedia/ |
D | AudioParameter.cpp | 40 char *last; in AudioParameter() local 43 char *pair = strtok_r(str, ";", &last); in AudioParameter() 62 pair = strtok_r(NULL, ";", &last); in AudioParameter()
|