Home
last modified time | relevance | path

Searched refs:base (Results 1801 - 1825 of 5266) sorted by relevance

1...<<71727374757677787980>>...211

/third_party/mesa3d/src/amd/common/
H A Dac_nir_opt_outputs.c45 unsigned base; /* nir_intrinsic_base */ member
218 .base = prev->base, in ac_eliminate_duplicated_output()
296 out_info->base = nir_intrinsic_base(intr); in ac_nir_optimize_outputs()
298 assert(out_info->base == nir_intrinsic_base(intr)); in ac_nir_optimize_outputs()
/third_party/libdrm/etnaviv/
H A Detnaviv_cmd_stream.c79 stream->base.buffer = malloc(size * sizeof(uint32_t)); in etna_cmd_stream_new()
80 if (!stream->base.buffer) { in etna_cmd_stream_new()
85 stream->base.size = size; in etna_cmd_stream_new()
90 return &stream->base; in etna_cmd_stream_new()
94 etna_cmd_stream_del(&stream->base); in etna_cmd_stream_new()
/third_party/mesa3d/src/compiler/nir/
H A Dnir_lower_task_shader.c116 nir_launch_mesh_workgroups(b, dispatch_3d, .base = 0, .range = range); in append_launch_mesh_workgroups_to_nv_task()
184 unsigned base = nir_intrinsic_base(intrin); in lower_task_payload_to_shared() local
186 nir_intrinsic_set_base(intrin, base + s->payload_shared_addr); in lower_task_payload_to_shared()
222 .base = base_shared_addr + const_off); in emit_shared_to_payload_copy()
225 nir_store_task_payload(b, copy, addr, .base = const_off); in emit_shared_to_payload_copy()
/third_party/mesa3d/src/etnaviv/drm/
H A Detnaviv_cmd_stream.c109 stream->base.buffer = malloc(size * sizeof(uint32_t)); in etna_cmd_stream_new()
110 if (!stream->base.buffer) { in etna_cmd_stream_new()
115 stream->base.size = size; in etna_cmd_stream_new()
122 return &stream->base; in etna_cmd_stream_new()
126 etna_cmd_stream_del(&stream->base); in etna_cmd_stream_new()
/third_party/node/benchmark/
H A Dcommon.js363 // item.base might be null. It should be converted into `undefined`.
364 result.push([item.input, item.base ?? undefined]);
365 } else if (item.base !== null) {
366 result.push(item.base);
377 * Other types contain 200 data points with or without base.
380 * @param {boolean} withBase Whether to include a base URL
407 result = result.map(([input, base]) => new URL(input, base));
/third_party/mesa3d/src/mesa/main/
H A Dextensions.c249 GLboolean *base = (GLboolean *) extensions; in _mesa_init_extensions() local
250 GLboolean *sentinel = base + o(extension_sentinel); in _mesa_init_extensions()
254 for (i = base; i != sentinel; ++i) in _mesa_init_extensions()
319 const bool *base = (bool *) &ctx->Extensions; in _mesa_extension_supported() local
322 return (ctx->Version >= ext->version[ctx->API]) && base[ext->offset]; in _mesa_extension_supported()
/third_party/node/deps/ngtcp2/nghttp3/lib/
H A Dnghttp3_qpack.h282 * a header field to encode. |base| is base. |allow_blocking| is
295 const nghttp3_nv *nv, uint64_t base,
335 * Count. |base| is Base.
345 uint64_t base);
364 * |base| is base.
374 uint64_t absidx, uint64_t base);
395 * into dynamic table to reference a name. |base| is a base
895 uint64_t base; global() member
[all...]
/third_party/node/deps/v8/src/common/
H A Dassert-scope.h12 #include "src/base/macros.h"
13 #include "src/base/optional.h"
14 #include "src/base/platform/mutex.h"
48 base::Optional<uint32_t> old_data_;
290 base::Optional<DisallowHeapAccess> maybe_disallow_;
297 explicit NoGarbageCollectionMutexGuard(base::Mutex* mutex) in NoGarbageCollectionMutexGuard()
310 base::MutexGuard guard_;
311 base::Mutex* mutex_;
/third_party/node/deps/v8/src/codegen/
H A Dsafepoint-table.h8 #include "src/base/bit-field.h"
9 #include "src/base/iterator.h"
10 #include "src/base/memory.h"
33 base::Vector<uint8_t> tagged_slots, int trampoline_pc) in SafepointEntry()
75 base::Vector<const uint8_t> tagged_slots() const { in tagged_slots()
84 base::Vector<uint8_t> tagged_slots_;
136 base::Vector<uint8_t> tagged_slots( in GetEntry()
155 using HasDeoptDataField = base::BitField<bool, 0, 1>;
/third_party/node/deps/v8/src/heap/
H A Dscavenger.h8 #include "src/base/platform/condition-variable.h"
9 #include "src/heap/base/worklist.h"
35 ::heap::base::Worklist<EphemeronHashTable, kEphemeronTableListSegmentSize>;
53 ::heap::base::Worklist<ObjectAndSize,
56 ::heap::base::Worklist<PromotionListEntry,
87 ::heap::base::Worklist<ObjectAndSize, kCopiedListSegmentSize>;
88 using EmptyChunksList = ::heap::base::Worklist<MemoryChunk*, 64>;
/third_party/node/deps/v8/src/logging/
H A Dcode-events.h10 #include "src/base/platform/mutex.h"
11 #include "src/base/vector.h"
28 using WasmName = base::Vector<const char>;
129 base::MutexGuard guard(&mutex_); in AddListener()
133 base::MutexGuard guard(&mutex_); in RemoveListener()
147 base::MutexGuard guard(&mutex_); in DispatchEventToListeners()
255 base::Mutex mutex_;
/third_party/node/deps/v8/src/objects/
H A Dslots.h8 #include "src/base/memory.h"
206 base::WriteUnalignedValue<T>(address_, other.value());
210 base::WriteUnalignedValue<T>(address_, value); in operator =()
220 base::WriteUnalignedValue<T>(address_, other.value()); in swap()
221 base::WriteUnalignedValue<T>(other.address_, tmp); in swap()
233 T value() const { return base::ReadUnalignedValue<T>(address_); } in value()
H A Dvalue-serializer.h11 #include "src/base/compiler-specific.h"
12 #include "src/base/macros.h"
13 #include "src/base/strings.h"
14 #include "src/base/vector.h"
109 void WriteOneByteString(base::Vector<const uint8_t> chars);
110 void WriteTwoByteString(base::Vector<const base::uc16> chars);
193 ValueDeserializer(Isolate* isolate, base::Vector<const uint8_t> data,
257 Maybe<base::Vector<const uint8_t>> ReadRawBytes(size_t size)
H A Dbacking-store.cc9 #include "src/base/platform/wrappers.h"
73 base::AddressRegion GetReservedRegion(bool has_guard_regions, in GetReservedRegion()
87 return base::AddressRegion(start - kNegativeGuardSize, in GetReservedRegion()
93 return base::AddressRegion(reinterpret_cast<Address>(buffer_start), in GetReservedRegion()
570 base::Optional<size_t> BackingStore::GrowWasmMemoryInPlace(Isolate* isolate, in GrowWasmMemoryInPlace()
846 base::Mutex mutex_;
849 base::LazyInstance<GlobalBackingStoreRegistryImpl>::type global_registry_impl_ =
862 base::MutexGuard scope_lock(&impl()->mutex_); in Register()
880 base::MutexGuard scope_lock(&impl()->mutex_); in Unregister()
896 base in Purge()
[all...]
/third_party/node/deps/v8/src/torque/
H A Dutils.cc10 #include "src/base/bits.h"
11 #include "src/base/logging.h"
94 base::Optional<std::string> FileUriDecode(const std::string& uri) { in FileUriDecode()
96 if (uri.rfind(kFileUriPrefix) != 0) return base::nullopt; in FileUriDecode()
111 if (std::distance(iter, end) <= 2) return base::nullopt; in FileUriDecode()
115 if (!isxdigit(first) || !isxdigit(second)) return base::nullopt; in FileUriDecode()
127 base::Optional<SourcePosition> position; in MessageBuilder()
383 return base::bits::CountTrailingZeros(value_); in AlignmentLog2()
/third_party/mesa3d/src/vulkan/runtime/
H A Dvk_instance.c46 vk_object_base_init(NULL, &instance->base, VK_OBJECT_TYPE_INSTANCE); in vk_instance_init()
67 vk_object_base_init(NULL, &messenger->base, in vk_instance_init()
192 vk_object_base_finish(&messenger->base); in vk_instance_finish()
201 vk_object_base_finish(&messenger->base); in vk_instance_finish()
209 vk_object_base_finish(&instance->base); in vk_instance_finish()
/third_party/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_dynamic_indexing.c45 struct tgsi_transform_context base; member
338 transform.base.transform_declaration = dIndexing_decl; in tgsi_remove_dynamic_indexing()
339 transform.base.transform_instruction = dIndexing_inst; in tgsi_remove_dynamic_indexing()
340 transform.base.prolog = dIndexing_prolog; in tgsi_remove_dynamic_indexing()
349 return tgsi_transform_shader(tokens_in, new_len, &transform.base); in tgsi_remove_dynamic_indexing()
/third_party/mesa3d/src/gallium/auxiliary/util/
H A Du_pstipple.c176 struct tgsi_transform_context base; member
393 transform.base.prolog = pstip_transform_prolog; in util_pstipple_create_fragment_shader()
394 transform.base.transform_declaration = pstip_transform_decl; in util_pstipple_create_fragment_shader()
395 transform.base.transform_immediate = pstip_transform_immed; in util_pstipple_create_fragment_shader()
402 new_tokens = tgsi_transform_shader(tokens, newLen, &transform.base); in util_pstipple_create_fragment_shader()
/third_party/openssl/ohos_lite/crypto/
H A Dcryptlib.c61 /* return largest base value to make caller terminate the loop */ in todigit()
68 unsigned int digit, base = 10; in ossl_strtouint64() local
71 base = 8, str++; in ossl_strtouint64()
73 base = 16, str++; in ossl_strtouint64()
76 while((digit = todigit(*str++)) < base) in ossl_strtouint64()
77 ret = ret * base + digit; in ossl_strtouint64()
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-ot-shape-complex-thai.cc94 RD /* Remove descender from base */
231 unsigned int base = 0; in do_thai_pua_shaping() local
243 base = i; in do_thai_pua_shaping()
255 buffer->unsafe_to_break (base, i); in do_thai_pua_shaping()
257 info[base].codepoint = thai_pua_shape (info[base].codepoint, action, font); in do_thai_pua_shaping()
/third_party/python/Lib/test/
H A Dtest_pyclbr.py100 real_bases = [base.__name__ for base in py_item.__bases__]
101 pyclbr_bases = [ getattr(base, 'name', base)
102 for base in value.super ]
/third_party/python/Lib/
H A Dmimetypes.py143 base, ext = posixpath.splitext(url)
145 base, ext = posixpath.splitext(base + self.suffix_map[ext_lower])
149 base, ext = posixpath.splitext(base)
/third_party/skia/third_party/externals/zlib/google/
H A Dzip_internal.cc12 #include "base/logging.h"
13 #include "base/notreached.h"
14 #include "base/strings/utf_string_conversions.h"
59 base::string16 filename16 = base::UTF8ToUTF16(filename); in ZipOpenFunc()
244 zip_fileinfo TimeToZipFileInfo(const base::Time& file_time) { in TimeToZipFileInfo()
245 base::Time::Exploded file_time_parts; in TimeToZipFileInfo()
350 base::Time last_modified_time) { in ZipOpenNewFileInZip()
/third_party/protobuf/java/util/src/main/java/com/google/protobuf/util/
H A DFieldMaskUtil.java33 import static com.google.common.base.Preconditions.checkArgument;
35 import com.google.common.base.CaseFormat;
36 import com.google.common.base.Joiner;
37 import com.google.common.base.Optional;
38 import com.google.common.base.Splitter;
64 // TODO(xiaofeng): Consider using com.google.common.base.Joiner here instead. in toString()
86 // TODO(xiaofeng): Consider using com.google.common.base.Splitter here instead. in fromString()
96 // TODO(xiaofeng): Consider using com.google.common.base.Splitter here instead. in fromString()
/third_party/ffmpeg/libavcodec/
H A Daacsbr_fixed.c129 int base, prod, nz = 0; in make_bands() local
131 base = (stop << 23) / start; in make_bands()
132 while (base < 0x40000000){ in make_bands()
133 base <<= 1; in make_bands()
136 base = fixed_log(base - 0x80000000); in make_bands()
137 base = (((base + 0x80) >> 8) + (8-nz)*CONST_LN2) / num_bands; in make_bands()
138 base = fixed_exp(base); in make_bands()
[all...]

Completed in 20 milliseconds

1...<<71727374757677787980>>...211