Searched defs:GenericValue (Results 1 - 5 of 5) sorted by relevance

/external/swiftshader/third_party/LLVM/bindings/ocaml/executionengine/
H A Dllvm_executionengine.ml17 module GenericValue = struct module
73 external run_function: Llvm.llvalue -> GenericValue.t array -> t ->
74 GenericValue.t
H A Dllvm_executionengine.mli17 module GenericValue: sig module
18 (** [GenericValue.t] is a boxed union type used to portably pass arguments to
22 See the struct [llvm::GenericValue]. *)
27 [llvm::GenericValue::DoubleVal] and [llvm::GenericValue::FloatVal]. *)
31 field [llvm::GenericValue::PointerVal]. *)
35 [w]. See the field [llvm::GenericValue::IntVal]. *)
39 [w]. See the field [llvm::GenericValue::IntVal]. *)
43 bitwidth [w]. See the field [llvm::GenericValue::IntVal]. *)
48 [w]. See the field [llvm::GenericValue
[all...]
/external/llvm/include/llvm/ExecutionEngine/
H A DGenericValue.h1 //===-- GenericValue.h - Represent any type of LLVM value -------*- C++ -*-===//
10 // The GenericValue class is used to represent an LLVM value of arbitrary type.
27 struct GenericValue { struct in namespace:llvm
41 std::vector<GenericValue> AggregateVal;
43 // to make code faster, set GenericValue to zero could be omitted, but it is
44 // potentially can cause problems, since GenericValue to store garbage
46 GenericValue() : IntVal(1,0) {UIntPairVal.first = 0; UIntPairVal.second = 0;} function in struct:llvm::GenericValue
47 explicit GenericValue(void *V) : PointerVal(V), IntVal(1,0) { } function in struct:llvm::GenericValue
50 inline GenericValue PTOGV(void *P) { return GenericValue(
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/ExecutionEngine/
H A DGenericValue.h1 //===-- GenericValue.h - Represent any type of LLVM value -------*- C++ -*-===//
10 // The GenericValue class is used to represent an LLVM value of arbitrary type.
26 struct GenericValue { struct in namespace:llvm
36 GenericValue() : DoubleVal(0.0), IntVal(1,0) {} function in struct:llvm::GenericValue
37 explicit GenericValue(void *V) : PointerVal(V), IntVal(1,0) { } function in struct:llvm::GenericValue
40 inline GenericValue PTOGV(void *P) { return GenericValue(P); }
41 inline void* GVTOP(const GenericValue &GV) { return GV.PointerVal; }
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineSpecConstantTests.cpp60 class GenericValue class in namespace:vkt::pipeline::__anon4399
63 GenericValue (void) { clear(); } function in class:vkt::pipeline::__anon4399::GenericValue
66 GenericValue (const void* data, const deUint32 size) function in class:vkt::pipeline::__anon4399::GenericValue
79 inline GenericValue makeValueBool32 (const bool a) { return GenericValue(&a, sizeof(a)); }
80 inline GenericValue makeValueInt32 (const deInt32 a) { return GenericValue(&a, sizeof(a)); }
82 inline GenericValue makeValueUint32 (const deUint32 a) { return GenericValue(&a, sizeof(a)); }
84 inline GenericValue makeValueFloat3
[all...]

Completed in 174 milliseconds