HomeSort by relevance Sort by last modified time
    Searched refs:ConstantVal (Results 1 - 7 of 7) sorted by null

  /external/llvm/include/llvm/CodeGen/
MachineRelocation.h 54 /// ConstantVal - A field that may be used by the target relocation type.
55 intptr_t ConstantVal;
89 Result.ConstantVal = cst;
109 Result.ConstantVal = cst;
126 Result.ConstantVal = cst;
146 Result.ConstantVal = cst;
165 Result.ConstantVal = cst;
184 Result.ConstantVal = cst;
210 return ConstantVal;
217 ConstantVal = val
    [all...]
  /external/llvm/include/llvm-c/
Core.h     [all...]
  /external/llvm/lib/IR/
Core.cpp 762 unsigned long long LLVMConstIntGetZExtValue(LLVMValueRef ConstantVal) {
763 return unwrap<ConstantInt>(ConstantVal)->getZExtValue();
766 long long LLVMConstIntGetSExtValue(LLVMValueRef ConstantVal) {
767 return unwrap<ConstantInt>(ConstantVal)->getSExtValue();
842 LLVMOpcode LLVMGetConstOpcode(LLVMValueRef ConstantVal) {
843 return map_to_llvmopcode(unwrap<ConstantExpr>(ConstantVal)->getOpcode());
854 LLVMValueRef LLVMConstNeg(LLVMValueRef ConstantVal) {
855 return wrap(ConstantExpr::getNeg(unwrap<Constant>(ConstantVal)));
858 LLVMValueRef LLVMConstNSWNeg(LLVMValueRef ConstantVal) {
859 return wrap(ConstantExpr::getNSWNeg(unwrap<Constant>(ConstantVal)));
    [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp 740 Aliasee = ID.ConstantVal;
    [all...]
LLParser.h 53 t_Constant, // Value in ConstantVal.
66 Constant *ConstantVal;
  /external/llvm/bindings/ocaml/llvm/
llvm_ocaml.c 802 CAMLprim LLVMValueRef llvm_const_gep(LLVMValueRef ConstantVal, value Indices) {
803 return LLVMConstGEP(ConstantVal, (LLVMValueRef*) Op_val(Indices),
808 CAMLprim LLVMValueRef llvm_const_in_bounds_gep(LLVMValueRef ConstantVal,
810 return LLVMConstInBoundsGEP(ConstantVal, (LLVMValueRef*) Op_val(Indices),
1024 CAMLprim value llvm_set_initializer(LLVMValueRef ConstantVal
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngine.cpp     [all...]

Completed in 219 milliseconds