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

  /external/llvm/bindings/ocaml/executionengine/
llvm_executionengine.mli 34 (** [of_int32 n w] boxes the int32 [i] in a generic value with the bitwidth
38 (** [of_int n w] boxes the int [i] in a generic value with the bitwidth
43 bitwidth [w]. See the field [llvm::GenericValue::IntVal]. *)
47 (** [of_int64 n w] boxes the int64 [i] in a generic value with the bitwidth
61 Is invalid if [gv] has a bitwidth greater than 32 bits. See the field
66 Is invalid if [gv] has a bitwidth greater than the host bit width (but the
72 [nativeint]. Is invalid if [gv] has a bitwidth greater than
77 Is invalid if [gv] has a bitwidth greater than [int64]. See the field
  /external/grub/netboot/
otulip.c 112 const unsigned bitwidth = SROM_BITWIDTH; local
113 const unsigned cmdmask = (SROMCMD_RD << bitwidth);
114 const unsigned msb = 1 << (bitwidth + 3 - 1);
115 unsigned lastidx = (1 << bitwidth) - 1;
127 for (bits = idx|cmdmask, bit = bitwidth + 3; bit > 0; bit--, bits <<= 1)
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
BasicValueFactory.h 93 const llvm::APSInt& getValue(uint64_t X, unsigned BitWidth, bool isUnsigned);
97 /// but with the bitwidth and signedness of 'To'.
110 unsigned bitwidth = Ctx.getTypeSize(T); local
114 if (isUnsigned == From.isUnsigned() && bitwidth == From.getBitWidth())
117 return getValue(From.getSExtValue(), bitwidth, isUnsigned);
  /external/clang/lib/StaticAnalyzer/Core/
SimpleConstraintManager.cpp 264 unsigned bitwidth = Ctx.getTypeSize(T); local
270 Adjustment = Adjustment.extOrTrunc(bitwidth);
274 ConvertedInt = ConvertedInt.extOrTrunc(bitwidth);
  /external/clang/test/Sema/
designated-initializers.c 118 int bitwidth[] = { [(long long int)1] = 5, [(short int)2] = 2 }; variable
  /external/llvm/bindings/ocaml/llvm/
llvm.mli 390 (** [i1_type c] returns an integer type of bitwidth 1 in the context [c]. See
394 (** [i8_type c] returns an integer type of bitwidth 8 in the context [c]. See
398 (** [i16_type c] returns an integer type of bitwidth 16 in the context [c]. See
402 (** [i32_type c] returns an integer type of bitwidth 32 in the context [c]. See
406 (** [i64_type c] returns an integer type of bitwidth 64 in the context [c]. See
410 (** [integer_type c n] returns an integer type of bitwidth [n] in the context
720 * None is returned if this is not an integer constant, or bitwidth exceeds 64.
    [all...]

Completed in 887 milliseconds