/third_party/node/deps/v8/src/debug/ |
H A D | debug-property-iterator.cc | 8 #include "src/base/flags.h" 129 base::ScopedVector<char> property_message(128); in attributes() 130 base::ScopedVector<char> name_buffer(100); in attributes() 132 v8::base::SNPrintF(property_message, "Invalid result for property \"%s\"\n", in attributes() 202 base::Flags<debug::NativeAccessorType, int> GetNativeAccessorDescriptorInternal( in GetNativeAccessorDescriptorInternal() 214 base::Flags<debug::NativeAccessorType, int> result; in GetNativeAccessorDescriptorInternal()
|
/third_party/node/deps/v8/src/codegen/ |
H A D | reglist-base.h | 11 #include "src/base/bits.h" 12 #include "src/base/iterator.h" 13 #include "src/base/template-utils.h" 68 return base::bits::CountPopulation(regs_); in Count() 114 int first_code = base::bits::CountTrailingZerosNonZero(regs_); in first() 121 8 * sizeof(regs_) - 1 - base::bits::CountLeadingZeros(regs_); in last() 155 : public base::iterator<std::forward_iterator_tag, RegisterT> { 174 : public base::iterator<std::forward_iterator_tag, RegisterT> {
|
/third_party/node/deps/v8/src/diagnostics/ |
H A D | compilation-statistics.cc | 10 #include "src/base/platform/platform.h" 18 base::MutexGuard guard(&record_mutex_); in RecordPhaseStats() 31 base::MutexGuard guard(&record_mutex_); in RecordPhaseKindStats() 45 base::MutexGuard guard(&record_mutex_); in RecordTotalStats() 94 base::OS::SNPrintF(buffer, kBufferSize, in WriteLine() 99 base::OS::SNPrintF(buffer, kBufferSize, in WriteLine()
|
H A D | gdb-jit.h | 8 #include "src/base/address-region.h" 42 V8_EXPORT_PRIVATE void AddRegionForTesting(const base::AddressRegion region); 45 NumOverlapEntriesForTesting(const base::AddressRegion region);
|
/third_party/node/deps/v8/src/heap/ |
H A D | memory-chunk.h | 10 #include "src/base/macros.h" 11 #include "src/base/platform/mutex.h" 13 #include "src/heap/base/active-system-pages.h" 91 base::Mutex* mutex() { return mutex_; } in mutex() 114 return base::AsAtomicPointer::Acquire_Load(&slot_set_[type]); in slot_set() 121 return base::AsAtomicPointer::Acquire_Load(&typed_slot_set_[type]); in typed_slot_set() 254 base::Mutex* mutex_; 258 base::Mutex* page_protection_change_mutex_;
|
/third_party/node/deps/v8/src/heap/cppgc/ |
H A D | trace-event.h | 15 #include "base/trace_event/common/trace_event_common.h" 17 #include "src/base/atomicops.h" 18 #include "src/base/macros.h" 73 #define TRACE_EVENT_API_ATOMIC_WORD v8::base::AtomicWord 74 #define TRACE_EVENT_API_ATOMIC_LOAD(var) v8::base::Relaxed_Load(&(var)) 76 v8::base::Relaxed_Store(&(var), (value)) 78 v8::base::Relaxed_Load(reinterpret_cast<const v8::base::Atomic8*>( \ 163 // This is the base implementation for integer types (including bool) and enums.
|
/third_party/mesa3d/src/gallium/drivers/iris/ |
H A D | iris_resource.h | 56 struct threaded_resource base; member 227 struct pipe_sampler_view base; member 234 * chained together; this skips having to traverse base->texture->*. 246 struct pipe_image_view base; member 259 struct pipe_surface base; member 274 struct threaded_transfer base; member
|
/third_party/mesa3d/src/gallium/auxiliary/tgsi/ |
H A D | tgsi_two_side.c | 52 struct tgsi_transform_context base; member 208 transform.base.transform_declaration = xform_decl; in tgsi_add_two_side() 209 transform.base.transform_instruction = xform_inst; in tgsi_add_two_side() 210 transform.base.prolog = emit_prolog; in tgsi_add_two_side() 219 return tgsi_transform_shader(tokens_in, new_len, &transform.base); in tgsi_add_two_side()
|
/third_party/node/deps/openssl/openssl/crypto/bn/ |
H A D | bn_rsa_fips186_4.c | 253 BIGNUM *base, *range; in ossl_bn_rsa_fips186_4_derive_prime() local 257 base = BN_CTX_get(ctx); in ossl_bn_rsa_fips186_4_derive_prime() 274 * base = 1/sqrt(2) * 2^(nlen/2) in ossl_bn_rsa_fips186_4_derive_prime() 276 * X = base + random(range) in ossl_bn_rsa_fips186_4_derive_prime() 282 if (!BN_lshift(base, &ossl_bn_inv_sqrt_2, in ossl_bn_rsa_fips186_4_derive_prime() 285 || !BN_sub(range, range, base)) in ossl_bn_rsa_fips186_4_derive_prime() 320 if (!BN_priv_rand_range_ex(X, range, 0, ctx) || !BN_add(X, X, base)) in ossl_bn_rsa_fips186_4_derive_prime()
|
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/table/ |
H A D | Column.java | 18 import static com.google.common.base.CharMatcher.inRange; 19 import static com.google.common.base.CharMatcher.whitespace; 20 import static com.google.common.base.Preconditions.checkArgument; 25 import com.google.common.base.CaseFormat; 26 import com.google.common.base.CharMatcher;
|
H A D | CsvParser.java | 18 import static com.google.common.base.CharMatcher.isNot; 19 import static com.google.common.base.CharMatcher.javaIsoControl; 20 import static com.google.common.base.CharMatcher.whitespace; 21 import static com.google.common.base.Preconditions.checkArgument; 24 import com.google.common.base.CharMatcher;
|
/third_party/python/Lib/distutils/ |
H A D | cygwinccompiler.py | 198 # name of dll to give the helper files the same base name 257 base, ext = os.path.splitext(os.path.normcase(src_name)) 262 base = os.path.basename (base) 266 base + ext + self.obj_extension)) 269 base + self.obj_extension))
|
/third_party/openssl/crypto/bn/ |
H A D | bn_rsa_fips186_4.c | 253 BIGNUM *base, *range; in ossl_bn_rsa_fips186_4_derive_prime() local 257 base = BN_CTX_get(ctx); in ossl_bn_rsa_fips186_4_derive_prime() 274 * base = 1/sqrt(2) * 2^(nlen/2) in ossl_bn_rsa_fips186_4_derive_prime() 276 * X = base + random(range) in ossl_bn_rsa_fips186_4_derive_prime() 282 if (!BN_lshift(base, &ossl_bn_inv_sqrt_2, in ossl_bn_rsa_fips186_4_derive_prime() 285 || !BN_sub(range, range, base)) in ossl_bn_rsa_fips186_4_derive_prime() 320 if (!BN_priv_rand_range_ex(X, range, 0, ctx) || !BN_add(X, X, base)) in ossl_bn_rsa_fips186_4_derive_prime()
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/ |
H A D | Limits.cpp | 144 #define X(Better, limitName, base, ...) limits->limitName = base; in GetDefaultLimits() 151 #define X(Better, limitName, base, ...) \ in ReifyDefaultLimits() 154 static_cast<decltype(limits.limitName)>(base), limits.limitName)) { \ in ReifyDefaultLimits() 156 out.limitName = base; \ in ReifyDefaultLimits()
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-ot-shape-complex-myanmar.cc | 148 unsigned int base = end; in initial_reordering_consonant_syllable() local 159 base = start; in initial_reordering_consonant_syllable() 165 base = limit; in initial_reordering_consonant_syllable() 170 base = i; in initial_reordering_consonant_syllable() 181 for (; i < base; i++) in initial_reordering_consonant_syllable() 193 if (info[i].myanmar_category() == OT_MR) /* Pre-base reordering */ in initial_reordering_consonant_syllable()
|
/foundation/graphic/graphic_3d/lume/metaobject/include/meta/interface/ |
H A D | intf_callable.h | 18 #include <meta/base/interface_macros.h> 19 #include <meta/base/namespace.h>
|
/foundation/graphic/graphic_3d/lume/LumeEngine/api/platform/common/core/os/ |
H A D | platform_create_info.h | 19 #include <base/containers/string.h> 20 #include <base/namespace.h>
|
/third_party/gn/src/gn/ |
H A D | desc_builder.h | 8 #include "base/values.h" 14 static std::unique_ptr<base::DictionaryValue> DescriptionForTarget( 22 static std::unique_ptr<base::DictionaryValue> DescriptionForConfig(
|
/third_party/mesa3d/src/imagination/include/ |
H A D | pvr_types.h | 38 #define PVR_DEV_ADDR_OFFSET(base, offset) PVR_DEV_ADDR((base).addr + (offset))
|
/third_party/node/deps/v8/tools/testrunner/outproc/ |
H A D | webkit.py | 5 from . import base namespace 8 class OutProc(base.ExpectedOutProc):
|
/third_party/musl/src/thread/ |
H A D | __unmapself.c | 17 void __unmapself(void *base, size_t size) in __unmapself() argument 21 unmap_base = base; in __unmapself()
|
/third_party/musl/src/linux/ |
H A D | fallocate.c | 5 int fallocate(int fd, int mode, off_t base, off_t len) in fallocate() argument 7 return syscall(SYS_fallocate, fd, mode, __SYSCALL_LL_E(base), in fallocate()
|
/third_party/musl/src/stdlib/ |
H A D | qsort_nr.c | 11 void qsort(void *base, size_t nel, size_t width, cmpfun cmp) in qsort() argument 13 __qsort_r(base, nel, width, wrapper_cmp, (void *)cmp); in qsort()
|
/third_party/mesa3d/src/vulkan/runtime/ |
H A D | vk_framebuffer.h | 33 struct vk_object_base base; member 46 VK_DEFINE_NONDISP_HANDLE_CASTS(vk_framebuffer, base, VkFramebuffer,
|
/third_party/ltp/tools/sparse/sparse-src/validation/ |
H A D | vla-sizeof.c | 23 void* vla_inc(int size, void *base) in vla_inc() argument 27 } *p = base; in vla_inc()
|