Searched refs:fb (Results 1 - 25 of 49) sorted by relevance

12

/frameworks/compile/libbcc/runtime/lib/
H A Dfixunsdfsi.c32 double_bits fb; local
33 fb.f = a;
34 int e = ((fb.u.s.high & 0x7FF00000) >> 20) - 1023;
35 if (e < 0 || (fb.u.s.high & 0x80000000))
39 ((fb.u.s.high & 0x000FFFFF) << 11) |
40 (fb.u.s.low >> 21)
H A Dfixunssfdi.c32 float_bits fb; local
33 fb.f = a;
34 int e = ((fb.u & 0x7F800000) >> 23) - 127;
35 if (e < 0 || (fb.u & 0x80000000))
37 du_int r = (fb.u & 0x007FFFFF) | 0x00800000;
H A Dfixunssfsi.c32 float_bits fb; local
33 fb.f = a;
34 int e = ((fb.u & 0x7F800000) >> 23) - 127;
35 if (e < 0 || (fb.u & 0x80000000))
37 su_int r = (fb.u & 0x007FFFFF) | 0x00800000;
H A Dfixunssfti.c34 float_bits fb; local
35 fb.f = a;
36 int e = ((fb.u & 0x7F800000) >> 23) - 127;
37 if (e < 0 || (fb.u & 0x80000000))
39 tu_int r = (fb.u & 0x007FFFFF) | 0x00800000;
H A Dfixunsxfdi.c36 long_double_bits fb; local
37 fb.f = a;
38 int e = (fb.u.high.s.low & 0x00007FFF) - 16383;
39 if (e < 0 || (fb.u.high.s.low & 0x00008000))
41 return fb.u.low.all >> (63 - e);
H A Dfixunsxfsi.c36 long_double_bits fb; local
37 fb.f = a;
38 int e = (fb.u.high.s.low & 0x00007FFF) - 16383;
39 if (e < 0 || (fb.u.high.s.low & 0x00008000))
41 return fb.u.low.s.high >> (31 - e);
H A Dfloatundixf.c36 long_double_bits fb; local
37 fb.u.high.s.low = (e + 16383); /* exponent */
38 fb.u.low.all = a << clz; /* mantissa */
39 return fb.f;
H A Dfixdfti.c31 double_bits fb; local
32 fb.f = a;
33 int e = ((fb.u.s.high & 0x7FF00000) >> 20) - 1023;
36 ti_int s = (si_int)(fb.u.s.high & 0x80000000) >> 31;
37 ti_int r = 0x0010000000000000uLL | (0x000FFFFFFFFFFFFFuLL & fb.u.all);
H A Dfixsfdi.c29 float_bits fb; local
30 fb.f = a;
31 int e = ((fb.u & 0x7F800000) >> 23) - 127;
34 di_int s = (si_int)(fb.u & 0x80000000) >> 31;
35 di_int r = (fb.u & 0x007FFFFF) | 0x00800000;
H A Dfixsfti.c31 float_bits fb; local
32 fb.f = a;
33 int e = ((fb.u & 0x7F800000) >> 23) - 127;
36 ti_int s = (si_int)(fb.u & 0x80000000) >> 31;
37 ti_int r = (fb.u & 0x007FFFFF) | 0x00800000;
H A Dfixunsdfti.c34 double_bits fb; local
35 fb.f = a;
36 int e = ((fb.u.s.high & 0x7FF00000) >> 20) - 1023;
37 if (e < 0 || (fb.u.s.high & 0x80000000))
39 tu_int r = 0x0010000000000000uLL | (fb.u.all & 0x000FFFFFFFFFFFFFuLL);
H A Dfixunsxfti.c36 long_double_bits fb; local
37 fb.f = a;
38 int e = (fb.u.high.s.low & 0x00007FFF) - 16383;
39 if (e < 0 || (fb.u.high.s.low & 0x00008000))
41 tu_int r = fb.u.low.all;
H A Dfixxfdi.c33 long_double_bits fb; local
34 fb.f = a;
35 int e = (fb.u.high.s.low & 0x00007FFF) - 16383;
38 di_int s = -(si_int)((fb.u.high.s.low & 0x00008000) >> 15);
39 di_int r = fb.u.low.all;
H A Dfixxfti.c33 long_double_bits fb; local
34 fb.f = a;
35 int e = (fb.u.high.s.low & 0x00007FFF) - 16383;
38 ti_int s = -(si_int)((fb.u.high.s.low & 0x00008000) >> 15);
39 ti_int r = fb.u.low.all;
H A Dfixdfdi.c29 double_bits fb; local
30 fb.f = a;
31 int e = ((fb.u.s.high & 0x7FF00000) >> 20) - 1023;
34 di_int s = (si_int)(fb.u.s.high & 0x80000000) >> 31;
36 r.s.high = (fb.u.s.high & 0x000FFFFF) | 0x00100000;
37 r.s.low = fb.u.s.low;
H A Dfixunsdfdi.c32 double_bits fb; local
33 fb.f = a;
34 int e = ((fb.u.s.high & 0x7FF00000) >> 20) - 1023;
35 if (e < 0 || (fb.u.s.high & 0x80000000))
38 r.s.high = (fb.u.s.high & 0x000FFFFF) | 0x00100000;
39 r.s.low = fb.u.s.low;
H A Dfloatdixf.c39 long_double_bits fb; local
40 fb.u.high.s.low = ((su_int)s & 0x00008000) | /* sign */
42 fb.u.low.all = a << clz; /* mantissa */
43 return fb.f;
H A Dfloatundisf.c72 float_bits fb; local
73 fb.u = ((e + 127) << 23) | /* exponent */
75 return fb.f;
H A Dfloattidf.c78 double_bits fb; local
79 fb.u.s.high = ((su_int)s & 0x80000000) | /* sign */
82 fb.u.s.low = (su_int)a; /* mantissa-low */
83 return fb.f;
H A Dfloattixf.c80 long_double_bits fb; local
81 fb.u.high.s.low = ((su_int)s & 0x8000) | /* sign */
83 fb.u.low.all = (du_int)a; /* mantissa */
84 return fb.f;
H A Dfloatuntidf.c76 double_bits fb; local
77 fb.u.s.high = ((e + 1023) << 20) | /* exponent */
79 fb.u.s.low = (su_int)a; /* mantissa-low */
80 return fb.f;
H A Dfloatuntixf.c78 long_double_bits fb; local
79 fb.u.high.s.low = (e + 16383); /* exponent */
80 fb.u.low.all = (du_int)a; /* mantissa */
81 return fb.f;
H A Dfloatdisf.c74 float_bits fb; local
75 fb.u = ((su_int)s & 0x80000000) | /* sign */
78 return fb.f;
/frameworks/rs/driver/
H A DrsdFrameBuffer.cpp32 void setDepthAttachment(const Context *rsc, const FBOCache *fb) { argument
33 RsdFrameBufferObj *fbo = (RsdFrameBufferObj*)fb->mHal.drv;
36 if (fb->mHal.state.depthTarget != NULL) {
37 depth = (DrvAllocation *)fb->mHal.state.depthTarget->mHal.drv;
40 rsdAllocationSyncAll(rsc, fb->mHal.state.depthTarget,
47 void setColorAttachment(const Context *rsc, const FBOCache *fb) { argument
48 RsdFrameBufferObj *fbo = (RsdFrameBufferObj*)fb->mHal.drv;
50 for (uint32_t i = 0; i < fb->mHal.state.colorTargetsCount; i ++) {
52 if (fb->mHal.state.colorTargets[i] != NULL) {
53 color = (DrvAllocation *)fb
64 rsdFrameBufferInit(const Context *rsc, const FBOCache *fb) argument
77 rsdFrameBufferSetActive(const Context *rsc, const FBOCache *fb) argument
93 rsdFrameBufferDestroy(const Context *rsc, const FBOCache *fb) argument
[all...]
H A DrsdFrameBuffer.h23 const android::renderscript::FBOCache *fb);
25 const android::renderscript::FBOCache *fb);
27 const android::renderscript::FBOCache *fb);

Completed in 1225 milliseconds

12