Home | History | Annotate | Download | only in Support

Lines Matching full:bucketitem

85     StringMapEntryBase *BucketItem = TheTable[BucketNo];
87 if (LLVM_LIKELY(!BucketItem)) {
99 if (BucketItem == getTombstoneVal()) {
110 char *ItemStr = (char*)BucketItem+ItemSize;
111 if (Name == StringRef(ItemStr, BucketItem->getKeyLength())) {
139 StringMapEntryBase *BucketItem = TheTable[BucketNo];
141 if (LLVM_LIKELY(!BucketItem))
144 if (BucketItem == getTombstoneVal()) {
154 char *ItemStr = (char*)BucketItem+ItemSize;
155 if (Key == StringRef(ItemStr, BucketItem->getKeyLength())) {