/third_party/node/deps/v8/src/libplatform/ |
H A D | default-foreground-task-runner.cc | 7 #include "src/base/platform/mutex.h" 30 base::MutexGuard guard(&lock_); in Terminate() 41 const base::MutexGuard&) { in PostTaskLocked() 48 base::MutexGuard guard(&lock_); in PostTask() 58 Nestability nestability, const base::MutexGuard&) { in PostDelayedTaskLocked() 68 base::MutexGuard guard(&lock_); in PostDelayedTask() 74 base::MutexGuard guard(&lock_); in PostNonNestableDelayedTask() 80 base::MutexGuard guard(&lock_); in PostIdleTask() 91 base::MutexGuard guard(&lock_); in PostNonNestableTask() 108 const base in MoveExpiredDelayedTasks() 39 PostTaskLocked(std::unique_ptr<Task> task, Nestability nestability, const base::MutexGuard&) PostTaskLocked() argument 56 PostDelayedTaskLocked( std::unique_ptr<Task> task, double delay_in_seconds, Nestability nestability, const base::MutexGuard&) PostDelayedTaskLocked() argument 143 PopTaskFromDelayedQueueLocked( const base::MutexGuard&, Nestability* nestability) PopTaskFromDelayedQueueLocked() argument 172 WaitForTaskLocked(const base::MutexGuard&) WaitForTaskLocked() argument [all...] |
/third_party/node/deps/v8/src/profiler/ |
H A D | strings-storage.cc | 9 #include "src/base/strings.h" 24 for (base::HashMap::Entry* p = names_.Start(); p != nullptr; in ~StringsStorage() 31 base::MutexGuard guard(&mutex_); in GetCopy() 33 base::HashMap::Entry* entry = GetEntry(src, len); in GetCopy() 35 base::Vector<char> dst = base::Vector<char>::New(len + 1); in GetCopy() 36 base::StrNCpy(dst, src, len); in GetCopy() 55 base::MutexGuard guard(&mutex_); in AddOrDisposeString() 56 base::HashMap::Entry* entry = GetEntry(str, len); in AddOrDisposeString() 70 base in GetVFormatted() [all...] |
/third_party/mesa3d/src/gallium/auxiliary/pipebuffer/ |
H A D | pb_bufmgr_cache.c | 53 struct pb_buffer base; member 62 struct pb_manager base; member 101 assert(!pipe_is_referenced(&buf->base.reference)); in _pb_cache_buffer_destroy() 214 return &buf->base; in pb_cache_manager_create_buffer() 238 pipe_reference_init(&buf->base.reference, 1); in pb_cache_manager_create_buffer() 239 buf->base.alignment_log2 = buf->buffer->alignment_log2; in pb_cache_manager_create_buffer() 240 buf->base.usage = buf->buffer->usage; in pb_cache_manager_create_buffer() 241 buf->base.size = buf->buffer->size; in pb_cache_manager_create_buffer() 243 buf->base.vtbl = &pb_cache_buffer_vtbl; in pb_cache_manager_create_buffer() 245 pb_cache_init_entry(&mgr->cache, &buf->cache_entry, &buf->base, in pb_cache_manager_create_buffer() [all...] |
/third_party/mesa3d/src/gallium/drivers/panfrost/ |
H A D | pan_resource.c | 73 prsc = &rsc->base; in panfrost_resource_from_handle() 126 panfrost_resource_set_damage_region(pscreen, &rsc->base, 0, NULL); in panfrost_resource_from_handle() 279 return (pres->base.target == PIPE_TEXTURE_2D) in panfrost_is_2d() 280 || (pres->base.target == PIPE_TEXTURE_RECT); in panfrost_is_2d() 306 if (pres->base.bind & ~valid_binding) in panfrost_should_afbc() 314 if (pres->base.usage == PIPE_USAGE_STREAM) in panfrost_should_afbc() 323 if (pres->base.nr_samples > 1) in panfrost_should_afbc() 326 switch (pres->base.target) { in panfrost_should_afbc() 345 if (pres->base.width0 <= 16 && pres->base in panfrost_should_afbc() [all...] |
/third_party/gn/src/gn/ |
H A D | ohos_components.cc | 10 #include "base/files/file_path.h" 11 #include "base/files/file_util.h" 12 #include "base/json/json_reader.h" 13 #include "base/values.h" 80 void OhosComponent::addInnerApiVisibility(const std::string &name, const std::vector<base::Value> &list) in addInnerApiVisibility() 82 for (const base::Value &visibility : list) { in addInnerApiVisibility() 105 if (!base::ReadFileToString(base::FilePath(path), &content)) { in ReadBuildConfigFile() 113 const base::DictionaryValue *components_dict; in LoadComponentInfo() 114 std::unique_ptr<base in LoadComponentInfo() [all...] |
/third_party/python/Lib/distutils/ |
H A D | msvccompiler.py | 54 def read_keys(base, key): 57 handle = RegOpenKeyEx(base, key) 71 def read_values(base, key): 77 handle = RegOpenKeyEx(base, key) 107 for base in HKEYS: 108 d = read_values(base, path) 132 for base in HKEYS: 134 h = RegOpenKeyEx(base, p) 138 d = read_values(base, r"%s\%s" % (p, key)) 219 # base clas [all...] |
/third_party/mesa3d/src/gallium/drivers/nouveau/nv50/ |
H A D | nv50_resource.c | 52 pipe_reference_init(&sf->base.reference, 1); in nv50_surface_from_buffer() 53 pipe_resource_reference(&sf->base.texture, pbuf); in nv50_surface_from_buffer() 55 sf->base.format = templ->format; in nv50_surface_from_buffer() 56 sf->base.writable = templ->writable; in nv50_surface_from_buffer() 57 sf->base.u.buf.first_element = templ->u.buf.first_element; in nv50_surface_from_buffer() 58 sf->base.u.buf.last_element = templ->u.buf.last_element; in nv50_surface_from_buffer() 61 templ->u.buf.first_element * util_format_get_blocksize(sf->base.format); in nv50_surface_from_buffer() 69 sf->base.width = sf->width; in nv50_surface_from_buffer() 70 sf->base.height = sf->height; in nv50_surface_from_buffer() 72 sf->base in nv50_surface_from_buffer() [all...] |
/third_party/node/deps/v8/src/execution/ |
H A D | simulator-base.cc | 5 #include "src/execution/simulator-base.h" 16 base::Mutex* SimulatorBase::redirection_mutex_ = nullptr; 22 base::Mutex* SimulatorBase::i_cache_mutex_ = nullptr; 25 base::CustomMatcherHashMap* SimulatorBase::i_cache_ = nullptr; 30 redirection_mutex_ = new base::Mutex(); in InitializeOncePerProcess() 33 i_cache_mutex_ = new base::Mutex(); in InitializeOncePerProcess() 36 i_cache_ = new base::CustomMatcherHashMap(&Simulator::ICacheMatch); in InitializeOncePerProcess() 51 for (base::HashMap::Entry* entry = i_cache_->Start(); entry != nullptr; in GlobalTearDown() 63 base::MutexGuard lock_guard(Simulator::redirection_mutex()); in RedirectExternalReference() 72 base in Redirection() [all...] |
/third_party/mesa3d/src/gallium/frontends/dri/ |
H A D | kopper.c | 56 struct dri_drawable base; member 63 struct dri_screen base; member 86 p_atomic_inc(&drawable->base.stamp); in kopper_invalidate_drawable() 90 .base = { __DRI2_FLUSH, 4 }, 98 .base = { __DRI2_ROBUSTNESS, 1 } 104 &driTexBufferExtension.base, 105 &dri2RendererQueryExtension.base, 106 &dri2ConfigQueryExtension.base, 107 &dri2FenceExtension.base, 108 &dri2Robustness.base, 848 kopper_create_drawable(__DRIdrawable *dPriv, struct dri_drawable *base) kopper_create_drawable() argument [all...] |
/third_party/mesa3d/src/gallium/auxiliary/vl/ |
H A D | vl_mpeg12_decoder.c | 128 priv = vl_video_buffer_get_associated_data(buf, &dec->base); in get_video_buffer_private() 147 vl_video_buffer_set_associated_data(buf, &dec->base, priv, destroy_video_buffer_private); in get_video_buffer_private() 160 vl_video_buffer_set_associated_data(buf, &dec->base, NULL, NULL); in free_video_buffer_privates() 198 if (dec->base.entrypoint <= PIPE_VIDEO_ENTRYPOINT_IDCT) in init_zscan_buffer() 442 //assert(ctx->base.chroma_format == PIPE_VIDEO_CHROMA_FORMAT_420); in UploadYcbcrBlocks() 500 if (dec->base.entrypoint <= PIPE_VIDEO_ENTRYPOINT_IDCT) { in vl_mpeg12_destroy() 549 dec->base.width / VL_MACROBLOCK_WIDTH, in vl_mpeg12_get_decode_buffer() 550 dec->base.height / VL_MACROBLOCK_HEIGHT)) in vl_mpeg12_get_decode_buffer() 556 if (dec->base.entrypoint <= PIPE_VIDEO_ENTRYPOINT_IDCT) in vl_mpeg12_get_decode_buffer() 563 if (dec->base in vl_mpeg12_get_decode_buffer() [all...] |
/third_party/mesa3d/src/gallium/drivers/etnaviv/ |
H A D | etnaviv_texture_state.c | 43 struct pipe_sampler_state base; member 61 struct pipe_sampler_view base; member 97 cs->base = *ss; in etna_create_sampler_state_state() 185 sv->base = *so; in etna_create_sampler_view_state() 186 pipe_reference_init(&sv->base.reference, 1); in etna_create_sampler_view_state() 187 sv->base.texture = NULL; in etna_create_sampler_view_state() 188 pipe_resource_reference(&sv->base.texture, prsc); in etna_create_sampler_view_state() 189 sv->base.context = pctx; in etna_create_sampler_view_state() 193 VIVS_TE_SAMPLER_CONFIG0_TYPE(translate_texture_target(sv->base.target)) | in etna_create_sampler_view_state() 197 uint32_t base_height = res->base in etna_create_sampler_view_state() [all...] |
H A D | etnaviv_texture.c | 135 struct etna_screen *screen = etna_screen(rsc->base.screen); in etna_can_use_sampler_ts() 139 rsc->base.target != PIPE_BUFFER && in etna_can_use_sampler_ts() 141 view->u.tex.first_level == 0 && MIN2(view->u.tex.last_level, rsc->base.last_level) == 0 && in etna_can_use_sampler_ts() 148 struct etna_resource *base = etna_resource(view->texture); in etna_update_sampler_source() local 149 struct etna_resource *to = base, *from = base; in etna_update_sampler_source() 153 if (base->render && etna_resource_newer(etna_resource(base->render), base)) in etna_update_sampler_source() 154 from = etna_resource(base in etna_update_sampler_source() [all...] |
/third_party/mesa3d/src/egl/drivers/dri2/ |
H A D | platform_ohos.c | 170 if (dri2_dpy->image->base.version >= 15 && in ohos_create_image_from_buffer_info() 328 dri2_surf->base.Lost = EGL_TRUE; in ohos_window_cancel_buffer() 348 if (!dri2_init_surface(&dri2_surf->base, disp, type, conf, attrib_list, in ohos_create_surface() 374 if (format != dri2_conf->base.NativeVisualID) { in ohos_create_surface() 376 format, dri2_conf->base.NativeVisualID); in ohos_create_surface() 379 NativeWindowHandleOpt(window, GET_BUFFER_GEOMETRY, &dri2_surf->base.Height, &dri2_surf->base.Width); in ohos_create_surface() 383 dri2_surf->base.GLColorspace); in ohos_create_surface() 398 return &dri2_surf->base; in ohos_create_surface() 433 if (dri2_surf->base in ohos_destroy_surface() [all...] |
H A D | platform_drm.c | 157 if (!dri2_init_surface(&dri2_surf->base, disp, EGL_WINDOW_BIT, conf, in dri2_drm_create_window_surface() 162 dri2_surf->base.GLColorspace); in dri2_drm_create_window_surface() 176 dri2_surf->base.Width = surf->base.v0.width; in dri2_drm_create_window_surface() 177 dri2_surf->base.Height = surf->base.v0.height; in dri2_drm_create_window_surface() 183 return &dri2_surf->base; in dri2_drm_create_window_surface() 230 dri2_egl_display(dri2_surf->base.Resource.Display); in get_back_bo() 247 if (surf->base.v0.modifiers) in get_back_bo() 248 dri2_surf->back->bo = gbm_bo_create_with_modifiers(&dri2_dpy->gbm_dri->base, in get_back_bo() [all...] |
/third_party/node/test/fixtures/wpt/url/resources/ |
H A D | a-element.js | 3 function setBase(base) { 4 document.getElementById("base").href = base; 7 function bURL(url, base) { 8 setBase(base); 21 if (expected.relativeTo === "any-base") 24 // We cannot use a null base for HTML tests 25 const base = expected.base === null ? "about:blank" : expected.base; [all...] |
/third_party/node/deps/v8/src/parsing/ |
H A D | literal-buffer.h | 8 #include "src/base/strings.h" 9 #include "src/base/vector.h" 30 V8_INLINE void AddChar(base::uc32 code_unit) { in AddChar() 32 if (code_unit <= static_cast<base::uc32>(unibrow::Latin1::kMaxChar)) { in AddChar() 43 bool Equals(base::Vector<const char> keyword) const { in Equals() 48 base::Vector<const uint16_t> two_byte_literal() const { in two_byte_literal() 52 base::Vector<const uint8_t> one_byte_literal() const { in one_byte_literal() 57 base::Vector<const Char> literal() const { in literal() 60 return base::Vector<const Char>( in literal() 95 void AddTwoByteChar(base [all...] |
/third_party/mesa3d/src/gallium/drivers/freedreno/a3xx/ |
H A D | fd3_context.c | 54 fd_context_cleanup_common_vbos(&fd3_ctx->base); 72 pctx = &fd3_ctx->base.base; 75 fd3_ctx->base.flags = flags; 76 fd3_ctx->base.dev = fd_device_ref(screen->dev); 77 fd3_ctx->base.screen = fd_screen(pscreen); 78 fd3_ctx->base.last.key = &fd3_ctx->last_key; 91 pctx = fd_context_init(&fd3_ctx->base, pscreen, priv, flags); 106 fd_context_setup_common_vbos(&fd3_ctx->base);
|
/third_party/mesa3d/src/gallium/drivers/freedreno/a4xx/ |
H A D | fd4_context.c | 55 fd_context_cleanup_common_vbos(&fd4_ctx->base); 73 pctx = &fd4_ctx->base.base; 76 fd4_ctx->base.flags = flags; 77 fd4_ctx->base.dev = fd_device_ref(screen->dev); 78 fd4_ctx->base.screen = fd_screen(pscreen); 79 fd4_ctx->base.last.key = &fd4_ctx->last_key; 93 pctx = fd_context_init(&fd4_ctx->base, pscreen, priv, flags); 108 fd_context_setup_common_vbos(&fd4_ctx->base);
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/ |
H A D | numbers_test_common.h | 26 #include "absl/base/config.h" 33 inline bool Itoa(IntType value, int base, std::string* destination) { in Itoa() argument 35 if (base <= 1 || base > 36) { in Itoa() 46 const IntType next_value = value / base; in Itoa() 49 static_cast<int>(value > next_value * base ? value - next_value * base in Itoa() 50 : next_value * base - value); in Itoa() 65 int base; // base t member 113 int base; global() member [all...] |
/third_party/mesa3d/src/freedreno/computerator/ |
H A D | ir3_asm.c | 41 kernel->base.local_size[0] = v->local_size[0]; in ir3_asm_assemble() 42 kernel->base.local_size[1] = v->local_size[1]; in ir3_asm_assemble() 43 kernel->base.local_size[2] = v->local_size[2]; in ir3_asm_assemble() 44 kernel->base.num_bufs = kernel->info.num_bufs; in ir3_asm_assemble() 45 memcpy(kernel->base.buf_sizes, kernel->info.buf_sizes, in ir3_asm_assemble() 46 sizeof(kernel->base.buf_sizes)); in ir3_asm_assemble() 47 memcpy(kernel->base.buf_addr_regs, kernel->info.buf_addr_regs, in ir3_asm_assemble() 48 sizeof(kernel->base.buf_addr_regs)); in ir3_asm_assemble()
|
/third_party/skia/infra/wasm-common/docker/ |
H A D | Makefile | 8 docker build --no-cache -t emsdk-base ./emsdk-base/ 9 docker tag emsdk-base gcr.io/skia-public/emsdk-base:${EMSDK_VERSION} 10 docker push gcr.io/skia-public/emsdk-base:${EMSDK_VERSION} 11 docker tag emsdk-base gcr.io/skia-public/emsdk-base:prod 12 docker push gcr.io/skia-public/emsdk-base:prod
|
/third_party/node/deps/v8/src/compiler/ |
H A D | heap-refs.h | 8 #include "src/base/optional.h" 195 static base::Optional<RefType> AsOptionalRef(JSHeapBroker* broker, in AsOptionalRef() 196 base::Optional<TinyRef<T>> ref) { in AsOptionalRef() 245 base::Optional<bool> TryGetBooleanValue() const; 254 return base::hash_combine(ref.object().address()); in operator ()() 300 using Flags = base::Flags<Flag>; 344 base::Optional<MapRef> map_direct_read() const; 381 base::Optional<ObjectRef> raw_properties_or_hash() const; 387 base::Optional<ObjectRef> RawInobjectPropertyAt(FieldIndex index) const; 393 base [all...] |
/third_party/mesa3d/src/gallium/drivers/d3d12/ |
H A D | d3d12_surface.cpp | 247 pipe_resource_reference(&surface->base.texture, pres); in d3d12_create_surface() 248 pipe_reference_init(&surface->base.reference, 1); in d3d12_create_surface() 249 surface->base.context = pctx; in d3d12_create_surface() 250 surface->base.format = tpl->format; in d3d12_create_surface() 251 surface->base.width = u_minify(pres->width0, tpl->u.tex.level); in d3d12_create_surface() 252 surface->base.height = u_minify(pres->height0, tpl->u.tex.level); in d3d12_create_surface() 253 surface->base.u.tex.level = tpl->u.tex.level; in d3d12_create_surface() 254 surface->base.u.tex.first_layer = tpl->u.tex.first_layer; in d3d12_create_surface() 255 surface->base.u.tex.last_layer = tpl->u.tex.last_layer; in d3d12_create_surface() 263 return &surface->base; in d3d12_create_surface() [all...] |
/third_party/mesa3d/src/gallium/drivers/svga/ |
H A D | svga_state_ts.c | 46 svga_init_shader_key_common(svga, PIPE_SHADER_TESS_CTRL, &tcs->base, key); in make_tcs_key() 69 key->tcs.vertices_out = tes->base.key.tes.vertices_per_patch; in make_tcs_key() 114 variant = svga_search_shader_key(&tcs->base, &key); in emit_hw_tcs() 117 ret = svga_compile_shader(svga, &tcs->base, &key, &variant); in emit_hw_tcs() 163 svga_init_shader_key_common(svga, PIPE_SHADER_TESS_EVAL, &tes->base, key); in make_tes_key() 167 key->tes.vertices_per_patch = tes->base.info.tes.reads_control_point ? in make_tes_key() 168 svga->curr.tcs->base.info.tcs.vertices_out : 0; in make_tes_key() 179 key->tes.tessfactor_index = svga->curr.tcs->base.info.num_outputs; in make_tes_key() 186 key->tes.need_tessinner = svga->curr.tcs->base.info.tcs.writes_tess_factor; in make_tes_key() 187 key->tes.need_tessouter = svga->curr.tcs->base in make_tes_key() [all...] |
/third_party/node/deps/v8/src/utils/ |
H A D | utils.cc | 13 #include "src/base/functional.h" 14 #include "src/base/logging.h" 15 #include "src/base/platform/platform.h" 16 #include "src/base/platform/wrappers.h" 17 #include "src/base/strings.h" 27 base::hash<int> h; in hash_value() 38 base::OS::VPrint(format, arguments); in PrintF() 45 base::OS::VFPrint(out, format, arguments); in PrintF() 50 base::OS::Print("[%d] ", base in PrintPID() [all...] |