HomeSort by relevance Sort by last modified time
    Searched refs:flt (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
floatnum.h 56 * \param flt floatnum
57 * \return Newly allocated floatnum with the same value as flt.
60 /*@only@*/ yasm_floatnum *yasm_floatnum_copy(const yasm_floatnum *flt);
63 * \param flt floatnum
66 void yasm_floatnum_destroy(/*@only@*/ yasm_floatnum *flt);
82 * \param flt floatnum
84 * \return Nonzero if flt can't fit into single precision: -1 if underflow
88 int yasm_floatnum_get_int(const yasm_floatnum *flt,
98 * \param flt floatnum
105 * \return Nonzero if flt can't fit into the specified precision: -1 i
    [all...]
floatnum.c 212 floatnum_normalize(yasm_floatnum *flt)
216 if (BitVector_is_empty(flt->mantissa)) {
217 flt->exponent = 0;
223 norm_amt = (MANT_BITS-1)-Set_Max(flt->mantissa);
224 if (norm_amt > (long)flt->exponent)
225 norm_amt = (long)flt->exponent;
226 BitVector_Move_Left(flt->mantissa, (N_int)norm_amt);
227 flt->exponent -= (unsigned short)norm_amt;
306 yasm_floatnum *flt; local
314 flt = yasm_xmalloc(sizeof(yasm_floatnum))
    [all...]
expr.h 63 yasm_floatnum *flt; /**< Floating point value (YASM_EXPR_FLOAT) */ member in union:yasm_expr__item::__anon16342
123 * \param flt floatnum
127 /*@only@*/ yasm_expr__item *yasm_expr_float(/*@keep@*/ yasm_floatnum *flt);
arch.h 151 int (*floatnum_tobytes) (yasm_arch *arch, const yasm_floatnum *flt,
340 * \param flt floating point value
348 int yasm_arch_floatnum_tobytes(yasm_arch *arch, const yasm_floatnum *flt,
468 #define yasm_arch_floatnum_tobytes(arch, flt, buf, destsize, valsize, shift, \
471 (arch, flt, buf, destsize, valsize, shift, warn)
  /external/jmonkeyengine/engine/src/test/jme3test/math/
TestHalfFloat.java 47 float flt = Float.valueOf(s); local
48 short half = FastMath.convertFloatToHalf(flt);
51 System.out.println("Input float: "+flt);
  /external/aac/libFDK/src/arm/
qmf_arm.cpp 174 LONG flt; local
190 flt = *p_flt++;
192 accu1 = SMULBB( sta1, flt);
194 accu1 = SMLABT( accu1, sta1, flt);
196 flt = *p_flt++;
198 accu1 = SMLABB( accu1, sta1, flt);
200 accu1 = SMLABT( accu1, sta1, flt);
202 flt = *p_flt++;
204 accu1 = SMLABB( accu1, sta1, flt);
213 accu0 = SMULBT( sta0, flt);
    [all...]
  /external/chromium_org/third_party/opus/src/celt/
float_cast.h 108 float2int (float flt)
112 { fld flt
127 #define float2int(flt) ((int)(floor(.5+flt)))
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/
floatnum.pxi 27 cdef yasm_floatnum *flt
29 self.flt = NULL
31 self.flt = yasm_floatnum_copy((<FloatNum>value).flt)
34 self.flt = <yasm_floatnum *>PyCObject_AsVoidPtr(value)
39 self.flt = yasm_floatnum_create(string)
42 if self.flt != NULL: yasm_floatnum_destroy(self.flt)
46 yasm_floatnum_calc((<FloatNum>result).flt, YASM_EXPR_NEG, NULL)
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/tests/
floatnum_test.c 156 static yasm_floatnum *flt; variable
164 flt = yasm_floatnum_create(vals[i].ascii);
176 mantissa = BitVector_Block_Read(flt->mantissa, &len);
186 if (flt->exponent != val->exponent) {
190 if (flt->sign != val->sign) {
194 if (flt->flags != val->flags) {
211 yasm_floatnum_destroy(flt);
226 yasm_floatnum_destroy(flt);
234 flt = malloc(sizeof(yasm_floatnum));
235 flt->mantissa = BitVector_Create(MANT_BITS, TRUE)
    [all...]
  /external/valgrind/main/none/tests/ppc32/
round.c 50 float flt; member in union:__anon30166
126 void print_single(char *msg, float *flt)
129 F.flt = *flt;
136 printf("%15s : flt %-20a = %c(%4d, %06x)\n",
137 msg, F.flt, (F.layout.sign == 0 ? '+' : '-'), F.layout.exp, F.layout.frac << 1);
148 E.flt = *expected;
149 R.flt = (float)dbl;
161 round_mode_name[mode], result, R.flt, dbl);
163 print_single("\n\texpected", &E.flt);
    [all...]
  /external/valgrind/main/none/tests/ppc64/
round.c 50 float flt; member in union:__anon30207
126 void print_single(char *msg, float *flt)
129 F.flt = *flt;
136 printf("%15s : flt %-20a = %c(%4d, %06x)\n",
137 msg, F.flt, (F.layout.sign == 0 ? '+' : '-'), F.layout.exp, F.layout.frac << 1);
148 E.flt = *expected;
149 R.flt = (float)dbl;
161 round_mode_name[mode], result, R.flt, dbl);
163 print_single("\n\texpected", &E.flt);
    [all...]
  /external/qemu/
bt-host.c 151 struct hci_filter flt; local
170 hci_filter_clear(&flt);
171 hci_filter_all_ptypes(&flt);
172 hci_filter_all_events(&flt);
174 if (setsockopt(fd, SOL_HCI, HCI_FILTER, &flt, sizeof(flt)) < 0) {
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/nasm/
nasm-parser-struct.h 34 yasm_floatnum *flt; member in union:__anon16403
nasm-parser.h 98 #define FLTNUM_val (curval.flt)
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
FastMath.java     [all...]
  /pdk/apps/CameraITS/pymodules/its/
image.py 67 flt = numpy.empty([h, w, 3], dtype=numpy.float32)
68 flt.reshape(w*h*3)[:] = yuv.reshape(h*w*3)[:]
69 flt = numpy.dot(flt.reshape(w*h,3), ccm_yuv_to_rgb.T).clip(0, 255)
71 rgb.reshape(w*h*3)[:] = flt.reshape(w*h*3)[:]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/gas/
gas-parser.h 57 yasm_floatnum *flt; member in union:__anon16400
139 #define FLTNUM_val (curval.flt)
gas-token.re 269 lvalp->flt = yasm_floatnum_create(TOK);
276 lvalp->flt = yasm_floatnum_create(TOK);
283 lvalp->flt = yasm_floatnum_create(TOK+2);
  /external/chromium_org/third_party/WebKit/Source/wtf/
MathExtras.h 203 inline long int lrint(double flt)
208 fld flt
212 ASSERT(std::isfinite(flt));
213 double rounded = round(flt);
218 if ((fabs(intgr - flt) == 0.5) & intgr)
  /libcore/luni/src/main/native/
cbigint.h 61 #define FLOAT_TO_INTBITS(flt) (*(reinterpret_cast<uint32_t*>(&flt)))
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_inlines.h 77 bool flt = false, bool sgn = false)
81 case 2: return flt ? TYPE_F16 : (sgn ? TYPE_S16 : TYPE_U16);
82 case 8: return flt ? TYPE_F64 : (sgn ? TYPE_S64 : TYPE_U64);
86 return flt ? TYPE_F32 : (sgn ? TYPE_S32 : TYPE_U32);
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_inlines.h 77 bool flt = false, bool sgn = false)
81 case 2: return flt ? TYPE_F16 : (sgn ? TYPE_S16 : TYPE_U16);
82 case 8: return flt ? TYPE_F64 : (sgn ? TYPE_S64 : TYPE_U64);
86 return flt ? TYPE_F32 : (sgn ? TYPE_S32 : TYPE_U32);
  /external/chromium_org/chrome/browser/automation/
automation_resource_message_filter.h 40 AutomationDetails(int tab, AutomationResourceMessageFilter* flt,
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/lc3b/
lc3barch.c 141 lc3b_floatnum_tobytes(yasm_arch *arch, const yasm_floatnum *flt,
  /external/chromium_org/v8/src/
platform.h 77 inline int lrint(double flt) {
81 fld flt
85 intgr = static_cast<int>(flt + 0.5);
86 if ((intgr & 1) != 0 && intgr - flt == 0.5) {

Completed in 1394 milliseconds

1 2 3