Home
last modified time | relevance | path

Searched refs:EXTERNAL (Results 1 - 25 of 34) sorted by relevance

12

/third_party/node/deps/icu-small/source/common/
H A Dulocale.cpp16 #define EXTERNAL(i) (reinterpret_cast<ULocale*>(i)) macro
24 return EXTERNAL(icu::Locale::createFromName(str.data()).clone()); in ulocale_openForLocaleID()
31 return EXTERNAL(l.clone());
H A Dulocbuilder.cpp18 #define EXTERNAL(i) (reinterpret_cast<ULocaleBuilder*>(i)) macro
23 return EXTERNAL(new icu::LocaleBuilder()); in ulocbld_open()
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/
H A DVkSemaphore.cpp223 template<class EXTERNAL>
227 vk::allocateHostMemory(sizeof(EXTERNAL), alignof(EXTERNAL), allocator, VK_SYSTEM_ALLOCATION_SCOPE_OBJECT)); in allocateExternal()
228 new(ext) EXTERNAL(); in allocateExternal()
H A DVkSemaphore.hpp153 template<class EXTERNAL>
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/
H A Dcord_internal.h183 EXTERNAL = 4, enumerator
196 // data edge, i.e. an external or flat rep. By having FLAT == EXTERNAL + 1, we
197 // can perform this check in a single branch as 'tag >= EXTERNAL'
199 // so likewise align RING to EXTERNAL.
201 // DTRT when it sees a condition like `tag == EXTERNAL || tag >= FLAT`.
203 static_assert(EXTERNAL == RING + 1, "BTREE and EXTERNAL not consecutive");
204 static_assert(FLAT == EXTERNAL + 1, "EXTERNAL and FLAT not consecutive");
209 : length(l), refcount(immortal), tag(EXTERNAL), storag in CordRep()
[all...]
H A Dcord_rep_test_util.h70 this->tag = cord_internal::EXTERNAL; in MakeExternal()
131 } else if (rep->tag == cord_internal::EXTERNAL) { in CordToString()
H A Dcord_internal.cc61 } else if (rep->tag == EXTERNAL) { in Destroy()
H A Dcord_rep_ring.h155 // If the provided child is a FLAT or EXTERNAL node, or a SUBSTRING node
156 // containing a FLAT or EXTERNAL node, then flat or external the node is added
174 // If the provided child is a FLAT or EXTERNAL node, or a SUBSTRING node
175 // containing a FLAT or EXTERNAL node, then flat or external the node is
247 // Requires that the provided `rep` is either a FLAT or EXTERNAL CordRep.
251 // Requires that `rep` is either a FLAT, EXTERNAL, or SUBSTRING CordRep.
442 // Appends the provided leaf node. Requires `child` to be FLAT or EXTERNAL.
446 // Prepends the provided leaf node. Requires `child` to be FLAT or EXTERNAL.
461 // `child` to be FLAT or EXTERNAL. on `rep`.
498 return rep->tag != EXTERNAL in GetLeafData()
[all...]
H A Dcord_rep_btree.h39 // only. Allowed types of data edges are FLAT, EXTERNAL and SUBSTRINGs of FLAT
40 // or EXTERNAL nodes. The implementation allows for data to be added to either
141 // `edge` as being a plain data node: EXTERNAL / FLAT or SUBSTRING thereof.
265 // Returns true if the provided rep is a FLAT, EXTERNAL or a SUBSTRING node
266 // holding a FLAT or EXTERNAL child rep.
575 // The fast path is that `rep` is an EXTERNAL or FLAT node, making the below in IsDataEdge()
576 // if a single, well predicted branch. We then repeat the FLAT or EXTERNAL in IsDataEdge()
578 if (rep->tag == EXTERNAL || rep->tag >= FLAT) return true; in IsDataEdge()
580 return rep->tag == EXTERNAL || rep->tag >= FLAT; in IsDataEdge()
H A Dcord_rep_btree.cc54 // Rep may be a CordRepBtree tree, or a SUBSTRING / EXTERNAL / FLAT node.
101 } else if (rep->tag == EXTERNAL) { in DumpAll()
172 // Deletes a leaf node data edge. Requires `rep` to be an EXTERNAL or FLAT
173 // node, or a SUBSTRING of an EXTERNAL or FLAT node.
180 if (rep->tag == EXTERNAL) { in DeleteLeafEdge()
187 assert(rep->tag == EXTERNAL || rep->tag >= FLAT); in DeleteLeafEdge()
H A Dcordz_info.cc184 if (rep.rep->tag == EXTERNAL) { in CountLinearReps()
/third_party/node/deps/v8/src/profiler/
H A Dsymbolizer.cc33 // DOM events handlers are reported as OTHER / EXTERNAL entries. in EntryForVMState()
37 case EXTERNAL: in EntryForVMState()
63 if (sample.has_external_callback && sample.state == EXTERNAL) { in SymbolizeTickSample()
H A Dtick-sample.cc175 if (state != StateTag::EXTERNAL) { in Init()
293 *out_state = StateTag::EXTERNAL; in GetStackSample()
H A Dsampling-heap-profiler.cc173 case EXTERNAL: in AddStack()
174 name = "(EXTERNAL)"; in AddStack()
H A Dcpu-profiler.cc64 if (sample->state == EXTERNAL) ++external_sample_count_;
/third_party/icu/tools/cldr/cldr-to-icu/src/test/java/org/unicode/icu/tool/cldrtoicu/mapper/
H A DTransformsMapperTest.java11 import static org.unicode.icu.tool.cldrtoicu.mapper.TransformsMapperTest.Visibility.EXTERNAL;
60 INTERNAL, EXTERNAL; enum constant
121 cldrData(oneWay("foo", "bar", BACKWARD, "variant", EXTERNAL, "one two three", ++idx)); in testBackward()
/third_party/node/deps/v8/src/execution/
H A Dvm-state.h50 VMState<EXTERNAL> vm_state_;
H A Dthread-local-top.cc33 current_vm_state_ = EXTERNAL; in Clear()
H A Dvm-state-inl.h34 case EXTERNAL: in StateToString()
35 return "EXTERNAL"; in StateToString()
/third_party/node/deps/v8/include/
H A Dv8-unwinder.h43 EXTERNAL,
/third_party/node/deps/v8/include/v8-include/
H A Dv8-unwinder.h43 EXTERNAL,
/third_party/ffmpeg/libavutil/
H A Derror.c47 { ERROR_TAG(EXTERNAL), "Generic error in an external library" },
/third_party/rust/crates/clap/src/util/
H A Did.rs14 pub(crate) const EXTERNAL: &'static str = "";
/third_party/rust/crates/clap/src/parser/
H A Darg_matcher.rs160 let id = Id::from_static_ref(Id::EXTERNAL);
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
H A Dcord_ring_test.cc48 using ::absl::cord_internal::EXTERNAL;
210 this->tag = EXTERNAL; in MakeExternal()
225 this->tag = EXTERNAL; in MakeFakeExternal()

Completed in 17 milliseconds

12