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 666 unsigned long long LLVMConstIntGetZExtValue(LLVMValueRef ConstantVal) {
667 return unwrap<ConstantInt>(ConstantVal)->getZExtValue();
670 long long LLVMConstIntGetSExtValue(LLVMValueRef ConstantVal) {
671 return unwrap<ConstantInt>(ConstantVal)->getSExtValue();
746 LLVMOpcode LLVMGetConstOpcode(LLVMValueRef ConstantVal) {
747 return map_to_llvmopcode(unwrap<ConstantExpr>(ConstantVal)->getOpcode());
758 LLVMValueRef LLVMConstNeg(LLVMValueRef ConstantVal) {
759 return wrap(ConstantExpr::getNeg(unwrap<Constant>(ConstantVal)));
762 LLVMValueRef LLVMConstNSWNeg(LLVMValueRef ConstantVal) {
763 return wrap(ConstantExpr::getNSWNeg(unwrap<Constant>(ConstantVal)));
    [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp 651 Aliasee = ID.ConstantVal;
    [all...]
LLParser.h 52 t_Constant, // Value in ConstantVal.
65 Constant *ConstantVal;
  /external/llvm/bindings/ocaml/llvm/
llvm_ocaml.c 709 CAMLprim LLVMValueRef llvm_const_gep(LLVMValueRef ConstantVal, value Indices) {
710 return LLVMConstGEP(ConstantVal, (LLVMValueRef*) Op_val(Indices),
715 CAMLprim LLVMValueRef llvm_const_in_bounds_gep(LLVMValueRef ConstantVal,
717 return LLVMConstInBoundsGEP(ConstantVal, (LLVMValueRef*) Op_val(Indices),
924 CAMLprim value llvm_set_initializer(LLVMValueRef ConstantVal,
926 LLVMSetInitializer(GlobalVar, ConstantVal);
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngine.cpp 768 Optional<SVal> ConstantVal = svalBuilder.getConstantVal(ArgE);
769 if (!ConstantVal)
770 ConstantVal = UnknownVal();
776 State = State->BindExpr(S, LCtx, *ConstantVal);
    [all...]

Completed in 98 milliseconds