Searched defs:flt (Results 1 - 25 of 26) sorted by relevance

12

/external/chromium_org/third_party/opus/src/celt/
H A Dfloat_cast.h108 float2int (float flt) argument
112 { fld flt
127 #define float2int(flt) ((int)(floor(.5+flt)))
/external/libopus/celt/
H A Dfloat_cast.h108 float2int (float flt) argument
112 { fld flt
127 #define float2int(flt) ((int)(floor(.5+flt)))
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dcmshalf.c508 cmsFloat32Number flt; member in union:__anon28679
515 return out.flt;
518 cmsUInt16Number _cmsFloat2Half(cmsFloat32Number flt) argument
521 cmsFloat32Number flt; member in union:__anon28680
527 in.flt = flt;
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dexpr.h63 yasm_floatnum *flt; /**< Floating point value (YASM_EXPR_FLOAT) */ member in union:yasm_expr__item::__anon16302
123 * \param flt floatnum
127 /*@only@*/ yasm_expr__item *yasm_expr_float(/*@keep@*/ yasm_floatnum *flt);
H A Dfloatnum.c212 floatnum_normalize(yasm_floatnum *flt) argument
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
494 yasm_floatnum_copy(const yasm_floatnum *flt) argument
507 yasm_floatnum_destroy(yasm_floatnum *flt) argument
527 yasm_floatnum_get_int(const yasm_floatnum *flt, unsigned long *ret_val) argument
552 floatnum_get_common(const yasm_floatnum *flt, unsigned char *ptr, N_int byte_size, N_int mant_bits, int implicit1, N_int exp_bits) argument
674 yasm_floatnum_get_sized(const yasm_floatnum *flt, unsigned char *ptr, size_t destsize, size_t valsize, size_t shift, int bigendian, int warn) argument
714 yasm_floatnum_check_size( const yasm_floatnum *flt, size_t size) argument
728 yasm_floatnum_print(const yasm_floatnum *flt, FILE *f) argument
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/lc3b/
H A Dlc3barch.c141 lc3b_floatnum_tobytes(yasm_arch *arch, const yasm_floatnum *flt, argument
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/nasm/
H A Dnasm-parser-struct.h34 yasm_floatnum *flt; member in union:__anon16363
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/tests/
H A Dfloatnum_test.c156 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
[all...]
/external/chromium_org/v8/src/base/platform/
H A Dplatform.h54 inline int lrint(double flt) { argument
58 fld flt
62 intgr = static_cast<int>(flt + 0.5);
63 if ((intgr & 1) != 0 && intgr - flt == 0.5) {
/external/libpcap/
H A Dpcap-bt-linux.c193 struct hci_filter flt; local
251 memset(&flt, 0, sizeof(flt));
252 memset((void *) &flt.type_mask, 0xff, sizeof(flt.type_mask));
253 memset((void *) &flt.event_mask, 0xff, sizeof(flt.event_mask));
254 if (setsockopt(handle->fd, SOL_HCI, HCI_FILTER, &flt, sizeof(flt)) < 0) {
/external/lldb/include/lldb/Core/
H A DScalar.h50 Scalar(float v) : m_type(e_float), m_data() { m_data.flt = v; }
276 float flt; member in union:lldb_private::Scalar::ValueData
/external/aac/libFDK/src/arm/
H A Dqmf_arm.cpp174 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/WebKit/Source/wtf/
H A DMathExtras.h178 inline long int lrint(double flt) argument
183 fld flt
187 ASSERT(std::isfinite(flt));
188 double rounded = round(flt);
193 if ((fabs(intgr - flt) == 0.5) & intgr)
/external/chromium_org/third_party/icu/source/test/iotest/
H A Diotest.cpp381 volatile float flt, expectedFlt; // Use volatile in order to get around an Intel compiler issue. local
433 uBufferLenReturned = u_sscanf_u(argument, format, &flt);
434 //uFileBufferLenReturned = u_fscanf_u(testFile, format, flt);
435 if (flt != expectedFlt) {
437 i, flt, expectedFlt);
/external/icu/icu4c/source/test/iotest/
H A Diotest.cpp381 volatile float flt, expectedFlt; // Use volatile in order to get around an Intel compiler issue. local
433 uBufferLenReturned = u_sscanf_u(argument, format, &flt);
434 //uFileBufferLenReturned = u_fscanf_u(testFile, format, flt);
435 if (flt != expectedFlt) {
437 i, flt, expectedFlt);
/external/ltrace/sysdeps/linux-gnu/ia64/
H A Dfetch.c50 int flt; member in struct:fetch_context
69 context->flt = 8;
132 ctx->flt = 16;
226 if (ctx->flt > 15 || ctx->ppflavor == PARAM_PACK_VARARGS)
236 } u = { .d = fpreg_to_double(&ctx->regs.fr[ctx->flt++]) };
289 while (ctx->flt <= 15 && hfa_count > 0) {
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/
H A Dx86expr.c1049 yasm_x86__floatnum_tobytes(yasm_arch *arch, const yasm_floatnum *flt, argument
1053 if (!yasm_floatnum_check_size(flt, valsize)) {
1059 yasm_floatnum_get_sized(flt, buf, destsize, valsize, shift, 0, warn);
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/gas/
H A Dgas-parser.h57 yasm_floatnum *flt; member in union:__anon16360
139 #define FLTNUM_val (curval.flt)
/external/lldb/include/lldb/DataFormatters/
H A DTypeSynthetic.h364 FrontEnd(TypeFilterImpl* flt, argument
367 filter(flt)
/external/chromium_org/v8/src/arm/
H A Dsimulator-arm.h164 void set_s_register_from_float(int sreg, const float flt) { argument
165 SetVFPRegister<float, 1>(sreg, flt);
/external/valgrind/main/none/tests/ppc32/
H A Dround.c50 float flt; member in union:__anon33144
126 void print_single(char *msg, float *flt) argument
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/
H A Dround.c50 float flt; member in union:__anon33192
126 void print_single(char *msg, float *flt) argument
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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.app_1.3.1.R36x_v20100803.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-nodeps.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/jarjar/lib/
H A Dapache-ant-1.9.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 1344 milliseconds

12