OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:flt_e
(Results
1 - 4
of
4
) sorted by relevancy
/xsrc/external/mit/MesaLib.old/dist/src/util/
half_float.c
58
const int
flt_e
= (fi.i >> 23) & 0xff;
local
67
if ((
flt_e
== 0) && (flt_m == 0)) {
72
else if ((
flt_e
== 0) && (flt_m != 0)) {
77
else if ((
flt_e
== 0xff) && (flt_m == 0)) {
82
else if ((
flt_e
== 0xff) && (flt_m != 0)) {
89
const int new_exp =
flt_e
- 127;
141
int flt_m,
flt_e
, flt_s;
local
152
flt_e
= 0;
163
flt_e
= 0xff;
168
flt_e
= 0xff
[
all
...]
/xsrc/external/mit/MesaLib/dist/src/util/
half_float.c
61
const int
flt_e
= (fi.i >> 23) & 0xff;
local
70
if ((
flt_e
== 0) && (flt_m == 0)) {
75
else if ((
flt_e
== 0) && (flt_m != 0)) {
80
else if ((
flt_e
== 0xff) && (flt_m == 0)) {
85
else if ((
flt_e
== 0xff) && (flt_m != 0)) {
92
const int new_exp =
flt_e
- 127;
softfloat.c
1391
uint64_t
flt_e
= (di.u >> 52) & 0x7ff;
local
1397
if (
flt_e
== 0x7ff) {
1414
if (!(
flt_e
| flt_m)) {
1423
if ( ! (
flt_e
| m) ) {
1431
return _mesa_round_f32(s,
flt_e
- 0x381, m | 0x40000000, rtz);
1445
const uint32_t
flt_e
= (fi.u >> 23) & 0xff;
local
1451
if (
flt_e
== 0xff) {
1464
if (!(
flt_e
| flt_m)) {
1471
if ( ! (
flt_e
| m) ) {
1477
return _mesa_roundtozero_f16(s,
flt_e
- 0x71, m | 0x4000)
[
all
...]
/xsrc/external/mit/mesa-demos/dist/src/trivial/
vp-array-hf.c
23
const int
flt_e
= (fi.i >> 23) & 0xff;
local
32
if ((
flt_e
== 0) && (flt_m == 0)) {
37
else if ((
flt_e
== 0) && (flt_m != 0)) {
42
else if ((
flt_e
== 0xff) && (flt_m == 0)) {
47
else if ((
flt_e
== 0xff) && (flt_m != 0)) {
54
const int new_exp =
flt_e
- 127;
Completed in 9 milliseconds
Indexes created Sat Jul 25 00:23:55 UTC 2026