Home
last modified time | relevance | path

Searched refs:base (Results 1001 - 1025 of 5204) sorted by relevance

1...<<41424344454647484950>>...209

/third_party/musl/src/stdio/
H A Dopen_memstream.c25 ssize_t base; in ms_seek() local
32 base = (size_t [3]){0, c->pos, c->len}[whence]; in ms_seek()
33 if (off < -base || off > SSIZE_MAX-base) goto fail; in ms_seek()
34 return c->pos = base+off; in ms_seek()
/third_party/musl/src/internal/
H A Dvdso.c51 size_t *dynv=0, base=-1; in __vdsosym() local
54 base = (size_t)eh + ph->p_offset - ph->p_vaddr; in __vdsosym()
58 if (!dynv || base==(size_t)-1) return 0; in __vdsosym()
67 void *p = (void *)(base + dynv[i+1]); in __vdsosym()
87 return (void *)(base + syms[i].st_value); in __vdsosym()
/third_party/node/deps/v8/src/compiler/
H A Dsimplified-lowering-verifier.h19 base::Optional<Type> type = base::nullopt;
34 base::Optional<Type> GetType(Node* node) const { in GetType()
43 return base::nullopt; in GetType()
69 base::Optional<Type> type_opt; in InputType()
/third_party/node/deps/v8/src/builtins/
H A Dbuiltins-iterator-gen.h38 base::Optional<TNode<Map>> fast_iterator_result_map = base::nullopt);
41 base::Optional<TNode<Map>> fast_iterator_result_map, Label* if_done) { in IteratorStep()
51 base::Optional<TNode<Map>> fast_iterator_result_map = base::nullopt);
/third_party/node/deps/v8/src/base/
H A Demulated-virtual-address-subspace.h9 #include "src/base/base-export.h"
10 #include "src/base/compiler-specific.h"
11 #include "src/base/platform/mutex.h"
12 #include "src/base/region-allocator.h"
13 #include "src/base/virtual-address-space.h"
16 namespace base { namespace
39 Address base, size_t mapped_size,
81 Address mapped_base() const { return base(); } in mapped_base()
82 Address unmapped_base() const { return base() in mapped_base()
[all...]
/third_party/node/deps/v8/src/ic/
H A Dic-stats.cc16 base::LazyInstance<ICStats>::type ICStats::instance_ =
20 base::Relaxed_Store(&enabled_, 0); in ICStats()
25 base::Relaxed_Store(&enabled_, 1); in Begin()
29 if (base::Relaxed_Load(&enabled_) != 1) return; in End()
34 base::Relaxed_Store(&enabled_, 0); in End()
/third_party/node/deps/v8/src/objects/
H A Dallocation-site.h73 using ElementsKindBits = base::BitField<ElementsKind, 0, 6>;
74 using DoNotInlineBit = base::BitField<bool, 6, 1>;
78 using MementoFoundCountBits = base::BitField<int, 0, 26>;
79 using PretenureDecisionBits = base::BitField<PretenureDecision, 26, 3>;
80 using DeoptDependentCodeBit = base::BitField<bool, 29, 1>;
/third_party/node/deps/v8/src/regexp/experimental/
H A Dexperimental-bytecode.h10 #include "src/base/strings.h"
11 #include "src/base/vector.h"
106 base::uc16 min; // Inclusive.
107 base::uc16 max; // Inclusive.
110 static RegExpInstruction ConsumeRange(base::uc16 min, base::uc16 max) { in ConsumeRange()
206 base::Vector<const RegExpInstruction> insts);
/third_party/node/deps/v8/src/tasks/
H A Dcancelable-task.cc7 #include "src/base/platform/platform.h"
35 base::MutexGuard guard(&mutex_); in Register()
52 base::MutexGuard guard(&mutex_); in RemoveFinishedTask()
61 base::MutexGuard guard(&mutex_); in TryAbort()
82 base::MutexGuard guard(&mutex_); in CancelAndWait()
106 base::MutexGuard guard(&mutex_); in TryAbortAll()
/third_party/node/deps/v8/src/utils/
H A Dlocked-queue-inl.h8 #include "src/base/atomic-utils.h"
18 base::AtomicValue<Node*> next;
47 base::MutexGuard guard(&tail_mutex_); in Enqueue()
58 base::MutexGuard guard(&head_mutex_); in Dequeue()
74 base::MutexGuard guard(&head_mutex_); in IsEmpty()
80 base::MutexGuard guard(&head_mutex_); in Peek()
/third_party/mesa3d/src/gallium/auxiliary/util/
H A Du_dirty_surfaces.h46 struct pipe_surface base; member
65 flush(pipe, &ds->base); in util_dirty_surfaces_use_for_sampling()
80 if(ds->base.u.tex.level >= first && ds->base.u.tex.level <= last) in util_dirty_surfaces_use_levels_for_sampling()
81 flush(pipe, &ds->base); in util_dirty_surfaces_use_levels_for_sampling()
/third_party/mesa3d/src/gbm/backends/dri/
H A Dgbm_driint.h63 struct gbm_device base; member
129 struct gbm_bo base; member
139 struct gbm_surface base; member
177 ret = drmIoctl(bo->base.gbm->v0.fd, DRM_IOCTL_MODE_MAP_DUMB, &map_arg); in gbm_dri_bo_map_dumb()
182 MAP_SHARED, bo->base.gbm->v0.fd, map_arg.offset); in gbm_dri_bo_map_dumb()
/third_party/node/deps/openssl/openssl/crypto/
H A Dcpuid.c59 /* return largest base value to make caller terminate the loop */ in todigit()
66 unsigned int digit, base = 10; in ossl_strtouint64() local
69 base = 8, str++; in ossl_strtouint64()
71 base = 16, str++; in ossl_strtouint64()
74 while((digit = todigit(*str++)) < base) in ossl_strtouint64()
75 ret = ret * base + digit; in ossl_strtouint64()
/third_party/openssl/crypto/
H A Dcpuid.c59 /* return largest base value to make caller terminate the loop */ in todigit()
66 unsigned int digit, base = 10; in ossl_strtouint64() local
69 base = 8, str++; in ossl_strtouint64()
71 base = 16, str++; in ossl_strtouint64()
74 while((digit = todigit(*str++)) < base) in ossl_strtouint64()
75 ret = ret * base + digit; in ossl_strtouint64()
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/opentype/contextsubst/
H A DDoubleRecordTable.java19 public DoubleRecordTable(ReadableFontData data, int base, boolean dataIsCanonical) { in DoubleRecordTable() argument
21 inputGlyphs = new NumRecordList(data, 1, base, base + 4); in DoubleRecordTable()
22 lookupRecords = new SubstLookupRecordList(data, base + 2, inputGlyphs.limit()); in DoubleRecordTable()
42 public Builder(ReadableFontData data, int base, boolean dataIsCanonical) { in Builder() argument
/third_party/skia/third_party/externals/freetype/builds/vms/
H A Dftsystem.c200 stream->base = NULL; in ft_close_stream()
242 stream->base = (unsigned char *)mmap( NULL, in FT_BASE_DEF()
249 if ( stream->base == MAP_FAILED ) in FT_BASE_DEF()
258 stream->descriptor.pointer = stream->base; in FT_BASE_DEF()
273 stream->base = NULL; in FT_BASE_DEF()
/third_party/python/Modules/
H A Dtestcapi_long.h14 unsigned TYPENAME base; in error() local
25 base = 1; in error()
27 i < NBITS + 1; /* on last, base overflows to 0 */ in error()
28 ++i, base <<= 1) in error()
35 /* For 0, 1, 2 use base; for 3, 4, 5 use -base */ in error()
36 uin = j < 3 ? base : 0U - base; in error()
/third_party/gn/src/base/containers/
H A Dflat_set.h10 #include "base/containers/flat_tree.h"
11 #include "base/template_util.h"
13 namespace base { namespace
18 // Please see //base/containers/README.md for an overview of which container
38 // - For multiple removals use base::EraseIf() which is O(n) rather than
133 using flat_set = typename ::base::internal::flat_tree<
136 ::base::internal::GetKeyFromValueIdentity<Key>,
139 } // namespace base
/third_party/gn/src/gn/
H A Dinvoke_python.h10 namespace base { namespace
12 } // namespace base
20 const base::FilePath& python_script_path,
22 const base::FilePath& output_path,
H A Danalyzer.cc13 #include "base/json/json_reader.h"
14 #include "base/json/json_writer.h"
15 #include "base/strings/string_util.h"
16 #include "base/values.h"
61 std::vector<std::string> GetStringVector(const base::DictionaryValue& dict, in GetStringVector()
65 const base::ListValue* lst; in GetStringVector()
88 void WriteString(base::DictionaryValue& dict, in WriteString()
91 dict.SetKey(key, base::Value(value)); in WriteString()
95 base::DictionaryValue& dict, in WriteLabels()
99 auto value = std::make_unique<base in WriteLabels()
[all...]
/third_party/node/deps/v8/src/regexp/
H A Dproperty-sequences.h10 #include "src/base/strings.h"
18 static const base::uc32 kEmojiFlagSequences[];
19 static const base::uc32 kEmojiTagSequences[];
20 static const base::uc32 kEmojiZWJSequences[];
/third_party/mesa3d/src/amd/vulkan/
H A Dradv_pipeline.c138 struct radv_shader *shader = pipeline->base.shaders[pipeline->last_vgt_api_stage]; in radv_pipeline_has_ngg()
148 struct radv_shader *shader = pipeline->base.shaders[pipeline->last_vgt_api_stage]; in radv_pipeline_has_ngg_passthrough()
206 vk_object_base_finish(&module->base); in radv_pipeline_destroy()
228 vk_object_base_finish(&pipeline->base); in radv_pipeline_destroy()
549 cf = radv_choose_spi_color_format(pipeline->base.device, fmt, blend_enable, in radv_pipeline_compute_spi_color_formats()
697 const struct radv_device *device = pipeline->base.device; in radv_pipeline_init_blend_state()
986 if (!pipeline->base.device->physical_device->out_of_order_rast_allowed) in radv_pipeline_out_of_order_rast()
1005 struct radv_shader *ps = pipeline->base.shaders[MESA_SHADER_FRAGMENT]; in radv_pipeline_out_of_order_rast()
1079 const struct radv_physical_device *pdevice = pipeline->base.device->physical_device; in radv_pipeline_init_multisample_state()
1104 if (pipeline->base in radv_pipeline_init_multisample_state()
[all...]
/third_party/musl/porting/liteos_a/user/ldso/
H A Ddynlink.c45 void *base; member
57 unsigned char *base;
95 unsigned char *base; member
171 if (!p->loadmap) return p->base + v; in laddr()
179 if (!p->loadmap) return p->base + v; in laddr_pg()
199 #define laddr(p, v) (void *)((p)->base + (v))
337 unsigned char *base = dso->base; in do_relocs() local
431 *reloc_addr = (size_t)base + addend; in do_relocs()
435 else *reloc_addr = (size_t)base in do_relocs()
544 char *base = laddr_pg(dso, start); reclaim() local
633 unsigned char *map=MAP_FAILED, *base; map_library() local
1346 unsigned char *base = p->base; do_mips_relocs() local
1659 __dls2(unsigned char *base, size_t *sp) __dls2() argument
2214 size_t base = (size_t)p->base; addr2dso() local
[all...]
/third_party/musl/porting/liteos_a/user_debug/ldso/
H A Ddynlink.c45 void *base; member
57 unsigned char *base;
95 unsigned char *base; member
171 if (!p->loadmap) return p->base + v; in laddr()
179 if (!p->loadmap) return p->base + v; in laddr_pg()
199 #define laddr(p, v) (void *)((p)->base + (v))
337 unsigned char *base = dso->base; in do_relocs() local
431 *reloc_addr = (size_t)base + addend; in do_relocs()
435 else *reloc_addr = (size_t)base in do_relocs()
544 char *base = laddr_pg(dso, start); reclaim() local
633 unsigned char *map=MAP_FAILED, *base; map_library() local
1345 unsigned char *base = p->base; do_mips_relocs() local
1658 __dls2(unsigned char *base, size_t *sp) __dls2() argument
2213 size_t base = (size_t)p->base; addr2dso() local
[all...]
/third_party/mesa3d/src/gallium/drivers/v3d/
H A Dv3d_resource.c47 struct pipe_resource *prsc = &rsc->base; in v3d_debug_resource_layout()
98 struct pipe_resource *prsc = &rsc->base; in v3d_resource_bo_alloc()
128 v3d_layer_offset(&rsc->base, in v3d_resource_transfer_unmap()
159 if (psview->texture != &rsc->base) in rebind_sampler_views()
269 ptrans = &trans->base; in v3d_resource_transfer_map()
310 v3d_layer_offset(&rsc->base, in v3d_resource_transfer_map()
375 v3d_layer_offset(&rsc->base, in v3d_texture_subdata()
531 struct pipe_resource *prsc = &rsc->base; in v3d_setup_slices()
647 /* The HW aligns level 1's base to a page if any of level 1 or in v3d_setup_slices()
713 struct pipe_resource *prsc = &rsc->base; in v3d_resource_setup()
[all...]

Completed in 18 milliseconds

1...<<41424344454647484950>>...209