HomeSort by: relevance | last modified time | path
    Searched refs:exp (Results 1 - 25 of 277) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /xsrc/external/mit/MesaLib/dist/include/android_stub/cutils/
compiler.h 25 # define CC_LIKELY( exp ) (__builtin_expect( !!(exp), true ))
26 # define CC_UNLIKELY( exp ) (__builtin_expect( !!(exp), false ))
28 # define CC_LIKELY( exp ) (__builtin_expect( !!(exp), 1 ))
29 # define CC_UNLIKELY( exp ) (__builtin_expect( !!(exp), 0 ))
  /xsrc/external/mit/xf86-video-intel/dist/src/scripts/
fix.5c 7 int exp = fix >> 9;
10 if (exp == 0x7)
12 ret = (2 ** -exp) * mant / (1 << 9);
  /xsrc/external/mit/xf86-video-intel-2014/dist/src/scripts/
fix.5c 7 int exp = fix >> 9;
10 if (exp == 0x7)
12 ret = (2 ** -exp) * mant / (1 << 9);
  /xsrc/external/mit/MesaLib/dist/src/asahi/compiler/
agx_minifloat.h 38 signed exp = (imm & 0x70) >> 4; local
41 if (exp)
42 return ldexpf(sign * (float) (mantissa | 0x10), exp - 7);
57 /* frac is in [0.5, 1) and f = frac * 2^exp */
58 int exp = 0; local
59 float frac = frexpf(f, &exp);
63 exp -= 5; /* 2^5 = 32 */
64 exp = CLAMP(exp + 7, 0, 7);
67 assert(exp >= 1)
    [all...]
  /xsrc/external/mit/xf86-video-ati-kms/dist/src/
bicubic_table.py 17 exp = fe - 127;
18 if (exp < -24):
20 elif (exp < -14):
21 temp = 10 - (-14 - exp)
23 elif (exp > 15):
26 e = exp + 15
  /xsrc/external/mit/MesaLib/dist/src/mesa/main/
querymatrix.c 96 int exp; local
108 normalizedFraction = (GLfloat)frexp(matrix[i], &exp);
110 exponent[i] = (GLint) exp;
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/main/
querymatrix.c 96 int exp; local
108 normalizedFraction = (GLfloat)frexp(matrix[i], &exp);
110 exponent[i] = (GLint) exp;
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/swr/rasterizer/memory/
Convert.h 58 uint32_t exp = (val >> 10) & 0x1f; local
59 if ((exp == 0) && (mant != 0)) // Adjust exponent and mantissa for denormals
64 exp--;
69 exp = ((exp - 15 + 127) & 0xff) << 23;
70 result = sign | exp | mant;
85 uint32_t sign, exp, mant; local
92 exp = (uf & 0x7F800000) >> 23;
98 exp = mant = 0;
101 else if ((exp == 0xFF) && (mant != 0)) // Na
162 uint32_t sign, exp, mant; local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/swr/rasterizer/memory/
Convert.h 58 uint32_t exp = (val >> 10) & 0x1f; local
59 if ((exp == 0) && (mant != 0)) // Adjust exponent and mantissa for denormals
64 exp--;
69 exp = ((exp - 15 + 127) & 0xff) << 23;
70 result = sign | exp | mant;
85 uint32_t sign, exp, mant; local
92 exp = (uf & 0x7F800000) >> 23;
98 exp = mant = 0;
101 else if ((exp == 0xFF) && (mant != 0)) // Na
162 uint32_t sign, exp, mant; local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/intel/tools/tests/gen7.5/
math.asm 19 math exp(8) g16<1>.xF g15<4>.xF null<4>F { align16 1Q };
22 math exp(8) g124<1>F g5<8,8,1>F null<8,8,1>F { align1 1Q };
23 math exp(16) g120<1>F g7<8,8,1>F null<8,8,1>F { align1 1H };
38 math.sat exp(8) g3<1>F g2<0,1,0>F null<8,8,1>F { align1 1Q };
39 math.sat exp(16) g3<1>F g2<0,1,0>F null<8,8,1>F { align1 1H };
41 math.sat exp(8) g8<1>F g1<0>F null<4>F { align16 1Q };
  /xsrc/external/mit/MesaLib/dist/src/amd/compiler/
