Home
last modified time | relevance | path

Searched refs:base (Results 4951 - 4975 of 17210) sorted by relevance

1...<<191192193194195196197198199200>>...689

/kernel/linux/linux-6.6/drivers/gpu/drm/etnaviv/
H A Detnaviv_dump.c147 file_size += obj->base.size; in etnaviv_core_dump()
148 n_bomap_pages += obj->base.size >> PAGE_SHIFT; in etnaviv_core_dump()
217 for (j = 0; j < obj->base.size >> PAGE_SHIFT; j++) in etnaviv_core_dump()
223 vaddr = etnaviv_gem_vmap(&obj->base); in etnaviv_core_dump()
225 memcpy(iter.data, vaddr, obj->base.size); in etnaviv_core_dump()
228 obj->base.size); in etnaviv_core_dump()
/kernel/linux/linux-6.6/drivers/gpu/drm/nouveau/nvkm/subdev/bios/
H A Dshadow.c59 image.base = 0; in shadow_image()
76 image.base, image.type, image.size); in shadow_image()
78 if (!shadow_fetch(bios, mthd, image.base + image.size)) { in shadow_image()
79 nvkm_debug(subdev, "%08x: fetch failed\n", image.base); in shadow_image()
86 nvbios_checksum(&bios->data[image.base], image.size)) { in shadow_image()
88 image.base); in shadow_image()
H A Dvolt.c92 info->base = nvbios_rd32(bios, volt + 0x04); in nvbios_volt_parse()
96 info->min = min(info->base, in nvbios_volt_parse()
97 info->base + info->step * info->vidmask); in nvbios_volt_parse()
100 info->max = max(info->base, info->base + info->step * info->vidmask); in nvbios_volt_parse()
105 info->base = nvbios_rd32(bios, volt + 0x12) & 0x00ffffff; in nvbios_volt_parse()
/kernel/linux/linux-6.6/drivers/gpu/drm/vmwgfx/
H A Dvmwgfx_gem.c123 (*p_vbo)->tbo.base.funcs = &vmw_gem_object_funcs; in vmw_gem_object_create()
147 ret = drm_gem_handle_create(filp, &(*p_vbo)->tbo.base, handle); in vmw_gem_object_create_with_handle()
171 rep->map_handle = drm_vma_node_offset_addr(&vbo->tbo.base.vma_node); in vmw_gem_object_create_ioctl()
175 drm_gem_object_put(&vbo->tbo.base); in vmw_gem_object_create_ioctl()
224 id, bo->tbo.base.size, placement, type); in vmw_bo_print_info()
228 kref_read(&bo->tbo.base.refcount), in vmw_bo_print_info()
/kernel/linux/linux-6.6/drivers/hwmon/
H A Dgxp-fan-ctrl.c12 #define OFS_FAN_INST 0 /* Is 0 because plreg base will be set at INST */
13 #define OFS_FAN_FAIL 2 /* Is 2 bytes after base */
14 #define OFS_SEVSTAT 0 /* Is 0 because fn2 base will be set at SEVSTAT */
18 void __iomem *base; member
66 writeb(val, drvdata->base + channel); in gxp_pwm_write()
112 *val = fan_installed(dev, channel) ? readb(drvdata->base + channel) : 0; in gxp_pwm_read()
210 drvdata->base = devm_platform_get_and_ioremap_resource(pdev, 0, NULL); in gxp_fan_ctrl_probe()
211 if (IS_ERR(drvdata->base)) in gxp_fan_ctrl_probe()
212 return dev_err_probe(dev, PTR_ERR(drvdata->base), in gxp_fan_ctrl_probe()
213 "failed to map base\ in gxp_fan_ctrl_probe()
[all...]
/kernel/linux/linux-6.6/drivers/input/touchscreen/
H A Dts4800-ts.c39 void __iomem *base; member
79 u16 last_x = readw(ts->base + X_OFFSET); in ts4800_ts_poll()
80 u16 last_y = readw(ts->base + Y_OFFSET); in ts4800_ts_poll()
163 ts->base = devm_platform_ioremap_resource(pdev, 0); in ts4800_ts_probe()
164 if (IS_ERR(ts->base)) in ts4800_ts_probe()
165 return PTR_ERR(ts->base); in ts4800_ts_probe()
/kernel/linux/linux-6.6/drivers/irqchip/
H A Dirq-lpc32xx.c28 void __iomem *base; member
37 return readl_relaxed(ic->base + reg); in lpc32xx_ic_read()
43 writel_relaxed(val, ic->base + reg); in lpc32xx_ic_write()
206 irqc->base = of_iomap(node, 0); in lpc32xx_of_ic_init()
207 if (!irqc->base) { in lpc32xx_of_ic_init()
217 iounmap(irqc->base); in lpc32xx_of_ic_init()
/kernel/linux/linux-6.6/drivers/input/serio/
H A Dambakmi.c24 #define KMI_BASE (kmi->base)
29 void __iomem *base; member
135 kmi->base = ioremap(dev->res.start, resource_size(&dev->res)); in amba_kmi_probe()
136 if (!kmi->base) { in amba_kmi_probe()
154 iounmap(kmi->base); in amba_kmi_probe()
168 iounmap(kmi->base); in amba_kmi_remove()
/third_party/eudev/src/libudev/
H A Dlibudev-util.c140 char *base = NULL; in util_resolve_sys_link() local
150 base = strrchr(syspath, '/'); in util_resolve_sys_link()
151 if (base == NULL) in util_resolve_sys_link()
153 base[0] = '\0'; in util_resolve_sys_link()
156 strscpyl(base, size - (base - syspath), "/", &link_target[back * 3], NULL); in util_resolve_sys_link()
/third_party/gn/src/gn/
H A Druntime_deps.cc11 #include "base/command_line.h"
12 #include "base/files/file_util.h"
13 #include "base/strings/string_split.h"
136 base::CommandLine::ForCurrentProcess()->GetSwitchValueString( in CollectRuntimeDepsFromFlag()
144 if (!base::ReadFileToString(UTF8ToFilePath(deps_target_list_file), in CollectRuntimeDepsFromFlag()
156 for (const auto& line : base::SplitString( in CollectRuntimeDepsFromFlag()
157 list_contents, "\n", base::TRIM_WHITESPACE, base::SPLIT_WANT_ALL)) { in CollectRuntimeDepsFromFlag()
203 base::FilePath data_deps_file = in WriteRuntimeDepsFile()
/third_party/PyYAML/tests/lib/
H A Dtest_appliance.py23 base, ext = os.path.splitext(filename)
24 if base.endswith('-py2'):
26 filenames.setdefault(base, []).append(ext)
128 for base, exts in test_filenames:
129 if include_filenames and base not in include_filenames:
135 filenames.append(os.path.join(DATA, base+ext))
/third_party/mesa3d/src/amd/vulkan/winsys/null/
H A Dradv_null_winsys.c191 ws->base.destroy = radv_null_winsys_destroy; in radv_null_winsys_create()
192 ws->base.query_info = radv_null_winsys_query_info; in radv_null_winsys_create()
193 ws->base.get_fd = radv_null_winsys_get_fd; in radv_null_winsys_create()
194 ws->base.get_sync_types = radv_null_winsys_get_sync_types; in radv_null_winsys_create()
195 ws->base.get_chip_name = radv_null_winsys_get_chip_name; in radv_null_winsys_create()
201 return &ws->base; in radv_null_winsys_create()
/third_party/node/deps/v8/src/wasm/
H A Dwasm-value.h12 #include "src/base/memory.h"
43 base::WriteUnalignedValue<sType>(reinterpret_cast<Address>(val_), val); \
46 return base::ReadUnalignedValue<sType>(reinterpret_cast<Address>(val_)); \
102 base::WriteUnalignedValue<ctype>(reinterpret_cast<Address>(bit_pattern_), \
110 return base::ReadUnalignedValue<ctype>( \
126 base::WriteUnalignedValue<Handle<Object>>(
132 return base::ReadUnalignedValue<Handle<Object>>( in to_ref()
H A Dfunction-body-decoder.h12 #include "src/base/compiler-specific.h"
13 #include "src/base/iterator.h"
123 public base::iterator<std::input_iterator_tag, WasmOpcode> {
139 public base::iterator<std::input_iterator_tag, uint32_t> {
159 base::iterator_range<opcode_iterator> opcodes() { in opcodes()
160 return base::iterator_range<opcode_iterator>(opcode_iterator(pc_, end_), in opcodes()
164 base::iterator_range<offset_iterator> offsets() { in offsets()
165 return base::iterator_range<offset_iterator>( in offsets()
/third_party/node/deps/v8/third_party/markupsafe/
H A D__init__.py68 def __new__(cls, base=u'', encoding=None, errors='strict'):
69 if hasattr(base, '__html__'):
70 base = base.__html__()
72 return text_type.__new__(cls, base)
73 return text_type.__new__(cls, base, encoding, errors)
/third_party/node/tools/inspector_protocol/markupsafe/
H A D__init__.py68 def __new__(cls, base=u'', encoding=None, errors='strict'):
69 if hasattr(base, '__html__'):
70 base = base.__html__()
72 return text_type.__new__(cls, base)
73 return text_type.__new__(cls, base, encoding, errors)
/third_party/musl/porting/liteos_m/kernel/src/stdio/
H A Dvfscanf.c61 int base; in vfscanf() local
281 base = 16; in vfscanf()
284 base = 8; in vfscanf()
288 base = 10; in vfscanf()
291 base = 0; in vfscanf()
293 x = __intscan(f, base, 0, ULLONG_MAX); in vfscanf()
/third_party/musl/porting/uniproton/kernel/src/stdio/
H A Dvfscanf.c61 int base; in vfscanf() local
281 base = 16; in vfscanf()
284 base = 8; in vfscanf()
288 base = 10; in vfscanf()
291 base = 0; in vfscanf()
293 x = __intscan(f, base, 0, ULLONG_MAX); in vfscanf()
/third_party/node/deps/v8/src/compiler/
H A Dprocessed-feedback.h90 base::Optional<ObjectRef> GetConstantHint() const;
93 base::Optional<ObjectRef> const cell_or_context_;
174 CallFeedback(base::Optional<HeapObjectRef> target, float frequency, in CallFeedback()
183 base::Optional<HeapObjectRef> target() const { return target_; } in target()
189 base::Optional<HeapObjectRef> const target_;
216 : public SingleValueFeedback<base::Optional<JSObjectRef>,
/third_party/node/deps/v8/src/codegen/
H A Dsignature.h8 #include "src/base/functional.h"
9 #include "src/base/iterator.h"
45 base::iterator_range<const T*> parameters() const { in parameters()
48 base::iterator_range<const T*> returns() const { in returns()
51 base::iterator_range<const T*> all() const { in all()
133 size_t seed = base::hash_value(sig.parameter_count()); in hash_value()
134 for (T rep : sig.all()) seed = base::hash_combine(seed, base::hash<T>{}(rep)); in hash_value()
/third_party/node/deps/v8/src/heap/cppgc/
H A Dheap-base.h15 #include "src/base/macros.h"
38 namespace base { namespace
40 } // namespace base
44 namespace base { namespace
46 } // namespace base
122 heap::base::Stack* stack() { return stack_.get(); } in stack()
240 std::unique_ptr<v8::base::LsanPageAllocator> lsan_page_allocator_;
252 std::unique_ptr<heap::base::Stack> stack_;
285 int creation_thread_id_ = v8::base::OS::GetCurrentThreadId();
/third_party/node/deps/v8/src/runtime/
H A Druntime-typedarray.cc5 #include "src/base/atomicops.h"
127 base::Relaxed_Memcpy(static_cast<base::Atomic8*>(data_copy_ptr), in RUNTIME_FUNCTION()
128 static_cast<base::Atomic8*>(array->DataPtr()), bytes); in RUNTIME_FUNCTION()
167 base::Relaxed_Memcpy(static_cast<base::Atomic8*>(array->DataPtr()), in RUNTIME_FUNCTION()
168 static_cast<base::Atomic8*>(data_copy_ptr), bytes); in RUNTIME_FUNCTION()
/third_party/mesa3d/src/gallium/drivers/freedreno/a5xx/
H A Dfd5_texture.c88 so->base = *cso; in fd5_sampler_state_create()
145 so->base = *cso; in fd5_sampler_view_create()
147 so->base.texture = prsc; in fd5_sampler_view_create()
148 so->base.reference.count = 1; in fd5_sampler_view_create()
149 so->base.context = pctx; in fd5_sampler_view_create()
227 return &so->base; in fd5_sampler_view_create()
/third_party/mesa3d/src/gallium/drivers/freedreno/a3xx/
H A Dfd3_texture.c91 so->base = *cso; in fd3_sampler_state_create()
159 so->base = *cso; in fd3_sampler_view_create()
161 so->base.texture = prsc; in fd3_sampler_view_create()
162 so->base.reference.count = 1; in fd3_sampler_view_create()
163 so->base.context = pctx; in fd3_sampler_view_create()
213 return &so->base; in fd3_sampler_view_create()
/third_party/node/deps/openssl/openssl/providers/implementations/ciphers/
H A Dcipher_chacha20.c75 if (dupctx != NULL && dupctx->base.tlsmac != NULL && dupctx->base.alloced) { in chacha20_dupctx()
76 dupctx->base.tlsmac = OPENSSL_memdup(dupctx->base.tlsmac, in chacha20_dupctx()
77 dupctx->base.tlsmacsize); in chacha20_dupctx()
78 if (dupctx->base.tlsmac == NULL) { in chacha20_dupctx()

Completed in 16 milliseconds

1...<<191192193194195196197198199200>>...689