OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:bitvalue
(Results
1 - 8
of
8
) sorted by null
/external/elfutils/libcpu/
i386_parse.y
66
struct
bitvalue
74
struct
bitvalue
*next;
100
struct
bitvalue
*bytes;
180
static void check_bits (struct
bitvalue
*value);
181
static int check_duplicates (struct
bitvalue
*val);
182
static int check_argsdef (struct
bitvalue
*bitval, struct argument *args);
183
static int check_bitsused (struct
bitvalue
*bitval,
187
static void fillin_arg (struct
bitvalue
*bytes, struct argname *name,
218
struct
bitvalue
*bit;
391
struct
bitvalue
*runp = $1
[
all
...]
i386_parse.h
77
struct
bitvalue
*bit;
i386_parse.c
171
struct
bitvalue
struct
179
struct
bitvalue
*next;
205
struct
bitvalue
*bytes;
285
static void check_bits (struct
bitvalue
*value);
286
static int check_duplicates (struct
bitvalue
*val);
287
static int check_argsdef (struct
bitvalue
*bitval, struct argument *args);
288
static int check_bitsused (struct
bitvalue
*bitval,
292
static void fillin_arg (struct
bitvalue
*bytes, struct argname *name,
344
struct
bitvalue
*bit;
[
all
...]
/external/arduino/hardware/arduino/cores/arduino/
wiring.h
99
#define bitWrite(value, bit,
bitvalue
) (
bitvalue
? bitSet(value, bit) : bitClear(value, bit))
/libcore/luni/src/main/java/java/lang/
Double.java
415
long
bitValue
= doubleToLongBits(d);
417
boolean negative = (
bitValue
& 0x8000000000000000L) != 0;
419
long exponent = (
bitValue
& 0x7FF0000000000000L) >>> 52;
421
long significand =
bitValue
& 0x000FFFFFFFFFFFFFL;
Float.java
422
int
bitValue
= floatToIntBits(f);
424
boolean negative = (
bitValue
& 0x80000000) != 0;
426
int exponent = (
bitValue
& 0x7f800000) >>> 23;
429
int significand = (
bitValue
& 0x007FFFFF) << 1;
/external/chromium_org/third_party/WebKit/Source/core/inspector/
InjectedScriptCanvasModuleSource.js
[
all
...]
/external/llvm/docs/
YamlIO.rst
340
BitValue
Completed in 196 milliseconds