/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/ |
H A D | StringMap.cpp | 34 ItemSize = itemSize; in StringMapImpl() 111 char *ItemStr = (char*)BucketItem+ItemSize; in LookupBucketFor() 154 char *ItemStr = (char*)BucketItem+ItemSize; in FindKey() 173 const char *VStr = (char*)V + ItemSize; in RemoveKey()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | StringMap.cpp | 34 ItemSize = itemSize; in StringMapImpl() 115 char *ItemStr = (char*)BucketItem+ItemSize; in LookupBucketFor() 158 char *ItemStr = (char*)BucketItem+ItemSize; in FindKey() 177 const char *VStr = (char*)V + ItemSize; in RemoveKey()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
H A D | StringMap.h | 59 unsigned ItemSize; member in llvm::StringMapImpl 65 NumBuckets(0), NumItems(0), NumTombstones(0), ItemSize(itemSize) {} in StringMapImpl() 69 ItemSize(RHS.ItemSize) { in StringMapImpl() 76 StringMapImpl(unsigned InitSize, unsigned ItemSize);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
H A D | StringMap.h | 58 unsigned ItemSize; member in llvm::StringMapImpl 62 : ItemSize(itemSize) {} in StringMapImpl() 66 ItemSize(RHS.ItemSize) { in StringMapImpl() 73 StringMapImpl(unsigned InitSize, unsigned ItemSize);
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-ot-shape-complex-arabic-win1256.hh | 56 #define OT_COUNT(Name, ItemSize) ((unsigned int) sizeof(((struct TABLE_NAME*)0)->Name) \ 57 / (unsigned int)(ItemSize) \
|
/third_party/mesa3d/src/imgui/ |
H A D | imgui_widgets.cpp | 215 ItemSize(text_size); in TextUnformatted() 225 ItemSize(text_size); in TextUnformatted() 323 ItemSize(total_bb, style.FramePadding.y); in LabelTextV() 356 const float text_base_offset_y = ImMax(0.0f, window->DC.CurrentLineTextBaseOffset); // Latch before ItemSize changes it in BulletTextV() 359 ItemSize(bb); in BulletTextV() 561 ItemSize(size, style.FramePadding.y); in ButtonEx() 616 ItemSize(size); in InvisibleButton() 636 ItemSize(bb, (size.y >= default_size) ? g.Style.FramePadding.y : 0.0f); in ArrowButtonEx() 851 ItemSize(bb); in Image() 888 ItemSize(b in ImageButton() [all...] |
H A D | imgui_internal.h | 1374 IMGUI_API void ItemSize(const ImVec2& size, float text_offset_y = 0.0f); 1375 IMGUI_API void ItemSize(const ImRect& bb, float text_offset_y = 0.0f);
|
H A D | imgui.cpp | 2743 void ImGui::ItemSize(const ImVec2& size, float text_offset_y) in ItemSize() function in ImGui 2770 void ImGui::ItemSize(const ImRect& bb, float text_offset_y) in ItemSize() function in ImGui 2772 ItemSize(bb.GetSize(), text_offset_y); in ItemSize() 2776 // Note that the size can be different than the one provided to ItemSize(). Typically, widgets that spread over available surface 2777 // declare their minimum size requirement to ItemSize() and then use a larger region for drawing/interaction, which is passed to ItemAdd(). 4405 ItemSize(sz); in EndChild() 6589 ItemSize(group_bb.GetSize(), 0.0f); in EndGroup()
|
/third_party/skia/third_party/externals/imgui/ |
H A D | imgui_widgets.cpp | 239 ItemSize(text_size, 0.0f); in TextEx() 248 ItemSize(text_size, 0.0f); in TextEx() 368 ItemSize(total_bb, style.FramePadding.y); in LabelTextV() 402 ItemSize(total_size, 0.0f); in BulletTextV() 687 ItemSize(size, style.FramePadding.y); in ButtonEx() 744 ItemSize(size); in InvisibleButton() 764 ItemSize(size, (size.y >= default_size) ? g.Style.FramePadding.y : -1.0f); in ArrowButtonEx() 1008 ItemSize(bb); in Image() 1033 ItemSize(bb); in ImageButtonEx() 1084 ItemSize(total_b in Checkbox() [all...] |
H A D | imgui_tables.cpp | 329 ItemSize(outer_rect); in BeginTableEx() 1344 ItemSize(table->OuterRect.GetSize()); in EndTable() 2905 ItemSize(ImVec2(0.0f, label_height)); // Don't declare unclipped width, it'll be fed ContentMaxPosHeadersIdeal
|
H A D | imgui_internal.h | 2462 IMGUI_API void ItemSize(const ImVec2& size, float text_baseline_y = -1.0f); 2463 IMGUI_API void ItemSize(const ImRect& bb, float text_baseline_y = -1.0f);
|
H A D | imgui.cpp | 5095 ItemSize(sz); in EndChild() 7454 // - ItemSize() 7485 // See comments in ItemAdd() about how/why the size provided to ItemSize() vs ItemAdd() may often different. 7486 void ImGui::ItemSize(const ImVec2& size, float text_baseline_y) in ItemSize() function in ImGui 7495 // but since ItemSize() is not yet an API that moves the cursor (to handle e.g. wrapping) enlarging the height has the same effect. in ItemSize() 7519 void ImGui::ItemSize(const ImRect& bb, float text_baseline_y) in ItemSize() function in ImGui 7521 ItemSize(bb.GetSize(), text_baseline_y); in ItemSize() 7525 // Note that the size can be different than the one provided to ItemSize(). Typically, widgets that spread over available surface 7526 // declare their minimum size requirement to ItemSize() and provide a larger region to ItemAdd() which is used drawing/interaction. 7904 ItemSize(group_b in EndGroup() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFUnit.cpp | 246 unsigned ItemSize = getDwarfStringOffsetsByteSize(); in getStringOffsetSectionItem() local 247 uint64_t Offset = getStringOffsetsBase() + Index * ItemSize; in getStringOffsetSectionItem() 248 if (StringOffsetSection.Data.size() < Offset + ItemSize) in getStringOffsetSectionItem() 252 return DA.getRelocatedValue(ItemSize, &Offset); in getStringOffsetSectionItem()
|
H A D | DWARFVerifier.cpp | 611 unsigned ItemSize = DieCU->getDwarfStringOffsetsByteSize(); in verifyDebugInfoForm() local 614 (uint64_t)DieCU->getStringOffsetsBase() + Index * ItemSize; in verifyDebugInfoForm() 615 if (DObj.getStrOffsetsSection().Data.size() < Offset + ItemSize) { in verifyDebugInfoForm()
|