Home
last modified time | relevance | path

Searched refs:base (Results 2101 - 2125 of 5570) sorted by relevance

1...<<81828384858687888990>>...223

/third_party/mesa3d/src/gallium/drivers/radeonsi/
H A Dsi_descriptors.c245 si_sampler_view_add_buffer(sctx, sview->base.texture, RADEON_USAGE_READ, in si_sampler_views_begin_new_cs()
260 struct si_resource *res = si_resource(sview->base.texture); in si_sampler_views_check_encrypted()
450 struct pipe_sampler_view *view = &sview->base; in si_set_sampler_view_desc()
458 si_set_buf_desc_address(&tex->buffer, sview->base.u.buf.offset, desc + 4); in si_set_sampler_view_desc()
474 sview->base.u.tex.first_level, sview->block_width, in si_set_sampler_view_desc()
537 if (samplers->views[slot] == &sview->base && !disallow_early_out) { in si_set_sampler_views()
546 struct si_texture *tex = (struct si_texture *)sview->base.texture; in si_set_sampler_views()
575 if (vi_dcc_enabled(tex, sview->base.u.tex.first_level) && in si_set_sampler_views()
582 samplers->views[slot] = &sview->base; in si_set_sampler_views()
584 pipe_sampler_view_reference(&samplers->views[slot], &sview->base); in si_set_sampler_views()
2086 uint32_t *base = &sctx->shader_pointers.sh_base[shader]; si_set_user_data_base() local
2256 unsigned base = R_00B900_COMPUTE_USER_DATA_0; si_emit_compute_shader_pointers() local
[all...]
/third_party/ffmpeg/libavcodec/
H A Daic.c256 int16_t **base, int16_t **ext) in recombine_block()
262 dst[scan[i * 8 + j]] = (*base)[j]; in recombine_block()
265 *base += 4; in recombine_block()
276 int16_t **base, int16_t **ext, in recombine_block_il()
284 dst[scan[i * 8 + j]] = (*base)[j]; in recombine_block_il()
287 *base += 4; in recombine_block_il()
255 recombine_block(int16_t *dst, const uint8_t *scan, int16_t **base, int16_t **ext) recombine_block() argument
275 recombine_block_il(int16_t *dst, const uint8_t *scan, int16_t **base, int16_t **ext, int block_no) recombine_block_il() argument
/third_party/gn/src/gn/
H A Dcommand_refs.cc10 #include "base/command_line.h"
11 #include "base/files/file_util.h"
12 #include "base/strings/string_split.h"
13 #include "base/strings/string_util.h"
305 gn refs out/Debug //base:i18n --as=buildfile | xargs gvim
306 Edit all .gn files containing references to //base:i18n
308 gn refs out/Debug //base --all
309 List all targets depending directly or indirectly on //base:base.
311 gn refs out/Debug "//base/*"
[all...]
/third_party/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DCollationDataReader.java99 static void read(CollationTailoring base, ByteBuffer inBytes, in read() argument
102 if(base != null && base.getUCAVersion() != tailoring.getUCAVersion()) { in read()
103 throw new ICUException("Tailoring UCA version differs from base data UCA version"); in read()
147 CollationData baseData = base == null ? null : base.data; in read()
156 // the base data does not have a reordering. in read()
157 throw new ICUException("Collation base data must not reorder scripts"); in read()
200 throw new ICUException("Tailoring numeric primary weight differs from base data"); in read()
210 data.base in read()
[all...]
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/
H A DIcuDataDumper.java5 import static com.google.common.base.CharMatcher.whitespace;
6 import static com.google.common.base.Preconditions.checkArgument;
7 import static com.google.common.base.Preconditions.checkElementIndex;
8 import static com.google.common.base.Preconditions.checkNotNull;
9 import static com.google.common.base.Preconditions.checkState;
27 import com.google.common.base.Joiner;
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/regex/
H A DResultSpec.java5 import static com.google.common.base.CharMatcher.whitespace;
6 import static com.google.common.base.Preconditions.checkArgument;
7 import static com.google.common.base.Preconditions.checkElementIndex;
8 import static com.google.common.base.Preconditions.checkNotNull;
9 import static com.google.common.base.Preconditions.checkState;
33 import com.google.common.base.Splitter;
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/coll/
H A DCollationDataReader.java100 static void read(CollationTailoring base, ByteBuffer inBytes, in read() argument
103 if(base != null && base.getUCAVersion() != tailoring.getUCAVersion()) { in read()
104 throw new ICUException("Tailoring UCA version differs from base data UCA version"); in read()
148 CollationData baseData = base == null ? null : base.data; in read()
157 // the base data does not have a reordering. in read()
158 throw new ICUException("Collation base data must not reorder scripts"); in read()
201 throw new ICUException("Tailoring numeric primary weight differs from base data"); in read()
211 data.base in read()
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DPluralSamples.java204 Integer base = ints.get(j); in fractions()
205 String keyword = pluralRules.select(base); in fractions()
210 toAddTo.add(new FixedDecimal(base,1)); // add .0 in fractions()
211 toAddTo.add(new FixedDecimal(base,2)); // add .00 in fractions()
214 toAddTo.add(new FixedDecimal(base + "." + fract)); in fractions()
223 toAddTo.add(new FixedDecimal(base + fract/(double)TENS[i], visibleFractions)); in fractions()
/third_party/icu/icu4c/source/i18n/
H A Dcollationdatareader.cpp47 CollationDataReader::read(const CollationTailoring *base, const uint8_t *inBytes, int32_t inLength, in read() argument
50 if(base != NULL) { in read()
61 if(base->getUCAVersion() != tailoring.getUCAVersion()) { in read()
105 const CollationData *baseData = base == NULL ? NULL : base->data; in read()
116 // the base data does not have a reordering. in read()
168 data->base = baseData; in read()
175 // Use the base data. Only the settings are tailored. in read()
/third_party/mesa3d/src/amd/addrlib/src/core/
H A Daddrcommon.h516 * Compute log of base 2 no matter the target is power of 2 or not
539 * Compute log of base 2
556 * Compute log of base 2 quickly (<= 16)
673 UINT_32 base, ///< [in] First term in the geometric progression in SumGeo()
676 ADDR_ASSERT(base > 0); in SumGeo()
680 for (; (i < num) && (base > 1); i++) in SumGeo()
682 sum += base; in SumGeo()
683 base = RoundHalf(base); in SumGeo()
796 UINT_32 v, ///< [in] Reverse operation base valu in ReverseBitVector()
672 SumGeo( UINT_32 base, UINT_32 num) SumGeo() argument
[all...]
/third_party/mesa3d/src/egl/drivers/dri2/
H A Degl_dri2.h307 _EGLContext base; member
313 _EGLSurface base; member
406 _EGLConfig base; member
412 _EGLImage base; member
417 _EGLSync base; member
599 if (dri2_dpy->image->base.version >= 10 && in dri2_set_WL_bind_wayland_display()
/third_party/mesa3d/src/broadcom/vulkan/
H A Dv3dvx_pipeline.c484 prog_data_vs_bin->base.threads == 4; in pack_shader_state_record()
486 prog_data_vs->base.threads == 4; in pack_shader_state_record()
488 prog_data_fs->base.threads == 4; in pack_shader_state_record()
491 prog_data_vs_bin->base.single_seg; in pack_shader_state_record()
493 prog_data_vs->base.single_seg; in pack_shader_state_record()
495 prog_data_fs->base.single_seg; in pack_shader_state_record()
/third_party/node/lib/internal/policy/
H A Dmanifest.js649 * Attempts to canonicalize relative URL strings against a base URL string
656 * @param {string} base
659 function canonicalizeSpecifier(specifier, base) {
662 return resolve(specifier, base).href;
675 * @param {string} [base]
678 const emptyOrProtocolOrResolve = (resourceHREF, base) => {
692 return resolve(resourceHREF, base).href;
703 * @param {string} [base]
706 const resolve = (originalHREF, base) => {
711 const resourceURL = new URL(originalHREF, base);
[all...]
/third_party/node/src/quic/
H A Dpacket.cc256 ssize_t nwrite = ngtcp2_crypto_write_retry(dest.base, in CreateRetryPacket()
262 vec.base, in CreateRetryPacket()
280 conn, nullptr, nullptr, vec.base, vec.len, error, uv_hrtime()); in CreateConnectionClosePacket()
299 vec.base, in CreateImmediateConnectionClosePacket()
341 vec.base, pktlen, token, random, kRandlen); in CreateStatelessResetPacket()
389 ngtcp2_pkt_write_version_negotiation(vec.base, in CreateVersionNegotiationPacket()
/third_party/musl/porting/linux/user/src/gwp_asan/
H A Dgwp_asan.c64 extern void gwp_asan_iterate(void *base, size_t size,
65 void (*callback)(void* base, size_t size, void *arg), void *arg);
496 void libc_gwp_asan_malloc_iterate(void *base, size_t size, in libc_gwp_asan_malloc_iterate() argument
497 void (*callback)(uintptr_t base, size_t size, void *arg), void *arg) in libc_gwp_asan_malloc_iterate()
502 if (GWP_ASAN_PREDICT_FALSE(gwp_asan_pointer_is_mine(base))) { in libc_gwp_asan_malloc_iterate()
503 return gwp_asan_iterate(base, size, callback, arg); in libc_gwp_asan_malloc_iterate()
/third_party/musl/src/gwp_asan/linux/
H A Dgwp_asan.c64 extern void gwp_asan_iterate(void *base, size_t size,
65 void (*callback)(void* base, size_t size, void *arg), void *arg);
496 void libc_gwp_asan_malloc_iterate(void *base, size_t size, in libc_gwp_asan_malloc_iterate() argument
497 void (*callback)(uintptr_t base, size_t size, void *arg), void *arg) in libc_gwp_asan_malloc_iterate()
502 if (GWP_ASAN_PREDICT_FALSE(gwp_asan_pointer_is_mine(base))) { in libc_gwp_asan_malloc_iterate()
503 return gwp_asan_iterate(base, size, callback, arg); in libc_gwp_asan_malloc_iterate()
/third_party/node/deps/icu-small/source/i18n/
H A Dcollationdatareader.cpp47 CollationDataReader::read(const CollationTailoring *base, const uint8_t *inBytes, int32_t inLength, in read() argument
50 if(base != nullptr) { in read()
61 if(base->getUCAVersion() != tailoring.getUCAVersion()) { in read()
105 const CollationData *baseData = base == nullptr ? nullptr : base->data; in read()
116 // the base data does not have a reordering. in read()
168 data->base = baseData; in read()
175 // Use the base data. Only the settings are tailored. in read()
/third_party/node/deps/npm/node_modules/diff/lib/patch/
H A Dmerge.js63 function merge(mine, theirs, base) {
64 mine = loadPatch(mine, base);
65 theirs = loadPatch(theirs, base);
139 function loadPatch(param, base) {
158 if (!base) {
159 throw new Error('Must provide a base reference or pass in a patch');
174 (undefined, undefined, base, param)
/third_party/mesa3d/src/panfrost/lib/
H A Dpan_texture.c267 mali_ptr base, in panfrost_get_surface_pointer()
281 return base + offset; in panfrost_get_surface_pointer()
455 mali_ptr base = iview->image->data.bo->ptr.gpu + iview->image->data.offset; in panfrost_emit_texture_payload() local
459 base += iview->buf.offset; in panfrost_emit_texture_payload()
465 base |= panfrost_compression_tag(desc, layout->dim, layout->modifier); in panfrost_emit_texture_payload()
494 panfrost_get_surface_pointer(layout, iview->dim, base, in panfrost_emit_texture_payload()
265 panfrost_get_surface_pointer(const struct pan_image_layout *layout, enum mali_texture_dimension dim, mali_ptr base, unsigned l, unsigned w, unsigned f, unsigned s) panfrost_get_surface_pointer() argument
/third_party/mesa3d/src/panfrost/bifrost/valhall/
H A Dasm.py84 number = int(s, base = 0)
107 val = int(op, base=0)
193 base = regs[0] if len(regs) > 0 else 0
194 die_if(any([reg != (base + i) for i, reg in enumerate(regs)]),
196 die_if(sr_count > 1 and (base % 2) != 0,
208 encoded |= ((sr.encoded_flags | base) << sr.start)
/third_party/node/deps/v8/src/diagnostics/
H A Ddisassembler.cc14 #include "src/base/memory.h"
15 #include "src/base/strings.h"
16 #include "src/base/vector.h"
57 base::EmbeddedVector<char, 128> v8_buffer_;
71 base::AddressRegion addressable_region = in InitExternalRefsCache()
296 v8::base::EmbeddedVector<char, 128> decode_buffer; in DecodeIt()
320 base::ReadUnalignedValue<int32_t>(reinterpret_cast<Address>(pc))); in DecodeIt()
328 base::ReadUnalignedValue<int32_t>(reinterpret_cast<Address>(pc)), in DecodeIt()
339 base::ReadUnalignedValue<byte*>(reinterpret_cast<Address>(pc)); in DecodeIt()
/third_party/node/deps/v8/src/execution/arm/
H A Dsimulator-arm.h21 #include "src/base/hashmap.h"
22 #include "src/base/lazy-instance.h"
23 #include "src/base/platform/mutex.h"
25 #include "src/execution/simulator-base.h"
269 static void FlushICache(base::CustomMatcherHashMap* i_cache, void* start,
417 static void CheckICache(base::CustomMatcherHashMap* i_cache,
419 static void FlushOnePage(base::CustomMatcherHashMap* i_cache, intptr_t start,
421 static CachePage* GetCachePage(base::CustomMatcherHashMap* i_cache,
566 base::Mutex mutex;
580 friend class base
[all...]
/third_party/node/deps/v8/src/heap/
H A Dsafepoint.cc9 #include "src/base/logging.h"
10 #include "src/base/optional.h"
11 #include "src/base/platform/mutex.h"
213 base::MutexGuard guard(&mutex_); in Arm()
220 base::MutexGuard guard(&mutex_); in Disarm()
229 base::MutexGuard guard(&mutex_); in WaitUntilRunningThreadsInSafepoint()
238 base::MutexGuard guard(&mutex_); in NotifyPark()
245 base::MutexGuard guard(&mutex_); in WaitInSafepoint()
256 base::MutexGuard guard(&mutex_); in WaitInUnpark()
/third_party/node/deps/v8/src/wasm/baseline/
H A Dliftoff-register.h11 #include "src/base/bits.h"
121 32 - base::bits::CountLeadingZeros<uint32_t>(kAfterMaxLiftoffRegCode - 1);
123 32 - base::bits::CountLeadingZeros<uint32_t>(kMaxGpRegCode);
125 32 - base::bits::CountLeadingZeros<uint32_t>(kMaxFpRegCode);
407 return base::bits::CountPopulation(regs_); in GetNumRegsSet()
438 int first_code = base::bits::CountTrailingZeros(regs_); in GetFirstRegSet()
445 8 * sizeof(regs_) - 1 - base::bits::CountLeadingZeros(regs_); in GetLastRegSet()
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dcollationdatareader.cpp47 CollationDataReader::read(const CollationTailoring *base, const uint8_t *inBytes, int32_t inLength, in read() argument
50 if(base != NULL) { in read()
61 if(base->getUCAVersion() != tailoring.getUCAVersion()) { in read()
105 const CollationData *baseData = base == NULL ? NULL : base->data; in read()
116 // the base data does not have a reordering. in read()
168 data->base = baseData; in read()
175 // Use the base data. Only the settings are tailored. in read()

Completed in 24 milliseconds

1...<<81828384858687888990>>...223