/external/openssh/openbsd-compat/ |
D | bsd-snprintf.c | 177 LDOUBLE fvalue, int min, int max, int flags); 184 LDOUBLE fvalue; in dopr() local 389 fvalue = va_arg (args, LDOUBLE); in dopr() 391 fvalue = va_arg (args, double); in dopr() 392 if (fmtfp(buffer, &currlen, maxlen, fvalue, in dopr() 400 fvalue = va_arg (args, LDOUBLE); in dopr() 402 fvalue = va_arg (args, double); in dopr() 403 if (fmtfp(buffer, &currlen, maxlen, fvalue, in dopr() 411 fvalue = va_arg (args, LDOUBLE); in dopr() 413 fvalue = va_arg (args, double); in dopr() [all …]
|
/external/grpc-grpc/third_party/nanopb/tests/encode_unittests/ |
D | encode_unittests.c | 150 float fvalue; in main() local 154 fvalue = 0.0f; in main() 155 TEST(WRITES(pb_enc_fixed32(&s, NULL, &fvalue), "\x00\x00\x00\x00")) in main() 156 fvalue = 99.0f; in main() 157 TEST(WRITES(pb_enc_fixed32(&s, NULL, &fvalue), "\x00\x00\xc6\x42")) in main() 158 fvalue = -12345678.0f; in main() 159 TEST(WRITES(pb_enc_fixed32(&s, NULL, &fvalue), "\x4e\x61\x3c\xcb")) in main()
|
/external/nanopb-c/tests/encode_unittests/ |
D | encode_unittests.c | 150 float fvalue; in main() local 154 fvalue = 0.0f; in main() 155 TEST(WRITES(pb_enc_fixed32(&s, NULL, &fvalue), "\x00\x00\x00\x00")) in main() 156 fvalue = 99.0f; in main() 157 TEST(WRITES(pb_enc_fixed32(&s, NULL, &fvalue), "\x00\x00\xc6\x42")) in main() 158 fvalue = -12345678.0f; in main() 159 TEST(WRITES(pb_enc_fixed32(&s, NULL, &fvalue), "\x4e\x61\x3c\xcb")) in main()
|
/external/mesa3d/src/compiler/glsl/ |
D | s_expression.h | 84 virtual float fvalue() = 0; 97 float fvalue() { return float(this->val); } in fvalue() function 111 float fvalue() { return this->val; } in fvalue() function
|
D | ir_reader.cpp | 842 data.f[k] = value->fvalue(); in read_constant()
|
/external/iproute2/netem/ |
D | maketable.c | 139 double findex, fvalue; in inverttable() local 147 fvalue = (double)table[i]/(double)cumulative; in inverttable() 148 inverseindex = (int)rint(fvalue*inversesize); in inverttable()
|
/external/python/cpython2/Lib/ |
D | mailcap.py | 111 fvalue = "" 114 fvalue = field[i+1:].strip() 119 fields[fkey] = fvalue
|
/external/python/cpython3/Lib/ |
D | mailcap.py | 132 fvalue = "" 135 fvalue = field[i+1:].strip() 140 fields[fkey] = fvalue
|
/external/scapy/scapy/ |
D | 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): 927 ret = fvalue.getlayer(cls, nb=nb, _track=track, 1011 fvalue = self.getfieldval(f.name) 1012 … if isinstance(fvalue, Packet) or (f.islist and f.holds_packets and isinstance(fvalue, list)): 1014 fvalue_gen = SetGen(fvalue,_iterpacket=0) 1015 for fvalue in fvalue_gen: [all …]
|
/external/scapy/scapy/layers/tls/ |
D | 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/ |
D | clmodule.c | 388 float fvalue; in do_get() local 401 fvalue = CL_TypeIsFloat(value); in do_get() 402 return PyFloat_FromDouble(fvalue); in do_get() 424 float fvalue; in clm_SetParam() local 430 if (!PyArg_Parse(args, "(if)", ¶mID, &fvalue)) { in clm_SetParam() 436 value = CL_TypeIsInt(fvalue); in clm_SetParam() 439 fvalue = value; in clm_SetParam() 440 value = CL_TypeIsInt(fvalue); in clm_SetParam() 828 float fvalue; in do_set() local 833 if (!PyArg_ParseTuple(args, "iif", &scheme, ¶mID, &fvalue)) { in do_set() [all …]
|
/external/mesa3d/src/gallium/drivers/svga/ |
D | svga_state_tss.c | 340 #define EMIT_TS_FLOAT(svga, unit, fvalue, token) \ argument 342 unsigned val = fui(fvalue); \
|
D | svga_state_rss.c | 57 #define EMIT_RS_FLOAT(svga, fvalue, token) \ argument 59 unsigned value = fui(fvalue); \
|
/external/lua/src/ |
D | lobject.h | 174 #define fvalue(o) check_exp(ttislcf(o), val_(o).f) macro
|
D | ltable.c | 132 return hashpointer(t, fvalue(key)); in mainposition()
|
D | lapi.c | 406 if (ttislcf(o)) return fvalue(o); in lua_tocfunction() 435 case LUA_TLCF: return cast(void *, cast(size_t, fvalue(o))); in lua_topointer()
|
D | lvm.c | 424 case LUA_TLCF: return fvalue(t1) == fvalue(t2); in luaV_equalobj()
|
D | ldo.c | 421 f = fvalue(func); in luaD_precall()
|
/external/v8/src/mips/ |
D | simulator-mips.cc | 430 float fvalue; in Debug() local 432 fvalue = GetFPURegisterValueFloat(fpuregnum); in Debug() 433 PrintF("%s: 0x%08x %11.4e\n", arg1, value, fvalue); in Debug() 455 float fvalue; in Debug() local 460 fvalue = GetFPURegisterValueFloat(fpuregnum); in Debug() 461 PrintF("%s: 0x%08x %11.4e\n", arg1, value, fvalue); in Debug()
|
/external/v8/src/asmjs/ |
D | asm-parser.cc | 972 float fvalue = static_cast<float>(value); in ValidateFunctionLocals() local 973 current_function_builder_->EmitF32Const(fvalue); in ValidateFunctionLocals()
|
/external/v8/src/mips64/ |
D | simulator-mips64.cc | 399 float fvalue; in Debug() local 405 fvalue = GetFPURegisterValueFloat(fpuregnum); in Debug() 406 PrintF("%s: 0x%08" PRIx64 " %11.4e\n", arg1, value, fvalue); in Debug()
|
/external/v8/src/s390/ |
D | simulator-s390.cc | 321 float fvalue = GetFPFloatRegisterValue(i); in Debug() local 322 uint32_t as_words = bit_cast<uint32_t>(fvalue); in Debug() 324 GetRegConfig()->GetDoubleRegisterName(i), fvalue, in Debug()
|