OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:float_bits
(Results
1 - 8
of
8
) sorted by null
/external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_inline_literals.c
24
unsigned
float_bits
= *((unsigned *)&f);
local
26
unsigned mantissa =
float_bits
& 0x007fffff;
27
unsigned biased_exponent = (
float_bits
& 0x7f800000) >> 23;
28
unsigned negate = !!(
float_bits
& 0x80000000);
33
DBG("Converting %f (0x%x) to 7-bit:\n", f,
float_bits
);
/external/compiler-rt/lib/builtins/
floatundisf.c
73
float_bits
fb;
floatuntisf.c
73
float_bits
fb;
floatdisf.c
75
float_bits
fb;
floattisf.c
75
float_bits
fb;
int_types.h
123
}
float_bits
;
typedef in typeref:union:__anon16059
/device/linaro/bootloader/edk2/StdLib/LibC/Main/Arm/
int_types.h
144
}
float_bits
;
typedef in typeref:union:__anon12168
/frameworks/rs/driver/runtime/
rs_cl.c
308
static unsigned int
float_bits
(float f) {
function
319
unsigned int i =
float_bits
(f);
324
unsigned int i =
float_bits
(f);
329
return (
float_bits
(f) == 0x00000000);
333
return (
float_bits
(f) == 0x80000000);
[
all
...]
Completed in 310 milliseconds