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

  /external/gptfdisk/
attributes.cc 107 uint64_t bitValue;
118 bitValue = UINT64_C(1) << response; // Find the integer value of the bit
119 if (bitValue & attributes) { // bit is set
120 attributes &= ~bitValue; // so unset it
123 attributes |= bitValue; // so set it
  /external/elfutils/src/libcpu/
i386_parse.y 70 struct bitvalue
78 struct bitvalue *next;
104 struct bitvalue *bytes;
184 static void check_bits (struct bitvalue *value);
185 static int check_duplicates (struct bitvalue *val);
186 static int check_argsdef (struct bitvalue *bitval, struct argument *args);
187 static int check_bitsused (struct bitvalue *bitval,
191 static void fillin_arg (struct bitvalue *bytes, struct argname *name,
222 struct bitvalue *bit;
395 struct bitvalue *runp = $1
    [all...]
i386_parse.h 85 struct bitvalue *bit;
i386_parse.c 143 struct bitvalue struct
151 struct bitvalue *next;
177 struct bitvalue *bytes;
257 static void check_bits (struct bitvalue *value);
258 static int check_duplicates (struct bitvalue *val);
259 static int check_argsdef (struct bitvalue *bitval, struct argument *args);
260 static int check_bitsused (struct bitvalue *bitval,
264 static void fillin_arg (struct bitvalue *bytes, struct argname *name,
362 struct bitvalue *bit;
    [all...]
  /libcore/luni/src/main/java/java/lang/
Double.java 421 long bitValue = doubleToLongBits(d);
423 boolean negative = (bitValue & 0x8000000000000000L) != 0;
425 long exponent = (bitValue & 0x7FF0000000000000L) >>> 52;
427 long significand = bitValue & 0x000FFFFFFFFFFFFFL;
Float.java 428 int bitValue = floatToIntBits(f);
430 boolean negative = (bitValue & 0x80000000) != 0;
432 int exponent = (bitValue & 0x7f800000) >>> 23;
435 int significand = (bitValue & 0x007FFFFF) << 1;
  /external/llvm/docs/
YamlIO.rst 341 BitValue

Completed in 272 milliseconds