Home
last modified time | relevance | path

Searched refs:base (Results 1701 - 1725 of 6816) sorted by relevance

1...<<61626364656667686970>>...273

/third_party/node/deps/v8/src/debug/
H A Ddebug-property-iterator.cc8 #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 Dreglist-base.h11 #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 Dcompilation-statistics.cc10 #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 Dgdb-jit.h8 #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 Dmemory-chunk.h10 #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 Dtrace-event.h15 #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 Diris_resource.h56 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 Dtgsi_two_side.c52 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 Dbn_rsa_fips186_4.c253 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 DColumn.java18 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 DCsvParser.java18 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 Dcygwinccompiler.py198 # 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 Dbn_rsa_fips186_4.c253 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 DLimits.cpp144 #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 Dhb-ot-shape-complex-myanmar.cc148 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 Dintf_callable.h18 #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 Dplatform_create_info.h19 #include <base/containers/string.h>
20 #include <base/namespace.h>
/third_party/gn/src/gn/
H A Ddesc_builder.h8 #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 Dpvr_types.h38 #define PVR_DEV_ADDR_OFFSET(base, offset) PVR_DEV_ADDR((base).addr + (offset))
/third_party/node/deps/v8/tools/testrunner/outproc/
H A Dwebkit.py5 from . import base namespace
8 class OutProc(base.ExpectedOutProc):
/third_party/musl/src/thread/
H A D__unmapself.c17 void __unmapself(void *base, size_t size) in __unmapself() argument
21 unmap_base = base; in __unmapself()
/third_party/musl/src/linux/
H A Dfallocate.c5 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 Dqsort_nr.c11 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 Dvk_framebuffer.h33 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 Dvla-sizeof.c23 void* vla_inc(int size, void *base) in vla_inc() argument
27 } *p = base; in vla_inc()

Completed in 13 milliseconds

1...<<61626364656667686970>>...273