Searched refs:intValue (Results 1 - 3 of 3) sorted by relevance

/freebsd-9.3-release/contrib/gdb/gdb/
H A Di386-stub.c716 hexToInt (char **ptr, int *intValue) argument
721 *intValue = 0;
728 *intValue = (*intValue << 4) | hexValue;
H A Dsparc-stub.c524 hexToInt(char **ptr, int *intValue) argument
529 *intValue = 0;
537 *intValue = (*intValue << 4) | hexValue;
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGAtomic.cpp922 llvm::Value *intValue; local
929 intValue = value;
934 intValue = Builder.CreatePtrToInt(value, inputIntTy);
936 intValue = Builder.CreateBitCast(value, inputIntTy);
947 intValue = Builder.CreateAlignedLoad(addr,
953 llvm::StoreInst *store = Builder.CreateStore(intValue, addr);

Completed in 54 milliseconds