/third_party/node/deps/googletest/include/gtest/internal/ |
H A D | gtest-param-util.h | 101 // A pointer to the base generator instance. 230 Iterator(const ParamGeneratorInterface<T>* base, T value, int index, in Iterator() argument 232 : base_(base), value_(value), index_(index), step_(step) {} in Iterator() 247 // Having the same base generator guarantees that the other 316 Iterator(const ParamGeneratorInterface<T>* base, in Iterator() argument 318 : base_(base), iterator_(iterator) {} in Iterator() 343 // Having the same base generator guarantees that the other 418 // TestMetaFactoryBase is a base class for meta-factories that create 520 // Test suite base name for display purposes. 528 // test_suite_name is the base nam 846 IteratorImpl(const ParamGeneratorInterface<ParamType>* base, const std::tuple<ParamGenerator<T>...>& generators, bool is_end) IteratorImpl() argument 969 Iterator(const ParamGeneratorInterface<To>* base, ParamIterator<From> it, ParamIterator<From> end) Iterator() argument [all...] |
/third_party/mesa3d/src/gallium/drivers/llvmpipe/ |
H A D | lp_state_setup.c | 659 variant->list_item_global.base = variant; in generate_setup_variant() 763 key->num_inputs = fs->info.base.num_inputs; in lp_make_setup_variant_key() 852 assert(item->base); in cull_setup_variants() 853 remove_setup_variant(lp, item->base); in cull_setup_variants() 873 if (li->base->key.size == key->size && in llvmpipe_update_setup() 874 memcmp(&li->base->key, key, key->size) == 0) { in llvmpipe_update_setup() 875 variant = li->base; in llvmpipe_update_setup() 903 remove_setup_variant(lp, li->base); in lp_delete_setup_variants()
|
/third_party/node/deps/v8/src/objects/ |
H A D | js-locale.cc | 121 if (!base::IsInRange(str.length(), min, max)) return false; in IsCheckRange() 129 return base::IsInRange(c, 'a', 'z') || base::IsInRange(c, 'A', 'Z'); in IsAlpha() 135 return base::IsInRange(c, '0', '9'); in IsDigit() 141 return base::IsInRange(c, 'a', 'z') || base::IsInRange(c, 'A', 'Z') || in IsAlphanum() 142 base::IsInRange(c, '0', '9'); in IsAlphanum() 162 return value.length() == 4 && base::IsInRange(value[0], '0', '9') && in IsDigitAlphanum3() 413 // on the base locale and merge the extension if needed. 448 // on the base local [all...] |
/third_party/node/deps/v8/src/parsing/ |
H A D | preparse-data.cc | 11 #include "src/base/logging.h" 12 #include "src/base/platform/wrappers.h" 28 using ScopeSloppyEvalCanExtendVarsBit = base::BitField8<bool, 0, 1>; 35 using VariableMaybeAssignedField = base::BitField8<bool, 0, 1>; 38 using HasDataField = base::BitField<bool, 0, 1>; 42 using LanguageField = base::BitField8<LanguageMode, 0, 1>; 140 zone_byte_data_ = base::Vector<uint8_t>(raw_zone_data, index_); in Finalize() 259 base::Vector<PreparseDataBuilder*> children = in FinalizeChildren() 560 base::Vector<uint8_t> data(data_->byte_data()->data(), 782 ZonePreparseData::ZonePreparseData(Zone* zone, base [all...] |
/third_party/node/deps/v8/src/profiler/ |
H A D | heap-snapshot-generator.h | 15 #include "src/base/platform/time.h" 92 using TypeField = base::BitField<Type, 0, 3>; 93 using FromIndexField = base::BitField<int, 3, 29>; 286 : id(id), size(0), count(0), timestamp(base::TimeTicks::Now()) {} in TimeInterval() 291 base::TimeTicks timestamp; 343 base::HashMap entries_map_; 478 base::Optional<int> field_offset); 495 base::Optional<HeapEntry::Type> type = {}); 694 base::CustomMatcherHashMap strings_;
|
/third_party/node/deps/v8/src/snapshot/ |
H A D | code-serializer.cc | 9 #include "src/base/logging.h" 10 #include "src/base/platform/elapsed-timer.h" 11 #include "src/base/platform/platform.h" 60 base::ElapsedTimer timer; in Serialize() 322 class StressOffThreadDeserializeThread final : public base::Thread { 327 base::Thread::Options("StressOffThreadDeserializeThread", 2 * MB)), in StressOffThreadDeserializeThread() 355 const base::ElapsedTimer& timer) { in FinalizeDeserialization() 430 base::ElapsedTimer timer; in Deserialize() 502 base::ElapsedTimer timer; in FinishOffThreadDeserialize() 678 base [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/ |
H A D | ELF.h | 109 const uint8_t *base() const { return Buf.bytes_begin(); } in base() function in llvm::object::ELFFile 120 return reinterpret_cast<const Elf_Ehdr *>(base()); in getHeader() 206 reinterpret_cast<const Elf_Phdr *>(base() + getHeader()->e_phoff); in program_headers() 226 return Elf_Note_Iterator(base() + Phdr.p_offset, Phdr.p_filesz, Err); in notes_begin() 246 return Elf_Note_Iterator(base() + Shdr.sh_offset, Shdr.sh_size, Err); in notes_begin() 421 const T *Start = reinterpret_cast<const T *>(base() + Offset); in getSectionContentsAsArray() 532 reinterpret_cast<const Elf_Shdr *>(base() + SectionTableOffset); in sections() 582 return reinterpret_cast<const T *>(base() + Pos); in getEntry()
|
/device/soc/rockchip/common/vendor/drivers/media/platform/rockchip/ispp/ |
H A D | hw.c | 170 void __iomem *base = hw_dev->base_addr; in irq_hdl() local 174 mis_val = readl(base + RKISPP_CTRL_INT_STA); in irq_hdl() 175 writel(mis_val, base + RKISPP_CTRL_INT_CLR); in irq_hdl() 456 void __iomem *base = hw_dev->base_addr; in rkispp_runtime_resume() local 466 memcpy_fromio(buf, base, RKISP_ISPP_SW_REG_SIZE); in rkispp_runtime_resume()
|
/device/soc/rockchip/common/sdk_linux/drivers/gpu/drm/ |
H A D | drm_lease.c | 169 if (_drm_lease_held_master(master, crtc->base.id)) { in drm_lease_filter_crtcs() 450 ret = idr_alloc(leases, &drm_lease_idr_object, crtc->primary->base.id, crtc->primary->base.id + 1, in fill_object_idr() 457 ret = idr_alloc(leases, &drm_lease_idr_object, crtc->cursor->base.id, crtc->cursor->base.id + 1, in fill_object_idr()
|
/device/soc/rockchip/rk3588/kernel/drivers/media/platform/rockchip/ispp/ |
H A D | hw.c | 180 void __iomem *base = hw_dev->base_addr; in irq_hdl() local 184 mis_val = readl(base + RKISPP_CTRL_INT_STA); in irq_hdl() 185 writel(mis_val, base + RKISPP_CTRL_INT_CLR); in irq_hdl() 463 void __iomem *base = hw_dev->base_addr; in rkispp_runtime_resume() local 473 memcpy_fromio(buf, base, RKISP_ISPP_SW_REG_SIZE); in rkispp_runtime_resume()
|
/third_party/ffmpeg/libavfilter/ |
H A D | af_stereotools.c | 43 double base; member 88 { "base", "set stereo base", OFFSET(base), AV_OPT_TYPE_DOUBLE, {.dbl=0}, -1, 1, A }, 141 const double sb = s->base < 0 ? s->base * 0.5 : s->base; in filter_frame()
|
/third_party/alsa-lib/src/topology/ |
H A D | tplg_local.h | 314 void tplg_elem_free_list(struct list_head *base); 316 struct tplg_elem *tplg_elem_lookup(struct list_head *base, 325 int tplg_get_integer(snd_config_t *n, int *val, int base); 326 int tplg_get_unsigned(snd_config_t *n, unsigned *val, int base); 338 struct tplg_elem *lookup_pcm_dai_stream(struct list_head *base,
|
/third_party/icu/icu4c/source/test/intltest/ |
H A D | restest.cpp | 395 UnicodeString base; in testTag() local 400 base = NAME[j]; in testTag() 429 expected_string = base; in testTag() 458 expected_string = base; in testTag() 480 expected_string = base; in testTag()
|
/third_party/lame/ACM/tinyxml/ |
H A D | tinyxml.h | 57 /** TiXmlBase is a base class for every class in TinyXml. 229 friend std::ostream& operator<< ( std::ostream& out, const TiXmlNode& base ) in operator <<() 231 base.StreamOut( &out ); in operator <<() 238 friend std::istream& operator>> ( std::istream& in, TiXmlNode& base ) in operator >>() 242 base.StreamIn( &in, &tag ); in operator >>() 244 base.Parse( tag.c_str() ); in operator >>()
|
/third_party/mesa3d/src/freedreno/ir3/ |
H A D | ir3_nir_analyze_ubo_ranges.c | 193 * loads with the same base, but different constant offset, ie: 196 * vec4 32 ssa_34 = intrinsic load_uniform (ssa_33) (base=N, 0, 0) 200 * vec4 32 ssa_34 = intrinsic load_uniform (ssa_base) (base=N+const_offset, 206 * vec4 32 ssa_34 = intrinsic load_uniform (ssa_33) (base=N, 0, 0) 211 * vec4 32 ssa_34 = intrinsic load_uniform (ssa_base) (base=N+const_offset, 336 uniform_offset, .base = const_offset); in lower_ubo_load_to_uniform() 384 .base = range->offset / 4 + offset * 4, in copy_ubo_to_uniform() 536 /* Or cases were base offset is lower than the hw limit: */ in fixup_load_uniform_instr() 574 * so in cases where the base offset is larger, we need to peel it out into 611 unsigned base in ir3_nir_lower_load_const_instr() local [all...] |
/third_party/mesa3d/src/gallium/frontends/omx/bellagio/ |
H A D | vid_dec_mpeg12.c | 82 priv->picture.base.profile = PIPE_VIDEO_PROFILE_MPEG2_MAIN; in vid_dec_mpeg12_Init() 106 priv->codec->begin_frame(priv->codec, priv->target, &priv->picture.base); in BeginFrame() 114 priv->codec->end_frame(priv->codec, priv->target, &priv->picture.base); in vid_dec_mpeg12_EndFrame() 158 priv->codec->decode_bitstream(priv->codec, priv->target, &priv->picture.base, in vid_dec_mpeg12_Decode() 360 priv->codec->decode_bitstream(priv->codec, priv->target, &priv->picture.base, in vid_dec_mpeg12_Decode()
|
/third_party/mesa3d/src/gallium/drivers/radeonsi/ci/ |
H A D | radeonsi-run-tests.py | 184 base = args.baseline variable 344 exact = os.path.join(base, "{}-{}-fail.csv".format(gfx_level_str, gpu_name)) 352 return os.path.join(base, file) 361 baseline = select_baseline(base, gfx_level, gpu_name) 363 base, "{}-{}-flakes.csv".format(gfx_level_to_str(gfx_level), gpu_name)
|
/third_party/mesa3d/src/gallium/drivers/vc4/kernel/ |
H A D | vc4_render_cl.c | 106 * relative to their base address. 328 list_addtail(&to_vc4_bo(&setup->rcl->base)->unref_head, in vc4_create_rcl_bo() 385 if (surf->offset > obj->base.size) { in vc4_full_res_bounds_check() 387 surf->offset, obj->base.size); in vc4_full_res_bounds_check() 391 if ((obj->base.size - surf->offset) / VC4_TILE_BUFFER_SIZE < in vc4_full_res_bounds_check() 396 obj->base.size, in vc4_full_res_bounds_check()
|
/third_party/mesa3d/src/gallium/drivers/zink/ |
H A D | zink_pipeline.c | 306 * with the 3 base features preceding the 3 (matching) stippled features in zink_create_gfx_pipeline() 310 /* add base mode index, add 3 if stippling is enabled */ in zink_create_gfx_pipeline() 334 pci.layout = prog->base.layout; in zink_create_gfx_pipeline() 379 VkResult result = VKSCR(CreateGraphicsPipelines)(screen->dev, prog->base.pipeline_cache, in zink_create_gfx_pipeline() 394 pci.layout = comp->base.layout; in zink_create_compute_pipeline() 421 VkResult result = VKSCR(CreateComputePipelines)(screen->dev, comp->base.pipeline_cache, in zink_create_compute_pipeline() 427 zink_screen_update_pipeline_cache(screen, &comp->base); in zink_create_compute_pipeline()
|
/third_party/node/deps/v8/src/web-snapshot/ |
H A D | web-snapshot.h | 101 using AsyncFunctionBitField = base::BitField<bool, 0, 1>; 110 using ReadOnlyBitField = base::BitField<bool, 0, 1>; 261 IdentityMap<int, base::DefaultAllocationPolicy> all_strings_; 305 base::Vector<const uint8_t> buffer); 306 base::Vector<const uint8_t> ExtractScriptBuffer(
|
/third_party/nghttp2/src/ |
H A D | shrpx_api_downstream_connection.cc | 134 auto p = buf.base; in send_reply() 143 buf.len = p - buf.base; in send_reply() 160 if (upstream->send_reply(downstream_, buf.base, buf.len) != 0) { in send_reply() 286 auto p = iov.base; in error_method_not_allowed() 298 resp.fs.add_header_token(StringRef::from_lit("allow"), StringRef{iov.base, p}, in error_method_not_allowed()
|
/third_party/mesa3d/src/panfrost/lib/ |
H A D | pan_layout.c | 266 * the base address of a texture to get the address to that level/face */ 485 mali_ptr base = iview->image->data.bo->ptr.gpu + iview->image->data.offset; in pan_iview_get_surface() local 493 surf->afbc.header = base + slice->offset + in pan_iview_get_surface() 495 surf->afbc.body = base + slice->offset + in pan_iview_get_surface() 500 surf->afbc.header = base + in pan_iview_get_surface() 509 surf->data = base + in pan_iview_get_surface()
|
/third_party/mesa3d/src/gallium/drivers/nouveau/nv50/ |
H A D | nv50_push.c | 251 ctx.push = nv50->base.pushbuf; in nv50_push_vbo() 254 ctx.need_vertex_id = nv50->screen->base.class_3d >= NV84_3D_CLASS && in nv50_push_vbo() 273 data = nouveau_resource_map_offset(&nv50->base, in nv50_push_vbo() 286 ctx.idxbuf = nouveau_resource_map_offset(&nv50->base, in nv50_push_vbo() 298 struct pipe_context *pipe = &nv50->base.pipe; in nv50_push_vbo()
|
/third_party/node/deps/v8/src/compiler/backend/ |
H A D | code-generator.h | 10 #include "src/base/optional.h" 125 base::Optional<OsrHelper> osr_helper, 139 base::OwnedVector<byte> GetSourcePositionTable(); 140 base::OwnedVector<byte> GetProtectedInstructionsData(); 292 using PushTypeFlags = base::Flags<PushTypeFlag>; 461 base::Optional<OsrHelper> osr_helper_;
|
/third_party/node/deps/v8/src/builtins/ |
H A D | builtins-async-iterator-gen.cc | 5 #include "src/base/optional.h" 44 base::Optional<TNode<Object>> initial_exception_value = base::nullopt); 52 base::Optional<TNode<Object>> initial_exception_value = base::nullopt) { in Generate_AsyncFromSyncIteratorMethod() 109 base::Optional<TNode<Object>> initial_exception_value) { in Generate_AsyncFromSyncIteratorMethod() 46 Generate_AsyncFromSyncIteratorMethod( CodeStubArguments* args, const TNode<Context> context, const TNode<Object> iterator, const TNode<Object> sent_value, Handle<String> name, const UndefinedMethodHandler& if_method_undefined, const char* operation_name, Label::Type reject_label_type = Label::kDeferred, base::Optional<TNode<Object>> initial_exception_value = base::nullopt) Generate_AsyncFromSyncIteratorMethod() argument
|