Home
last modified time | relevance | path

Searched refs:base (Results 2476 - 2500 of 5565) sorted by relevance

1...<<919293949596979899100>>...223

/third_party/node/deps/v8/include/v8-include/
H A Dv8-internal.h195 // base shifted to the left. This way, it is guaranteed that the offset is
702 // inlined version of base::IsInRange in CanHaveInternalField()
757 Address base = *reinterpret_cast<Address*>(
762 return base + StaticReadOnlyRoot::k##name;
812 Address base = GetPtrComprCageBaseFromOnHeapAddress(heap_object_ptr);
813 return base + static_cast<Address>(static_cast<uintptr_t>(value));
869 Address base = GetPtrComprCageBaseFromOnHeapAddress(heap_object_ptr);
870 return base + static_cast<Address>(static_cast<uintptr_t>(value));
900 // A base class for backing stores, which is needed due to vagaries of
/third_party/node/deps/v8/src/codegen/x64/
H A Dassembler-x64-inl.h10 #include "src/base/cpu.h"
11 #include "src/base/memory.h"
119 void Assembler::emit_optional_rex_32(XMMRegister reg, XMMRegister base) { in emit_optional_rex_32() argument
120 byte rex_bits = (reg.code() & 0x8) >> 1 | (base.code() & 0x8) >> 3; in emit_optional_rex_32()
124 void Assembler::emit_optional_rex_32(XMMRegister reg, Register base) { in emit_optional_rex_32() argument
125 byte rex_bits = (reg.code() & 0x8) >> 1 | (base.code() & 0x8) >> 3; in emit_optional_rex_32()
129 void Assembler::emit_optional_rex_32(Register reg, XMMRegister base) { in emit_optional_rex_32() argument
130 byte rex_bits = (reg.code() & 0x8) >> 1 | (base.code() & 0x8) >> 3; in emit_optional_rex_32()
/third_party/node/deps/v8/src/libsampler/
H A Dsampler.cc36 #include "src/base/win32-headers.h"
65 #include "src/base/atomic-utils.h"
66 #include "src/base/platform/platform.h"
251 static base::LeakyObject<SamplerManager> instance; in instance()
313 base::MutexGuard lock_guard(mutex_.Pointer()); in IncreaseSamplerCount()
318 base::MutexGuard lock_guard(mutex_.Pointer()); in DecreaseSamplerCount()
323 base::MutexGuard lock_guard(mutex_.Pointer()); in Installed()
352 static base::LazyMutex mutex_;
358 base::LazyMutex SignalHandler::mutex_ = LAZY_MUTEX_INITIALIZER;
/third_party/node/deps/v8/src/torque/
H A Dtype-visitor.cc62 std::string ComputeGeneratesType(base::Optional<std::string> opt_gen, in ComputeGeneratesType()
209 base::nullopt, in ComputeType()
402 base::Optional<std::string> arguments_variable; in MakeSignature()
442 base::Optional<ClassFieldIndexInfo> array_length = field_expression.index; in VisitClassFieldsAndMethods()
505 base::Optional<GenericType*> maybe_generic_type = in ComputeTypeForStructExpression()
537 TransformVector<base::Optional<const Type*>>(term_argument_types)); in ComputeTypeForStructExpression()
/third_party/mesa3d/src/gallium/drivers/d3d12/
H A Dd3d12_query.cpp53 struct threaded_query base; member
192 pipe_resource *predicate = &query->predicate->base.b;
207 struct d3d12_screen *screen = d3d12_screen(ctx->base.screen);
216 results = pipe_buffer_map_range(&ctx->base, q->buffer, q->buffer_offset,
300 pipe_buffer_unmap(&ctx->base, transfer);
620 u_suballocator_init(&ctx->query_allocator, &ctx->base, 4096, 0, PIPE_USAGE_STAGING,
/third_party/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_pipe_aapoint.c121 struct tgsi_transform_context base; member
378 transform.base.prolog = aa_transform_prolog; in generate_aapoint_fs()
379 transform.base.epilog = aa_transform_epilog; in generate_aapoint_fs()
380 transform.base.transform_instruction = aa_transform_inst; in generate_aapoint_fs()
381 transform.base.transform_declaration = aa_transform_decl; in generate_aapoint_fs()
383 aapoint_fs.tokens = tgsi_transform_shader(orig_fs->tokens, newLen, &transform.base); in generate_aapoint_fs()
H A Ddraw_pipe_aaline.c106 struct tgsi_transform_context base; member
291 transform.base.prolog = aa_transform_prolog; in generate_aaline_fs()
292 transform.base.epilog = aa_transform_epilog; in generate_aaline_fs()
293 transform.base.transform_instruction = aa_transform_inst; in generate_aaline_fs()
294 transform.base.transform_declaration = aa_transform_decl; in generate_aaline_fs()
296 aaline_fs.tokens = tgsi_transform_shader(orig_fs->tokens, newLen, &transform.base); in generate_aaline_fs()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/Orc/
H A DOrcRemoteTargetServer.h128 Addr = MB.base(); in allocate()
129 assert(Allocs.find(MB.base()) == Allocs.end() && "Duplicate alloc"); in allocate()
130 Allocs[MB.base()] = std::move(MB); in allocate()
290 TargetT::writeResolverCode(static_cast<uint8_t *>(ResolverBlock.base()), in handleEmitResolverBlock()
311 uint8_t *TrampolineMem = static_cast<uint8_t *>(TrampolineBlock.base()); in handleEmitTrampolineBlock()
312 TargetT::writeTrampolines(TrampolineMem, ResolverBlock.base(), in handleEmitTrampolineBlock()
/third_party/python/Lib/test/
H A Dtest_sysconfig.py354 base = get_config_var('base')
365 base = base.replace(sys.exec_prefix, sys.base_prefix)
370 base = base.replace(sys.base_prefix, sys.prefix)
373 expected = os.path.normpath(global_path.replace(base, user, 1))
/base/security/certificate_framework/test/unittest/cf_adapter_test/src/
H A Dcf_ability_test.cpp60 * @tc.desc: Test RegisterAbility interface base function
75 * @tc.desc: Test GetAbility interface base function
90 if (adapterFunc->base.type != CF_MAGIC(CF_MAGIC_TYPE_ADAPTER_FUNC, CF_OBJ_TYPE_CERT)) { in HWTEST_F()
91 printf("func magic id is %lu\n", adapterFunc->base.type); in HWTEST_F()
/base/security/device_auth/frameworks/deviceauth_lite/inc/base/
H A Dbase.h191 struct base { struct
193 uint8_t base[HC_BASE_LEN]; member
/base/security/security_guard/frameworks/common/utils/src/
H A Dsecurity_guard_utils.cpp61 bool SecurityGuardUtils::StrToLL(const std::string &str, long long &value, int32_t base) in StrToLL() argument
66 value = strtoll(add, &end, base); in StrToLL()
/test/xts/device_attest/test/fuzztest/devattestcorenetwork_fuzzer/
H A Ddevattest_core_network_fuzz.c48 int base = 10; in StringToInt32() local
50 sum = (sum * base) + (value[i] - '0'); in StringToInt32()
/test/xts/hats/kernel/freelist/safe_unlink/
H A DMalloc_safe_unlink.cpp74 struct group_in *base = (struct group_in *)((uintptr_t)p - UNIT*offset - UNIT); in get_group() local
75 return base; in get_group()
/test/xts/hats/kernel/freelist/modify_pointer/
H A DMalloc_modify_pointer.cpp79 struct group_in *base = (struct group_in *)((uintptr_t)p - UNIT*offset - UNIT); in get_group() local
80 return base; in get_group()
/test/xts/hats/kernel/freelist/encode_pointer/
H A DMalloc_encode_pointer.cpp74 struct group_in *base = (struct group_in *)((uintptr_t)p - UNIT*offset - UNIT); in get_group() local
75 return base; in get_group()
/third_party/curl/tests/libtest/
H A Dlib572.c36 static char *suburl(const char *base, int i) in suburl() argument
38 return curl_maprintf("%s%.4d", base, i); in suburl()
H A Dlib568.c36 static char *suburl(const char *base, int i) in suburl() argument
38 return curl_maprintf("%s%.4d", base, i); in suburl()
/third_party/elfutils/tests/
H A Ddebuginfod-subr.sh143 PORT1=`expr '(' $RANDOM % 50 ')' + $base`
148 PORT2=`expr '(' $RANDOM % 50 ')' + $base + 50`
/third_party/gn/src/base/strings/
H A Dstringprintf.cc5 #include "base/strings/stringprintf.h"
13 #include "base/scoped_clear_errno.h"
14 #include "base/strings/string_util.h"
15 #include "base/strings/utf_string_conversions.h"
18 namespace base { namespace
32 return base::vsnprintf(buffer, buf_size, format, argptr); in vsnprintfT()
142 } // namespace base
/third_party/gn/src/gn/
H A Dbundle_file_rule.cc7 #include "base/strings/stringprintf.h"
25 base::StringPrintf("Property %s is required.", property_name), in ErrMissingPropertyForExpansion()
26 base::StringPrintf( in ErrMissingPropertyForExpansion()
H A Dloader.h13 #include "base/memory/ref_counted.h"
30 class Loader : public base::RefCountedThreadSafe<Loader> {
67 friend class base::RefCountedThreadSafe<Loader>;
H A Dsource_dir.h14 #include "base/files/file_path.h"
15 #include "base/logging.h"
85 base::FilePath Resolve(const base::FilePath& source_root) const;
H A Dsource_dir.cc9 #include "base/logging.h"
141 base::FilePath SourceDir::Resolve(const base::FilePath& source_root) const { in Resolve()
/third_party/ffmpeg/libswresample/
H A Dsoxr_resample.c99 static int64_t get_delay(struct SwrContext *s, int64_t base){ in get_delay() argument
108 return (int64_t)(delay_s * base + .5); in get_delay()

Completed in 18 milliseconds

1...<<919293949596979899100>>...223