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

  /external/llvm/include/llvm-c/
Core.h     [all...]
  /external/llvm/lib/IR/
Core.cpp 856 unsigned long long LLVMConstIntGetZExtValue(LLVMValueRef ConstantVal) {
857 return unwrap<ConstantInt>(ConstantVal)->getZExtValue();
860 long long LLVMConstIntGetSExtValue(LLVMValueRef ConstantVal) {
861 return unwrap<ConstantInt>(ConstantVal)->getSExtValue();
864 double LLVMConstRealGetDouble(LLVMValueRef ConstantVal, LLVMBool *LosesInfo) {
865 ConstantFP *cFP = unwrap<ConstantFP>(ConstantVal) ;
973 LLVMOpcode LLVMGetConstOpcode(LLVMValueRef ConstantVal) {
974 return map_to_llvmopcode(unwrap<ConstantExpr>(ConstantVal)->getOpcode());
985 LLVMValueRef LLVMConstNeg(LLVMValueRef ConstantVal) {
986 return wrap(ConstantExpr::getNeg(unwrap<Constant>(ConstantVal)));
    [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp 658 Aliasee = ID.ConstantVal;
    [all...]
LLParser.h 53 t_Constant, // Value in ConstantVal.
64 Constant *ConstantVal;
  /external/llvm/bindings/ocaml/llvm/
llvm_ocaml.c 863 CAMLprim LLVMValueRef llvm_const_gep(LLVMValueRef ConstantVal, value Indices) {
864 return LLVMConstGEP(ConstantVal, (LLVMValueRef*) Op_val(Indices),
869 CAMLprim LLVMValueRef llvm_const_in_bounds_gep(LLVMValueRef ConstantVal,
871 return LLVMConstInBoundsGEP(ConstantVal, (LLVMValueRef*) Op_val(Indices),
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngine.cpp     [all...]

Completed in 165 milliseconds