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

1 2

  /external/devlib/devlib/utils/
types.py 81 fvalue = float(value)
84 if not math.isnan(fvalue) and not math.isinf(fvalue):
85 ivalue = int(fvalue)
86 if ivalue == fvalue: # yeah, yeah, I know. Whatever. This is best-effort.
88 return fvalue
  /external/mesa3d/src/compiler/glsl/
s_expression.h 85 virtual float fvalue() = 0;
98 float fvalue() { return float(this->val); } function in class:s_int
112 float fvalue() { return this->val; } function in class:s_float
  /external/nanopb-c/tests/encode_unittests/
encode_unittests.c 149 float fvalue; local
153 fvalue = 0.0f;
154 TEST(WRITES(pb_enc_fixed32(&s, NULL, &fvalue), "\x00\x00\x00\x00"))
155 fvalue = 99.0f;
156 TEST(WRITES(pb_enc_fixed32(&s, NULL, &fvalue), "\x00\x00\xc6\x42"))
157 fvalue = -12345678.0f;
158 TEST(WRITES(pb_enc_fixed32(&s, NULL, &fvalue), "\x4e\x61\x3c\xcb"))
  /device/linaro/bootloader/edk2/StdLib/LibC/Uefi/
compat.c 271 fmtfp(char *buffer, size_t *currlen, size_t maxlen, long double fvalue,
315 long double fvalue; local
472 fvalue = va_arg(args, long double);
474 fvalue = va_arg(args, double);
476 fmtfp(buffer, &currlen, maxlen, fvalue, min, max, flags);
482 fvalue = va_arg(args, long double);
484 fvalue = va_arg(args, double);
490 fvalue = va_arg(args, long double);
492 fvalue = va_arg(args, double);
693 fmtfp(char *buffer, size_t *currlen, size_t maxlen, long double fvalue,
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
mailcap.py 111 fvalue = ""
114 fvalue = field[i+1:].strip()
119 fields[fkey] = fvalue
  /external/iproute2/netem/
maketable.c 139 double findex, fvalue; local
147 fvalue = (double)table[i]/(double)cumulative;
148 inverseindex = (int)rint(fvalue*inversesize);
  /external/python/cpython2/Lib/
mailcap.py 111 fvalue = ""
114 fvalue = field[i+1:].strip()
119 fields[fkey] = fvalue
  /external/python/cpython3/Lib/
mailcap.py 132 fvalue = ""
135 fvalue = field[i+1:].strip()
140 fields[fkey] = fvalue
  /prebuilts/gdb/darwin-x86/lib/python2.7/
mailcap.py 111 fvalue = ""
114 fvalue = field[i+1:].strip()
119 fields[fkey] = fvalue
  /prebuilts/gdb/linux-x86/lib/python2.7/
mailcap.py 111 fvalue = ""
114 fvalue = field[i+1:].strip()
119 fields[fkey] = fvalue
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
mailcap.py 111 fvalue = ""
114 fvalue = field[i+1:].strip()
119 fields[fkey] = fvalue
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
mailcap.py 111 fvalue = ""
114 fvalue = field[i+1:].strip()
119 fields[fkey] = fvalue
  /external/scapy/scapy/layers/tls/
extensions.py 97 fvalue = self.getfieldval(f.name)
100 reprval = f.i2repr(self,fvalue)
110 fvalue = self.getfieldval(f.name)
112 reprval = f.i2repr(self,fvalue)
  /external/python/cpython2/Modules/
clmodule.c 388 float fvalue; local
401 fvalue = CL_TypeIsFloat(value);
402 return PyFloat_FromDouble(fvalue);
424 float fvalue; local
430 if (!PyArg_Parse(args, "(if)", &paramID, &fvalue)) {
436 value = CL_TypeIsInt(fvalue);
439 fvalue = value;
440 value = CL_TypeIsInt(fvalue);
828 float fvalue; local
833 if (!PyArg_ParseTuple(args, "iif", &scheme, &paramID, &fvalue)) {
    [all...]
  /external/scapy/scapy/
packet.py 885 for fvalue in fvalue_gen:
886 if isinstance(fvalue, Packet):
887 ret = fvalue.haslayer(cls)
924 for fvalue in fvalue_gen:
925 if isinstance(fvalue, Packet)
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/
svga_state_tss.c 338 #define EMIT_TS_FLOAT(svga, unit, fvalue, token) \
340 unsigned val = fui(fvalue); \
svga_state_rss.c 57 #define EMIT_RS_FLOAT(svga, fvalue, token, fail) \
59 unsigned value = fui(fvalue); \
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
lobject.h 163 #define fvalue(o) check_exp(ttislcf(o), val_(o).f) macro
ltable.c 116 return hashpointer(t, fvalue(key));
lvm.c 268 case LUA_TLCF: return fvalue(t1) == fvalue(t2);
lapi.c 420 if (ttislcf(o)) return fvalue(o);
449 case LUA_TLCF: return cast(void *, cast(size_t, fvalue(o)));
  /external/syslinux/com32/lua/src/
lobject.h 163 #define fvalue(o) check_exp(ttislcf(o), val_(o).f) macro
ltable.c 117 return hashpointer(t, fvalue(key));
lvm.c 291 case LUA_TLCF: return fvalue(t1) == fvalue(t2);
  /external/v8/src/mips/
simulator-mips.cc 430 float fvalue; local
432 fvalue = GetFPURegisterValueFloat(fpuregnum);
433 PrintF("%s: 0x%08x %11.4e\n", arg1, value, fvalue);
455 float fvalue; local
460 fvalue = GetFPURegisterValueFloat(fpuregnum);
461 PrintF("%s: 0x%08x %11.4e\n", arg1, value, fvalue);
    [all...]

Completed in 1205 milliseconds

1 2