Home
last modified time | relevance | path

Searched refs:base (Results 2051 - 2075 of 5554) sorted by relevance

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

/third_party/mesa3d/include/drm-uapi/
H A Di915_drm.h1293 /** @base: Extension link. See struct i915_user_extension. */
1294 struct i915_user_extension base; member
1482 * list of i915_user_extension. Each i915_user_extension node is the base of a
2047 * .base = {
2056 * .base = {
2167 * .base.name = I915_CONTEXT_ENGINES_EXT_LOAD_BALANCE,
2179 * .base = {
2224 struct i915_user_extension base; member
2236 struct i915_user_extension base; \
2260 struct i915_user_extension base; member
2357 struct i915_user_extension base; global() member
2486 struct i915_user_extension base; global() member
3662 struct i915_user_extension base; global() member
3712 struct i915_user_extension base; global() member
[all...]
/third_party/node/deps/brotli/c/enc/
H A Dcompress_fragment.c562 const uint8_t* base = ip; in BrotliCompressFragmentFastImpl() local
565 int distance = (int)(base - candidate); /* > 0 */ in BrotliCompressFragmentFastImpl()
566 size_t insert = (size_t)(base - next_emit); in BrotliCompressFragmentFastImpl()
568 BROTLI_DCHECK(0 == memcmp(base, candidate, matched)); in BrotliCompressFragmentFastImpl()
574 EmitUncompressedMetaBlock(metablock_start, base, mlen_storage_ix - 3, in BrotliCompressFragmentFastImpl()
576 input_size -= (size_t)(base - input); in BrotliCompressFragmentFastImpl()
577 input = base; in BrotliCompressFragmentFastImpl()
622 const uint8_t* base = ip; in BrotliCompressFragmentFastImpl() local
627 last_distance = (int)(base - candidate); /* > 0 */ in BrotliCompressFragmentFastImpl()
628 BROTLI_DCHECK(0 == memcmp(base, candidat in BrotliCompressFragmentFastImpl()
[all...]
/third_party/node/deps/icu-small/source/i18n/
H A Dsimpletz.cpp974 SimpleTimeZone::getNextTransition(UDate base, UBool inclusive, TimeZoneTransition& result) const { in getNextTransition() argument
986 if (base < firstTransitionTime || (inclusive && base == firstTransitionTime)) { in getNextTransition()
990 UBool stdAvail = stdRule->getNextStart(base, dstRule->getRawOffset(), dstRule->getDSTSavings(), inclusive, stdDate); in getNextTransition()
991 UBool dstAvail = dstRule->getNextStart(base, stdRule->getRawOffset(), stdRule->getDSTSavings(), inclusive, dstDate); in getNextTransition()
1008 SimpleTimeZone::getPreviousTransition(UDate base, UBool inclusive, TimeZoneTransition& result) const { in getPreviousTransition() argument
1020 if (base < firstTransitionTime || (!inclusive && base == firstTransitionTime)) { in getPreviousTransition()
1024 UBool stdAvail = stdRule->getPreviousStart(base, dstRule->getRawOffset(), dstRule->getDSTSavings(), inclusive, stdDate); in getPreviousTransition()
1025 UBool dstAvail = dstRule->getPreviousStart(base, stdRul in getPreviousTransition()
[all...]
/third_party/node/deps/v8/src/heap/cppgc/
H A Dsweeper.cc12 #include "src/base/optional.h"
13 #include "src/base/platform/mutex.h"
16 #include "src/heap/cppgc/heap-base.h"
33 using v8::base::Optional;
147 v8::base::LockGuard<v8::base::Mutex> lock(&mutex_); in Push()
153 v8::base::LockGuard<v8::base::Mutex> lock(&mutex_); in Pop()
156 return v8::base::nullopt; in Pop()
166 v8::base in Insert()
[all...]
/third_party/node/deps/v8/src/ic/
H A Daccessor-assembler.h8 #include "src/base/optional.h"
94 base::Optional<TNode<Object>> lookup_start_object = base::nullopt) in LoadICParameters()
134 base::Optional<TNode<Object>> lookup_start_object_;
142 base::Optional<TNode<Object>> lookup_start_object = base::nullopt) in LazyLoadICParameters()
208 base::Optional<TNode<Object>> receiver, in StoreICParameters()
243 base::Optional<TNode<Object>> receiver_;
273 TNode<Map> map, base::Optional<TNode<Uint32T>> bitfield3 = base
[all...]
/third_party/node/deps/v8/src/torque/
H A Dinstructions.cc251 base::Optional<DefinitionLocation>
253 if (!catch_block) return base::nullopt; in GetExceptionObjectDefinition()
316 if (return_continuation == base::nullopt) { in TypeInstruction()
321 if (return_continuation != base::nullopt) { in TypeInstruction()
393 base::Optional<DefinitionLocation>
395 if (!catch_block) return base::nullopt; in GetExceptionObjectDefinition()
464 base::Optional<DefinitionLocation>
466 if (!catch_block) return base::nullopt; in GetExceptionObjectDefinition()
570 base::Optional<DefinitionLocation>
572 if (!catch_block) return base in GetExceptionObjectDefinition()
[all...]
/third_party/node/deps/openssl/openssl/providers/fips/
H A Dself_test_kats.c94 OSSL_SELF_TEST_onbegin(st, OSSL_SELF_TEST_TYPE_KAT_CIPHER, t->base.desc); in self_test_cipher()
99 cipher = EVP_CIPHER_fetch(libctx, t->base.algorithm, NULL); in self_test_cipher()
106 || !EVP_CipherUpdate(ctx, ct_buf, &len, t->base.pt, in self_test_cipher()
107 t->base.pt_len) in self_test_cipher()
113 if (ct_len != (int)t->base.expected_len in self_test_cipher()
114 || memcmp(t->base.expected, ct_buf, ct_len) != 0) in self_test_cipher()
131 t->base.expected, t->base.expected_len) in self_test_cipher()
136 if (pt_len != (int)t->base.pt_len in self_test_cipher()
137 || memcmp(pt_buf, t->base in self_test_cipher()
[all...]
/third_party/skia/src/core/
H A DSkPathBuilder.cpp169 SkPoint base = fPts.back(); in rQuadTo() local
170 return this->quadTo(base + p1, base + p2); in rQuadTo()
175 SkPoint base = fPts.back(); in rConicTo() local
176 return this->conicTo(base + p1, base + p2, w); in rConicTo()
181 SkPoint base = fPts.back(); in rCubicTo() local
182 return this->cubicTo(base + p1, base + p2, base in rCubicTo()
[all...]
/third_party/openssl/providers/fips/
H A Dself_test_kats.c94 OSSL_SELF_TEST_onbegin(st, OSSL_SELF_TEST_TYPE_KAT_CIPHER, t->base.desc); in self_test_cipher()
99 cipher = EVP_CIPHER_fetch(libctx, t->base.algorithm, NULL); in self_test_cipher()
106 || !EVP_CipherUpdate(ctx, ct_buf, &len, t->base.pt, in self_test_cipher()
107 t->base.pt_len) in self_test_cipher()
113 if (ct_len != (int)t->base.expected_len in self_test_cipher()
114 || memcmp(t->base.expected, ct_buf, ct_len) != 0) in self_test_cipher()
131 t->base.expected, t->base.expected_len) in self_test_cipher()
136 if (pt_len != (int)t->base.pt_len in self_test_cipher()
137 || memcmp(pt_buf, t->base in self_test_cipher()
[all...]
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dsimpletz.cpp976 SimpleTimeZone::getNextTransition(UDate base, UBool inclusive, TimeZoneTransition& result) const { in getNextTransition() argument
988 if (base < firstTransitionTime || (inclusive && base == firstTransitionTime)) { in getNextTransition()
992 UBool stdAvail = stdRule->getNextStart(base, dstRule->getRawOffset(), dstRule->getDSTSavings(), inclusive, stdDate); in getNextTransition()
993 UBool dstAvail = dstRule->getNextStart(base, stdRule->getRawOffset(), stdRule->getDSTSavings(), inclusive, dstDate); in getNextTransition()
1010 SimpleTimeZone::getPreviousTransition(UDate base, UBool inclusive, TimeZoneTransition& result) const { in getPreviousTransition() argument
1022 if (base < firstTransitionTime || (!inclusive && base == firstTransitionTime)) { in getPreviousTransition()
1026 UBool stdAvail = stdRule->getPreviousStart(base, dstRule->getRawOffset(), dstRule->getDSTSavings(), inclusive, stdDate); in getPreviousTransition()
1027 UBool dstAvail = dstRule->getPreviousStart(base, stdRul in getPreviousTransition()
[all...]
/third_party/skia/third_party/externals/brotli/c/enc/
H A Dcompress_fragment.c562 const uint8_t* base = ip; in BrotliCompressFragmentFastImpl() local
565 int distance = (int)(base - candidate); /* > 0 */ in BrotliCompressFragmentFastImpl()
566 size_t insert = (size_t)(base - next_emit); in BrotliCompressFragmentFastImpl()
568 BROTLI_DCHECK(0 == memcmp(base, candidate, matched)); in BrotliCompressFragmentFastImpl()
574 EmitUncompressedMetaBlock(metablock_start, base, mlen_storage_ix - 3, in BrotliCompressFragmentFastImpl()
576 input_size -= (size_t)(base - input); in BrotliCompressFragmentFastImpl()
577 input = base; in BrotliCompressFragmentFastImpl()
622 const uint8_t* base = ip; in BrotliCompressFragmentFastImpl() local
627 last_distance = (int)(base - candidate); /* > 0 */ in BrotliCompressFragmentFastImpl()
628 BROTLI_DCHECK(0 == memcmp(base, candidat in BrotliCompressFragmentFastImpl()
[all...]
/third_party/toybox/kconfig/
H A Dsymbol.c147 static int sym_get_range_val(struct symbol *sym, int base) in sym_get_range_val() argument
152 base = 10; in sym_get_range_val()
155 base = 16; in sym_get_range_val()
160 return strtol(sym->curr.val, NULL, base); in sym_get_range_val()
166 int base, val, val2; in sym_validate_range() local
171 base = 10; in sym_validate_range()
174 base = 16; in sym_validate_range()
182 val = strtol(sym->curr.val, NULL, base); in sym_validate_range()
183 val2 = sym_get_range_val(prop->expr->left.sym, base); in sym_validate_range()
185 val2 = sym_get_range_val(prop->expr->right.sym, base); in sym_validate_range()
[all...]
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/
H A DIcuFunctions.java5 import static com.google.common.base.Preconditions.checkArgument;
17 import com.google.common.base.Ascii;
18 import com.google.common.base.CharMatcher;
/third_party/icu/tools/multi/proj/icu4jscan/src/com/ibm/icu/dev/scan/
H A DCapScan.java33 System.err.println("# "+CapScan.class.getSimpleName()+": This is just the base class. Use a subclass."); in main()
66 Element base = out.createElement(IcuInfo.ICU_INFO); in createProduct()
67 out.appendChild(base); in createProduct()
70 base.appendChild(products); in createProduct()
H A DSimpleScan.java31 System.err.println("# "+SimpleScan.class.getSimpleName()+": This is just the base class. Use a subclass."); in main()
64 CapElement base = out.createCapElement(IcuInfo.ICU_INFO); in createProduct()
65 out.appendChild(base); in createProduct()
68 base.appendChild(products); in createProduct()
/third_party/libuv/test/
H A Dtest-udp-send-and-recv.c50 buf->base = slab; in alloc_cb()
82 ASSERT(!memcmp("PONG", buf->base, nread)); in cl_recv_cb()
140 ASSERT(!memcmp("PING", rcvbuf->base, nread)); in sv_recv_cb()
/third_party/mesa3d/src/gallium/winsys/svga/drm/
H A Dvmw_screen.h67 struct svga_winsys_screen base; member
130 vmw_winsys_screen(struct svga_winsys_screen *base) in vmw_winsys_screen() argument
132 return (struct vmw_winsys_screen *)base; in vmw_winsys_screen()
/third_party/node/deps/v8/tools/testrunner/testproc/
H A Dvariant_test.py16 from testrunner.testproc import base namespace
20 class FakeResultObserver(base.TestProcObserver):
31 class FakeFilter(base.TestProcFilter):
H A Dsequence_test.py18 from testrunner.testproc import base namespace
23 class FakeExecutionProc(base.TestProc):
42 class FakeResultObserver(base.TestProcObserver):
/third_party/node/deps/npm/node_modules/node-gyp/lib/
H A Dprocess-release.js130 const base = url.resolve(defaultUrl, './')
136 return url.resolve(base, 'win-' + arch + '/' + name + '.lib')
139 return url.resolve(base, (arch === 'x86' ? '' : arch + '/') + name + '.lib')
/third_party/mesa3d/src/gallium/drivers/nouveau/nv30/
H A Dnv30_fragprog.c38 struct nouveau_context *nv = &nv30->base; in nv30_fragprog_upload()
40 struct pipe_context *pipe = &nv30->base.pipe; in nv30_fragprog_upload()
69 struct nouveau_pushbuf *push = nv30->base.pushbuf; in nv30_fragprog_validate()
/third_party/node/deps/v8/src/date/
H A Ddate.h8 #include "src/base/small-vector.h"
9 #include "src/base/timezone-cache.h"
50 base::TimezoneCache::TimeZoneDetection time_zone_detection);
237 base::TimezoneCache* tz_cache_;
251 using DateBuffer = base::SmallVector<char, 128>;
/third_party/node/deps/v8/src/base/
H A Dbit-field.h10 #include "src/base/macros.h"
13 namespace base { namespace
19 // using MyBitField = base::BitField<MyEnum, 4, 2>;
102 using Name = base::BitField<Type, RangesName::k##Name##Start, Size>;
105 using Name = base::BitField64<Type, RangesName::k##Name##Start, Size>;
154 } // namespace base
H A Dfunctional.h16 #include "src/base/base-export.h"
17 #include "src/base/macros.h"
20 namespace base { namespace
22 // base::hash is an implementation of the hash function object specified by
27 // base::hash is implemented by calling the hash_value function. The namespace
34 // simple function base::hash_combine to pass hash-relevant member variables
35 // into, in order to define a decent hash function. base::hash_combine is
47 // return base::hash_combine(p.x, p.y);
53 // base
[all...]
/third_party/node/deps/v8/src/deoptimizer/
H A Dframe-description.h94 return base::Malloc(size + frame_size - kSystemPointerSize);
98 base::Free(pointer);
101 void operator delete(void* description) { base::Free(description); }

Completed in 23 milliseconds

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