/external/llvm/include/llvm/CodeGen/ |
SlotIndexes.h | 124 IndexListEntry* listEntry() const { 134 return listEntry()->getIndex() | getSlot(); 153 SlotIndex(const SlotIndex &li, Slot s) : lie(li.listEntry(), unsigned(s)) { 213 return A.listEntry()->getIndex() < B.listEntry()->getIndex(); 224 return (other.listEntry()->getIndex() - listEntry()->getIndex()) 245 return SlotIndex(listEntry(), Slot_Block); 252 return SlotIndex(listEntry(), Slot_Dead); 258 return SlotIndex(listEntry(), EC ? Slot_EarlyClobber : Slot_Register) [all...] |
/frameworks/base/core/java/android/speech/tts/ |
SynthesisPlaybackQueueItem.java | 49 private final LinkedList<ListEntry> mDataBufferList = new LinkedList<ListEntry>(); 195 mDataBufferList.add(new ListEntry(buffer)); 220 ListEntry entry = mDataBufferList.poll(); 240 static final class ListEntry { 243 ListEntry(byte[] bytes) {
|
/external/chromium_org/third_party/icu/source/tools/tzcode/ |
zdump.c | 174 typedef struct listentry { struct 176 struct listentry * next; 177 } listentry; typedef in typeref:struct:listentry 182 static int getall(struct listentry ** namelist); 183 static void getzones(char * basedir, char * subdir, struct listentry ** last, int * count); 298 listentry * namelist = NULL; 580 struct listentry * entry = namelist; 581 struct listentry * next; 973 static int getall(struct listentry ** namelist) { 975 struct listentry dummyentry [all...] |
/external/icu4c/tools/tzcode/ |
zdump.c | 174 typedef struct listentry { struct 176 struct listentry * next; 177 } listentry; typedef in typeref:struct:listentry 182 static int getall(struct listentry ** namelist); 183 static void getzones(char * basedir, char * subdir, struct listentry ** last, int * count); 298 listentry * namelist = NULL; 580 struct listentry * entry = namelist; 581 struct listentry * next; 973 static int getall(struct listentry ** namelist) { 975 struct listentry dummyentry [all...] |
/external/llvm/lib/CodeGen/ |
SlotIndexes.cpp | 175 IndexList::iterator ListB = startIdx.listEntry(); 176 IndexList::iterator ListI = endIdx.listEntry(); 238 os << listEntry()->getIndex() << "Berd"[getSlot()];
|