Home
last modified time | relevance | path

Searched refs:definitions (Results 1 – 25 of 922) sorted by relevance

12345678910>>...37

/external/deqp/scripts/khr_util/
Dgen_str_util.py26 def isValueDefined (definitions, value): argument
27 return value in definitions
29 def allValuesUndefined (definitions, values): argument
31 if isValueDefined(definitions, value):
35 def anyValueDefined (definitions, values): argument
36 return not allValuesUndefined(definitions, values)
43 definitions = makeDefSet(iface)
47 if anyValueDefined(definitions, values):
54 if anyValueDefined(definitions, values):
61 if anyValueDefined(definitions, values):
[all …]
/external/tcpdump/
DINSTALL.txt49 addrtoname.h - address to hostname definitions
50 ah.h - IPSEC Authentication Header definitions
51 appletalk.h - AppleTalk definitions
55 atm.h - ATM traffic type definitions
58 chdlc.h - Cisco HDLC definitions
66 ether.h - Ethernet definitions
67 ethertype.h - Ethernet type value definitions
68 extract.h - alignment definitions
69 gmpls.c - GMPLS definitions
74 interface.h - globals, prototypes and definitions
[all …]
/external/mesa3d/src/compiler/glsl/
Dlink_interface_blocks.cpp310 interface_block_definitions *definitions; in validate_intrastage_interface_blocks() local
313 definitions = &in_interfaces; in validate_intrastage_interface_blocks()
316 definitions = &out_interfaces; in validate_intrastage_interface_blocks()
319 definitions = &uniform_interfaces; in validate_intrastage_interface_blocks()
322 definitions = &buffer_interfaces; in validate_intrastage_interface_blocks()
332 ir_variable *prev_def = definitions->lookup(var); in validate_intrastage_interface_blocks()
337 definitions->store(var); in validate_intrastage_interface_blocks()
361 interface_block_definitions definitions; in validate_interstage_inout_blocks() local
373 definitions.store(var); in validate_interstage_inout_blocks()
382 ir_variable *producer_def = definitions.lookup(var); in validate_interstage_inout_blocks()
[all …]
/external/vulkan-validation-layers/demos/smoke/
DCMakeLists.txt43 set(definitions variable
54 list(APPEND definitions PRIVATE -DUNINSTALLED_LOADER="$<TARGET_FILE:vulkan>")
58 list(APPEND definitions PRIVATE -DVK_USE_PLATFORM_WIN32_KHR)
59 list(APPEND definitions PRIVATE -DWIN32_LEAN_AND_MEAN)
69 list(APPEND definitions PRIVATE -DVK_USE_PLATFORM_XCB_KHR)
76 list(APPEND definitions PRIVATE -DVK_USE_PLATFORM_WAYLAND_KHR)
85 target_compile_definitions(smoketest ${definitions})
/external/swiftshader/third_party/LLVM/test/Scripts/
Dcoff-dump.py403 definitions = entry[3]
407 if type(definitions) is types.TupleType:
408 selector = read_value(definitions[0])
409 definitions = definitions[1][selector]
411 if value in definitions:
412 description = definitions[value]
425 definitions = entry[3]
432 for entry in definitions:
/external/skia/src/gpu/glsl/
DGrGLSLShaderBuilder.h86 this->definitions().appendf("const %s %s = %s;\n", type, name, value); in defineConstant()
90 this->definitions().appendf("const int %s = %i;\n", name, value); in defineConstant()
94 this->definitions().appendf("const float %s = %f;\n", name, value); in defineConstant()
98 this->definitions().appendf("const %s %s = ", type, name); in defineConstantf()
101 this->definitions().appendVAList(fmt, args); in defineConstantf()
103 this->definitions().append(";\n"); in defineConstantf()
220 SkString& definitions() { return fShaderStrings[kDefinitions]; } in definitions() function
/external/ltp/testcases/open_posix_testsuite/Documentation/
DHOWTO_DefinitionsTest3 A variety of header file definitions are listed in the POSIX Base Definitions
5 definitions that appear.
37 For examples, see posixtestsuite/conformance/definitions/signal/15-1.c
45 #include <include file with definitions.h>
51 For examples, see posixtestsuite/conformance/definitions/signal/22-*.c
68 For examples, see posixtestsuite/conformance/definitions/signal/43-1.c
DHOWTO_ConformanceTest23 definitions/ - This directory contains tests for each *.h file in the POSIX
31 (as in definitions/).
35 definitions/
37 The definitions/ directory contains one subdirectory per *.h file. Each
55 Within each lowest level directory (definitions/*_h for definitions,
86 - HOWTO_DefinitionsTest - describes how to create definitions tests
/external/skia/src/sksl/
DSkSLCompiler.h85 DefinitionMap* definitions);
87 void addDefinitions(const BasicBlock::Node& node, DefinitionMap* definitions);
97 void simplifyExpression(DefinitionMap& definitions,
108 void simplifyStatement(DefinitionMap& definitions,
DSkSLCompiler.cpp182 DefinitionMap* definitions) { in addDefinition() argument
187 (*definitions)[&var] = expr; in addDefinition()
200 definitions); in addDefinition()
206 definitions); in addDefinition()
212 definitions); in addDefinition()
222 DefinitionMap* definitions) { in addDefinitions() argument
231 this->addDefinition(b->fLeft.get(), &b->fRight, definitions); in addDefinitions()
236 definitions); in addDefinitions()
247 definitions); in addDefinitions()
257 definitions); in addDefinitions()
[all …]
/external/libmojo/mojo/public/tools/bindings/generators/cpp_templates/
Dmodule.cc.tmpl65 {#--- Interface parameter definitions #}
85 {#--- Struct definitions #}
92 {#--- Union definitions #}
101 {#--- Interface parameter data view definitions #}
128 {#--- Struct builder definitions #}
136 {#--- Union builder definitions #}
141 {#--- Interface definitions #}
/external/r8/src/main/java/com/android/tools/r8/graph/
DAppInfoWithSubtyping.java50 DexClass baseClass, Function<DexType, DexClass> definitions) { in populateSuperType() argument
55 populateAllSuperTypes(map, superType, baseClass, definitions); in populateSuperType()
61 DexClass baseClass, Function<DexType, DexClass> definitions) { in populateAllSuperTypes() argument
62 DexClass holderClass = definitions.apply(holder); in populateAllSuperTypes()
65 populateSuperType(map, holderClass.superType, baseClass, definitions); in populateAllSuperTypes()
73 populateSuperType(map, inter, baseClass, definitions); in populateAllSuperTypes()
DAppInfo.java21 private final ConcurrentHashMap<DexType, Map<Descriptor, KeyedDexItem>> definitions = field in AppInfo
32 this.definitions.putAll(previous.definitions); in AppInfo()
81 Map<Descriptor, KeyedDexItem> typeDefinitions = definitions.get(type); in getDefinitions()
87 Map<Descriptor, KeyedDexItem> existing = definitions.putIfAbsent(type, typeDefinitions); in getDefinitions()
/external/libmojo/mojo/public/tools/bindings/generators/js_templates/
Dmodule_definition.tmpl12 {#--- Struct definitions #}
17 {#--- Union definitions #}
23 {#--- Interface definitions #}
/external/ltp/testcases/open_posix_testsuite/
D.gitignore5 /conformance/definitions/*/Makefile
6 /conformance/definitions/*/*/Makefile
/external/dtc/Documentation/
Ddts-format.txt10 Node and property definitions
18 [properties definitions]
22 Nodes may contain property definitions and/or child node
23 definitions. If both are present, properties must come before child
26 Property definitions are name value pairs in the form:
100 [property definitions]
/external/v8/tools/
Dbash-completion.sh40 defines=$(cat $v8_source/src/flag-definitions.h \
44 cat $v8_source/src/flag-definitions.h \
/external/skia/src/sksl/ir/
DSkSLVariableReference.h120 const DefinitionMap& definitions) override { in constantPropagate()
124 auto exprIter = definitions.find(&fVariable); in constantPropagate()
125 if (exprIter != definitions.end() && exprIter->second && in constantPropagate()
/external/dhcpcd-6.8.2/
DMakefile114 dhcpcd-embedded.h: genembedh dhcpcd-definitions.conf dhcpcd-embedded.h.in
117 dhcpcd-embedded.c: genembedc dhcpcd-definitions.conf
133 _embeddedinstall: dhcpcd-definitions.conf
135 ${INSTALL} -m ${CONFMODE} dhcpcd-definitions.conf ${DESTDIR}${SCRIPTSDIR}
191 cp ${SRCS} dhcpcd.conf dhcpcd-definitions.conf *.in /tmp/${DISTPREFIX}
/external/nanopb-c/tests/common/
DSConscript5 # Protocol definitions for the encode/decode_unittests
8 # Protocol definitions for basic_buffer/stream tests
/external/deqp/framework/delibs/cmake/
DDefs.cmake61 # DE_OS_IS_{PLATFORM} definitions
101 # DE_COMPILER_IS_{COMPILER} definitions
125 # DE_CPU_IS_{CPU} definitions
140 # Debug definitions
163 # Expose definitions
/external/libcxx/docs/DesignDocs/
DThreadingSupportAPI.rst19 interface as well as definitions for the interface.
70 This macro is defined when libc++ expects the definitions of the internal
78 definitions in ``<__threading_support>`` as non-inline definitions meant to
/external/llvm/docs/TableGen/
DLangIntro.rst74 common base class (e.g., a ``list<Register>`` can only contain definitions
221 Classes and definitions
224 As mentioned in the :doc:`introduction <index>`, classes and definitions (collectively known as
229 colon character ("``:``"). If `value definitions`_ or `let expressions`_ are
243 This example defines two definitions, ``X`` and ``Y``, both of which derive from
253 .. _value definitions: argument
255 Value definitions argument
258 Value definitions define named entries in records. A value must be defined
262 may be specified after the type with an equal sign. Value definitions require
347 running ``llvm-tblgen`` on the example prints the following definitions:
[all …]
/external/swiftshader/third_party/LLVM/docs/CommandGuide/
Dllvm-nm.pod35 Common (multiple definitions link together into one def)
39 Weak reference (multiple definitions link together into zero or one definitions)
92 Print only symbols whose definitions are external; that is, accessible
/external/jacoco/org.jacoco.examples/src/org/jacoco/examples/
DCoreTutorial.java62 private final Map<String, byte[]> definitions = new HashMap<String, byte[]>(); field in CoreTutorial.MemoryClassLoader
73 definitions.put(name, bytes); in addDefinition()
79 final byte[] bytes = definitions.get(name); in loadClass()

12345678910>>...37