/third_party/node/deps/v8/src/numbers/ |
H A D | integer-literal.h | 8 #include "src/base/optional.h" 46 base::Optional<T> TryTo() const { in TryTo() 48 if (!IsRepresentableAs<T>()) return base::nullopt; in TryTo()
|
/third_party/node/deps/v8/src/regexp/ |
H A D | regexp-bytecodes.h | 8 #include "src/base/bounds.h" 9 #include "src/base/macros.h" 10 #include "src/base/strings.h" 96 12) /* bc8 pad8 base::uc16 base::uc16 base::uc16 addr32 */ \ 97 V(CHECK_CHAR_IN_RANGE, 32, 12) /* bc8 pad24 base::uc16 base::uc16 addr32 */ \ 99 12) /* bc8 pad24 base::uc16 base [all...] |
/third_party/node/deps/v8/src/snapshot/ |
H A D | references.h | 8 #include "src/base/bit-field.h" 9 #include "src/base/hashmap.h" 92 using TypeBits = base::BitField<SpecialValueType, 0, 2>; 140 IdentityMap<SerializerReference, base::DefaultAllocationPolicy> map_;
|
/third_party/node/deps/v8/src/tasks/ |
H A D | cancelable-task.h | 12 #include "src/base/macros.h" 13 #include "src/base/platform/condition-variable.h" 86 base::ConditionVariable cancelable_tasks_barrier_; 87 base::Mutex mutex_;
|
/third_party/mesa3d/src/gallium/drivers/etnaviv/ |
H A D | etnaviv_etc2.c | 88 const uint8_t *base = buffer; in etna_etc2_calculate_blocks() local 104 util_dynarray_append(offsets, unsigned, src + offset - base); in etna_etc2_calculate_blocks()
|
H A D | etnaviv_query_acc_perfmon.c | 38 struct etna_acc_query base; member 122 return &pq->base; in perfmon_allocate()
|
H A D | etnaviv_uniforms.c | 72 uint32_t base = frag ? screen->specs.ps_uniforms_offset : screen->specs.vs_uniforms_offset; in etna_uniforms_write() local 79 etna_emit_load_state(stream, base >> 2, uinfo->count, 0); in etna_uniforms_write()
|
H A D | etnaviv_context.h | 70 struct pipe_transfer base; member 110 struct pipe_context base; member
|
/third_party/mesa3d/src/gallium/frontends/nine/ |
H A D | pixelshader9.h | 37 struct NineUnknown base; member 120 if (context->rt[0]->base.info.nr_samples) in NinePixelShader9_UpdateKey()
|
/third_party/mesa3d/src/panfrost/lib/ |
H A D | pan_encoder.h | 236 panfrost_make_resource_table(struct panfrost_ptr base, unsigned index, in panfrost_make_resource_table() argument 242 pan_pack(base.cpu + index * pan_size(RESOURCE), RESOURCE, cfg) { in panfrost_make_resource_table()
|
/third_party/mesa3d/src/vulkan/runtime/ |
H A D | vk_shader_module.c | 145 vk_object_base_init(src->base.device, &dst->base, VK_OBJECT_TYPE_SHADER_MODULE); in vk_shader_module_clone()
|
/third_party/mesa3d/src/gallium/drivers/panfrost/ |
H A D | pan_compute.c | 123 util_range_add(&rsrc->base, &rsrc->valid_buffer_range, in panfrost_set_global_binding() 124 0, rsrc->base.width0); in panfrost_set_global_binding()
|
/third_party/node/deps/openssl/openssl/crypto/ec/curve448/ |
H A D | point_448.h | 33 /* Precomputed base */ 80 /* Precomputed table for the base point on the curve. */ 216 * out (out): The scaled point base*scalar 217 * base (in): The point to be scaled. 222 * C448_FAILURE: The scalarmul didn't succeed, because the base point is in a 227 const uint8_t base[X448_PUBLIC_BYTES], 241 * As it happens, this aligns with the base point definitions; that is, 242 * if you pass the Decaf/Ristretto base point to this function, the result 244 * base point. 255 * RFC 7748 Diffie-Hellman base poin [all...] |
/third_party/node/deps/uvwasi/src/ |
H A D | sync_helpers.c | 60 buf->base = recv_data->base; in recv_alloc_cb()
|
/third_party/node/deps/v8/ |
H A D | .ycm_extra_conf.py | 106 base = filename[:-6] if filename.endswith('-inl.h') else filename[:-2] 107 for alternate in [base + e for e in ['.cc', '.cpp']]:
|
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/table/ |
H A D | Change.java | 18 import static com.google.common.base.Preconditions.checkArgument; 19 import static com.google.common.base.Preconditions.checkNotNull;
|
/third_party/rust/crates/bindgen/bindgen/ir/analysis/ |
H A D | has_destructor.rs | 17 /// or if it's a struct, T has a destructor if any of its base members has a destructor, 122 info.base_members().iter().any(|base| { in constrain() 123 self.have_destructor.contains(&base.ty.into()) in constrain()
|
/third_party/python/Tools/freeze/ |
H A D | checkextensions.py | 66 base, ext = os.path.splitext(tail) 68 tail = base + '.o'
|
/third_party/python/Lib/ |
H A D | rlcompleter.py | 205 for base in klass.__bases__: 206 ret = ret + get_class_members(base)
|
/third_party/openssl/crypto/ec/curve448/ |
H A D | point_448.h | 33 /* Precomputed base */ 80 /* Precomputed table for the base point on the curve. */ 216 * out (out): The scaled point base*scalar 217 * base (in): The point to be scaled. 222 * C448_FAILURE: The scalarmul didn't succeed, because the base point is in a 227 const uint8_t base[X448_PUBLIC_BYTES], 241 * As it happens, this aligns with the base point definitions; that is, 242 * if you pass the Decaf/Ristretto base point to this function, the result 244 * base point. 255 * RFC 7748 Diffie-Hellman base poin [all...] |
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/opentype/ |
H A D | ChainContextSubst.java | 19 ChainContextSubst(ReadableFontData data, int base, boolean dataIsCanonical) { in ChainContextSubst() argument 20 super(data, base, dataIsCanonical); in ChainContextSubst()
|
H A D | ContextSubst.java | 18 ContextSubst(ReadableFontData data, int base, boolean dataIsCanonical) { in ContextSubst() argument 19 super(data, base, dataIsCanonical); in ContextSubst()
|
H A D | SingleSubst.java | 15 SingleSubst(ReadableFontData data, int base, boolean dataIsCanonical) { in SingleSubst() argument 16 super(data, base, dataIsCanonical); in SingleSubst()
|
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/opentype/chaincontextsubst/ |
H A D | ChainSubGenericRule.java | 19 protected ChainSubGenericRule(ReadableFontData data, int base, boolean dataIsCanonical) { in ChainSubGenericRule() argument 43 protected Builder(ReadableFontData data, int base, boolean dataIsCanonical) { in Builder() argument
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | vzone.h | 301 * Gets the first time zone transition after the base time. 303 * @param base The base time. 304 * @param inclusive Whether the base time is inclusive or not. 305 * @param result Receives the first transition after the base time. 309 vzone_getNextTransition(VZone* zone, UDate base, UBool inclusive, ZTrans* result); 312 * Gets the most recent time zone transition before the base time. 314 * @param base The base time. 315 * @param inclusive Whether the base tim [all...] |