Home
last modified time | relevance | path

Searched refs:VAR (Results 1 - 25 of 43) sorted by relevance

12

/third_party/mesa3d/src/mesa/math/
H A Dm_debug_xform.c61 VAR, VAR, VAR, VAR,
62 VAR, VAR, VAR, VAR,
63 VAR, VAR, VA
[all...]
H A Dm_debug_norm.c56 VAR, VAR, VAR, NIL,
57 VAR, VAR, VAR, NIL,
58 VAR, VAR, VAR, NIL,
62 VAR, NI
[all...]
H A Dm_debug_util.h303 enum { NIL = 0, ONE = 1, NEG = -1, VAR = 2 }; enumerator
/third_party/vk-gl-cts/framework/common/
H A DtcuInterval.hpp232 #define TCU_SET_INTERVAL_BOUNDS(DST, VAR, SETLOW, SETHIGH) do \
235 ::tcu::ScopedRoundingMode VAR##_ctx_; \
236 ::tcu::Interval& VAR##_dst_ = (DST); \
237 ::tcu::Interval VAR##_lo_; \
238 ::tcu::Interval VAR##_hi_; \
241 ::tcu::Interval& VAR = VAR##_lo_; \
246 ::tcu::Interval& VAR = VAR##_hi_; \
251 VAR##_dst
[all...]
/third_party/python/Lib/unittest/test/
H A Dtest_async_case.py40 VAR = contextvars.ContextVar('VAR', default=()) variable
67 VAR.set(VAR.get() + ('setUp',))
74 VAR.set(VAR.get() + ('asyncSetUp',))
81 VAR.set(VAR.get() + ('test',))
87 VAR.set(VAR
[all...]
/third_party/skia/third_party/externals/dawn/src/dawn_native/
H A DError.h136 // any, to VAR.
137 #define DAWN_TRY_ASSIGN(VAR, EXPR) DAWN_TRY_ASSIGN_WITH_CLEANUP(VAR, EXPR, {})
172 #define DAWN_TRY_ASSIGN_WITH_CLEANUP_IMPL_3_(VAR, EXPR, BODY) \
173 DAWN_TRY_ASSIGN_WITH_CLEANUP_IMPL_4_(VAR, EXPR, BODY, std::move(error))
175 #define DAWN_TRY_ASSIGN_WITH_CLEANUP_IMPL_4_(VAR, EXPR, BODY, RET) \
184 VAR = DAWN_LOCAL_VAR.AcquireSuccess(); \
/third_party/ffmpeg/ffbuild/
H A Dcommon.mak26 $(foreach VAR,$(BRIEF), \
27 $(eval override $(VAR) = @$$(call ECHO,$(VAR),$$(MSG)); $($(VAR))))
28 $(foreach VAR,$(SILENT),$(eval override $(VAR) = @$($(VAR))))
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/
H A Dvarsub.bat58 if (exists $VAR{$var}) {
61 $VAR{$var} = $def;
68 foreach my $var (keys %VAR) {
69 my $def = $VAR{$var};
/third_party/toybox/toys/pending/
H A Dcrond.c42 } VAR; typedef
211 VAR *v; in parse_line()
289 v = xzalloc(sizeof(VAR)); in parse_line()
306 VAR *v, *vnode = (VAR *)l->var; in free_cronfile()
398 // If there is no job for a cron, remove the VAR list. in scan_cronfiles()
400 VAR *v, *vnode = (VAR *)cfile->var; in scan_cronfiles()
430 VAR *v, *vstart = (VAR *)cfil in do_fork()
[all...]
/third_party/skia/third_party/externals/dawn/src/tests/
H A DDawnNativeTest.h27 #define DAWN_ASSERT_AND_ASSIGN(VAR, EXPR) \
28 DAWN_TRY_ASSIGN_WITH_CLEANUP(VAR, EXPR, {}, AddFatalDawnFailure(#EXPR, error.get()))
/third_party/ltp/testcases/kernel/syscalls/kill/
H A Dkill02.c155 #define CHILD_EXIT(VAR) ((VAR >> 8) & 0377) /*Exit value from the child. */
156 #define CHILD_SIG(VAR) (VAR & 0377) /*Signal value from the termination of child. */
/third_party/ffmpeg/libavcodec/
H A Ddovi_rpu.c185 #define VALIDATE(VAR, MIN, MAX) \
187 if (VAR < MIN || VAR > MAX) { \
189 #MIN" <= "#VAR" = %d <= "#MAX"\n", (int) VAR); \
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/regex/
H A DRuleParser.java34 private static final Pattern VAR = Pattern.compile("^%([A-Z])=(.*)$"); field in RuleParser
57 .map(VAR::matcher) in parseConfig()
/third_party/python/Python/
H A Dpreconfig.c492 #define COPY_FLAG(ATTR, VAR) \ in preconfig_set_global_vars()
494 VAR = config->ATTR; \ in preconfig_set_global_vars()
496 #define COPY_NOT_FLAG(ATTR, VAR) \ in preconfig_set_global_vars()
498 VAR = !config->ATTR; \ in preconfig_set_global_vars()
H A Dinitconfig.c234 #define SET_ITEM_INT(VAR) \ in _Py_GetGlobalVariablesAsDict()
235 SET_ITEM(#VAR, PyLong_FromLong(VAR)) in _Py_GetGlobalVariablesAsDict()
240 #define SET_ITEM_STR(VAR) \ in _Py_GetGlobalVariablesAsDict()
241 SET_ITEM(#VAR, FROM_STRING(VAR)) in _Py_GetGlobalVariablesAsDict()
1503 #define COPY_FLAG(ATTR, VAR) \ in config_set_global_vars()
1505 VAR = config->ATTR; \ in config_set_global_vars()
1507 #define COPY_NOT_FLAG(ATTR, VAR) \ in config_set_global_vars()
1509 VAR in config_set_global_vars()
[all...]
/third_party/ffmpeg/tests/fate/
H A Dhevc.mak181 $(foreach VAR,$(FATE_HEVC_VARS), $(eval HEVC_TESTS_$(VAR) := $(addprefix fate-hevc-conformance-, $(HEVC_SAMPLES_$(VAR)))))
/third_party/node/deps/v8/third_party/wasm-api/example/
H A Dglobal.cc88 wasm::ValType::make(wasm::F32), wasm::VAR); in run()
90 wasm::ValType::make(wasm::I64), wasm::VAR); in run()
H A Dreflect.cc12 case wasm::VAR: return out << "var";
/third_party/vk-gl-cts/framework/delibs/debase/
H A DdeDefs.h354 #define DE_UNREF(VAR) ((void)(VAR))
/third_party/icu/icu4c/source/test/intltest/
H A Dloctest.h200 VAR, enumerator
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/mutators/
H A Dvariable_or_object_mutation.js86 'VAR = IDENTIFIER, __callGC()')
93 VAR: randomVar,
/third_party/mksh/
H A Dexprtok.h109 F1(VAR) /*XXX should be F2 */
H A Dexpr.c32 #define P_PRIMARY 0 /* VAR, LIT, (), ! ~ ++ -- */
183 case VAR: in evalerr()
306 case VAR: in evalexpr()
596 es->tok = VAR; in exprtoken()
/third_party/node/deps/v8/src/parsing/
H A Dscanner-inl.h79 KEYWORD("var", Token::VAR) \
H A Dtoken.h157 K(VAR, "var", 0) \

Completed in 17 milliseconds

12