/third_party/node/deps/v8/src/heap/cppgc/ |
H A D | object-start-bitmap.h | 52 inline void SetBit(ConstAddress); 136 void ObjectStartBitmap::SetBit(ConstAddress header_address) { in SetBit() function in cppgc::internal::ObjectStartBitmap 226 inline void SetBit(ConstAddress); 252 void PlatformAwareObjectStartBitmap::SetBit(ConstAddress header_address) { in SetBit() function in cppgc::internal::PlatformAwareObjectStartBitmap 254 ObjectStartBitmap::SetBit<AccessMode::kNonAtomic>(header_address); in SetBit() 257 ObjectStartBitmap::SetBit<mode>(header_address); in SetBit()
|
H A D | object-allocator.h | 174 .SetBit<AccessMode::kAtomic>(reinterpret_cast<ConstAddress>(&filler)); in AllocateObjectOnSpace() 211 .SetBit<AccessMode::kAtomic>(reinterpret_cast<ConstAddress>(header)); in AllocateObjectOnSpace()
|
H A D | explicit-management.cc | 121 NormalPage::From(&base_page)->object_start_bitmap().SetBit(free_start); in Shrink()
|
H A D | compactor.cc | 262 current_page_->object_start_bitmap().SetBit(compact_frontier); in RelocateObject() 310 current_page_->object_start_bitmap().SetBit(free_start); in ReturnCurrentPageToSpace()
|
H A D | object-allocator.cc | 68 .SetBit<AccessMode::kAtomic>(start); in AddToFreeList()
|
/third_party/node/deps/v8/src/heap/ |
H A D | object-start-bitmap.h | 52 inline void SetBit(Address); 118 void ObjectStartBitmap::SetBit(Address base_ptr) { in SetBit() function in v8::internal::ObjectStartBitmap
|
H A D | heap-allocator-inl.h | 148 Page::FromHeapObject(object)->object_start_bitmap()->SetBit( in AllocateRaw()
|
H A D | sweeper.cc | 420 p->object_start_bitmap()->SetBit(object.address()); in RawSweep()
|
/third_party/protobuf/src/google/protobuf/ |
H A D | generated_message_reflection.cc | 1523 SetBit(message, field); in MutableMessage() 1559 SetBit(message, field); in UnsafeArenaSetAllocatedMessage() 2036 void Reflection::SetBit(Message* message, const FieldDescriptor* field) const { in SetBit() function in google::protobuf::Reflection 2064 SetBit(message1, field); in SwapBit() 2069 SetBit(message2, field); in SwapBit() 2191 real_oneof ? SetOneofCase(message, field) : SetBit(message, field); in SetField() 2198 : SetBit(message, field); in MutableField()
|
H A D | generated_message_table_driven_lite.h | 116 inline void SetBit(uint32* has_bits, uint32 has_bit_index) { in SetBit() function 126 SetBit(has_bits, has_bit_index); in MutableField()
|
H A D | message.h | 1045 inline void SetBit(Message* message, const FieldDescriptor* field) const;
|
/third_party/skia/third_party/externals/imgui/misc/freetype/ |
H A D | imgui_freetype.cpp | 464 src_tmp.GlyphsSet.SetBit(codepoint); in ImFontAtlasBuildWithFreeTypeEx() 465 dst_tmp.GlyphsSet.SetBit(codepoint); in ImFontAtlasBuildWithFreeTypeEx()
|
/third_party/mesa3d/src/imgui/ |
H A D | imgui.h | 1954 void SetBit(int n) { int off = (n >> 5); int mask = 1 << (n & 31); UsedChars[off] |= mask; } // Set bit n in the array in SetBit() function 1955 void AddChar(ImWchar c) { SetBit(c); } // Add character in AddChar()
|
H A D | imgui_internal.h | 259 void SetBit(int n, bool v) { int off = (n >> 5); int mask = 1 << (n & 31); if (v) Storage[off] |= mask; else Storage[off] &= ~mask; } in SetBit() function
|
H A D | imgui_draw.cpp | 1859 src_tmp.GlyphsSet.SetBit(codepoint, true); in ImFontAtlasBuildWithStbTruetype() 1861 dst_tmp.GlyphsSet.SetBit(codepoint, true); in ImFontAtlasBuildWithStbTruetype()
|
/third_party/skia/third_party/externals/imgui/ |
H A D | imgui.h | 2588 inline void SetBit(size_t n) { int off = (int)(n >> 5); ImU32 mask = 1u << (n & 31); UsedChars[off] |= mask; } // Set bit n in the array in SetBit() function 2589 inline void AddChar(ImWchar c) { SetBit(c); } // Add character in AddChar()
|
H A D | imgui_internal.h | 540 void SetBit(int n) { IM_ASSERT(n < BITCOUNT); ImBitArraySetBit(Storage, n); } 553 void SetBit(int n) { IM_ASSERT(n < (Storage.Size << 5)); ImBitArraySetBit(Storage.Data, n); }
|
H A D | imgui_draw.cpp | 2411 src_tmp.GlyphsSet.SetBit(codepoint); in ImFontAtlasBuildWithStbTruetype() 2412 dst_tmp.GlyphsSet.SetBit(codepoint); in ImFontAtlasBuildWithStbTruetype()
|
H A D | imgui_tables.cpp | 2383 merge_group->ChannelsMask.SetBit(channel_no); in TableMergeDrawChannels()
|