aco_statistics.cpp 70 std::deque<int32_t> exp; member in class:aco::BlockCycleEstimator
88 : vm(vm_), exp(exp_), lgkm(lgkm_), vs(vs_)
92 unsigned exp; member in struct:aco::wait_counter_info
140 case instr_class::exp: return {0, WAIT_USE(export_gds, 1)};
169 case instr_class::exp: return {16, WAIT_USE(export_gds, 16)};
215 /* These numbers are all a bit nonsense. LDS/VMEM/SMEM/EXP performance
276 imm.exp = wait_info.exp ? max_exp_cnt : wait_imm::unset_counter;
293 if (imm.exp != wait_imm::unset_counter) {
294 for (int i = 0; i < (int)exp.size() - imm.exp; i++
    [all...]
aco_builder_h.py 526 ("exp", [Format.EXP], 'Export_instruction', [(0, 4)]),
aco_print_ir.cpp 430 case Format::EXP: {
431 const Export_instruction& exp = instr->exp(); local
432 unsigned identity_mask = exp.compressed ? 0x5 : 0xf;
433 if ((exp.enabled_mask & identity_mask) != identity_mask)
434 fprintf(output, " en:%c%c%c%c", exp.enabled_mask & 0x1 ? 'r' : '*',
435 exp.enabled_mask & 0x2 ? 'g' : '*', exp.enabled_mask & 0x4 ? 'b' : '*',
436 exp.enabled_mask & 0x8 ? 'a' : '*');
437 if (exp.compressed
    [all...]
  /xsrc/external/mit/MesaLib/dist/include/android_stub/log/
log_radio.h 40 #define __predict_false(exp) __builtin_expect((exp) != 0, 0)
log_system.h 38 #define __predict_false(exp) __builtin_expect((exp) != 0, 0)
  /xsrc/external/mit/MesaLib/dist/src/intel/tools/tests/gen6/
math.asm 12 math exp(8) g18<1>F g17<4,4,1>F null<8,8,1>F { align1 1Q };
13 math exp(8) g19<1>F g8<8,8,1>F null<8,8,1>F { align1 2Q };
21 math.sat exp(8) g2<1>F g5<8,8,1>F null<8,8,1>F { align1 1Q };
22 math.sat exp(8) g3<1>F g8<8,8,1>F null<8,8,1>F { align1 2Q };
  /xsrc/external/mit/MesaLib/dist/src/intel/tools/tests/gen8/
math.asm 19 math exp(8) g124<1>F g10<8,8,1>F null<8,8,1>F { align1 1Q };
20 math exp(16) g120<1>F g7<8,8,1>F null<8,8,1>F { align1 1H };
27 math.sat exp(8) g3<1>F g2<0,1,0>F null<8,8,1>F { align1 1Q };
28 math.sat exp(16) g3<1>F g2<0,1,0>F null<8,8,1>F { align1 1H };
  /xsrc/external/mit/MesaLib/dist/src/intel/tools/tests/gen9/
math.asm 19 math exp(8) g124<1>F g10<8,8,1>F null<8,8,1>F { align1 1Q };
20 math exp(16) g120<1>F g7<8,8,1>F null<8,8,1>F { align1 1H };
27 math.sat exp(8) g3<1>F g2<0,1,0>F null<8,8,1>F { align1 1Q };
28 math.sat exp(16) g3<1>F g2<0,1,0>F null<8,8,1>F { align1 1H };
  /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/radeon/
radeon_fog.c 69 result = exp(-narg); \
75 * Initialize the exp_table[] lookup table for approximating exp().
83 exp_table[i] = (GLfloat) exp(-f);
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/radeon/
radeon_fog.c 70 result = exp(-narg); \
76 * Initialize the exp_table[] lookup table for approximating exp().
84 exp_table[i] = (GLfloat) exp(-f);
  /xsrc/external/mit/MesaLib/dist/src/intel/tools/tests/gen7/
math.asm 15 math exp(8) g16<1>.xF g15<4>.xF null<4>F { align16 1Q };
18 math exp(8) g124<1>F g5<8,8,1>F null<8,8,1>F { align1 1Q };
19 math exp(16) g120<1>F g7<8,8,1>F null<8,8,1>F { align1 1H };
28 math.sat exp(8) g3<1>F g2<0,1,0>F null<8,8,1>F { align1 1Q };
29 math.sat exp(16) g3<1>F g2<0,1,0>F null<8,8,1>F { align1 1H };
  /xsrc/external/mit/MesaLib/dist/src/intel/compiler/
test_vf_float_conversions.cpp 44 int exp = ebits - 3; local
46 vf_to_float[vf] = ldexpf(x, exp);
  /xsrc/external/mit/MesaLib.old/dist/src/intel/compiler/
test_vf_float_conversions.cpp 44 int exp = ebits - 3; local
46 vf_to_float[vf] = ldexpf(x, exp);
  /xsrc/external/mit/freetype/dist/include/freetype/internal/
ftmemory.h 102 #define FT_DEBUG_INNER( exp ) ( _ft_debug_file = __FILE__, \
104 (exp) )
106 #define FT_ASSIGNP_INNER( p, exp ) ( _ft_debug_file = __FILE__, \
108 FT_ASSIGNP( p, exp ) )
112 #define FT_DEBUG_INNER( exp ) (exp)
113 #define FT_ASSIGNP_INNER( p, exp ) FT_ASSIGNP( p, exp )
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/swr/rasterizer/jitter/
builder_misc.cpp 48 uint32_t sign, exp, mant; local
54 exp = (uf & 0x7F800000) >> 23;
60 exp = 0x1F;
66 exp = 0x1f;
69 else if (exp > (0x70 + 0x1E)) // Too big to represent -> max representable value
71 exp = 0x1E;
74 else if ((exp <= 0x70) && (exp >= 0x66)) // It's a denorm
77 for (; exp <= 0x70; mant >>= 1, exp++
132 uint32_t exp = (val >> 10) & 0x1f; local
    [all...]

Completed in 46 milliseconds

1 2 3 4 5 6 7 8 91011>>