/third_party/flatbuffers/tests/MyGame/Example/ |
D | TypeAliases.py | 207 def AddVf64(builder, vf64): builder.PrependUOffsetTRelativeSlot(11, flatbuffers.number_types.UOffse… argument 208 def TypeAliasesAddVf64(builder, vf64): argument 210 return AddVf64(builder, vf64) 239 self.vf64 = None # type: List[float] 276 self.vf64 = [] 278 self.vf64.append(typeAliases.Vf64(i)) 280 self.vf64 = typeAliases.Vf64AsNumpy() 292 if self.vf64 is not None: 293 if np is not None and type(self.vf64) is np.ndarray: 294 vf64 = builder.CreateNumpyVector(self.vf64) [all …]
|
D | TypeAliases.kt | 183 fun vf64(j: Int) : Double { in vf64() method in MyGame.Example.TypeAliases 197 fun mutateVf64(j: Int, vf64: Double) : Boolean { in vf64InByteBuffer() 200 bb.putDouble(__vector(o) + j * 8, vf64) in vf64InByteBuffer() 249 fun addVf64(builder: FlatBufferBuilder, vf64: Int) = builder.addOffset(11, vf64, 0) in startV8Vector()
|
D | TypeAliases.php | 191 …s(FlatBufferBuilder $builder, $i8, $u8, $i16, $u16, $i32, $u32, $i64, $u64, $f32, $f64, $v8, $vf64) argument 205 self::addVf64($builder, $vf64); 349 public static function addVf64(FlatBufferBuilder $builder, $vf64) argument 351 $builder->addOffsetX(11, $vf64, 0);
|
D | TypeAliases.java | 45 …public double vf64(int j) { int o = __offset(26); return o != 0 ? bb.getDouble(__vector(o) + j * 8… in vf64() method in TypeAliases 51 …c boolean mutateVf64(int j, double vf64) { int o = __offset(26); if (o != 0) { bb.putDouble(__vect… in mutateVf64() local
|
D | TypeAliases.lua | 143 function TypeAliases.AddVf64(builder, vf64) builder:PrependUOffsetTRelativeSlot(11, vf64, 0) end
|
D | TypeAliases.go | 328 func TypeAliasesAddVf64(builder *flatbuffers.Builder, vf64 flatbuffers.UOffsetT) { 329 builder.PrependUOffsetTSlot(11, flatbuffers.UOffsetT(vf64), 0)
|
D | TypeAliases.cs | 59 …ool MutateVf64(int j, double vf64) { int o = __p.__offset(26); if (o != 0) { __p.bb.PutDouble(__p.… in MutateVf64()
|
/third_party/flatbuffers/tests/my-game/example/ |
D | type-aliases.js | 152 vf64(index) { method in TypeAliases 253 …rList(this.v8.bind(this), this.v8Length()), this.bb.createScalarList(this.vf64.bind(this), this.vf… 267 _o.vf64 = this.bb.createScalarList(this.vf64.bind(this), this.vf64Length()); 271 …s.createLong(0, 0), u64 = flatbuffers.createLong(0, 0), f32 = 0.0, f64 = 0.0, v8 = [], vf64 = []) { argument 283 this.vf64 = vf64; 287 const vf64 = TypeAliases.createVf64Vector(builder, this.vf64); 288 …this.u8, this.i16, this.u16, this.i32, this.u32, this.i64, this.u64, this.f32, this.f64, v8, vf64);
|
D | type-aliases.ts | 200 vf64(index: number):number|null { method in TypeAliases 348 this.bb!.createScalarList(this.vf64.bind(this), this.vf64Length()) 365 _o.vf64 = this.bb!.createScalarList(this.vf64.bind(this), this.vf64Length()); 382 public vf64: (number)[] = [] 388 const vf64 = TypeAliases.createVf64Vector(builder, this.vf64); constant 402 vf64
|
/third_party/ejdb/src/jbi/ |
D | jbi_util.c | 110 jbi_ftoa(jqval->vf64, numbuf, &ikey->size); in jbi_jqval_fill_ikey() 123 *llv = (int64_t) jqval->vf64; in jbi_jqval_fill_ikey() 139 jbi_ftoa(jqval->vf64, numbuf, &ikey->size); in jbi_jqval_fill_ikey() 187 jbi_ftoa(node->vf64, numbuf, &ikey->size); in jbi_node_fill_ikey() 200 *llv = (int64_t) node->vf64; in jbi_node_fill_ikey() 217 jbi_ftoa(node->vf64, numbuf, &ikey->size); in jbi_node_fill_ikey() 272 lv.vf64 = (double) iwatof(kbuf); in jbi_node_expr_matched()
|
/third_party/ejdb/src/jql/ |
D | jql.c | 158 qv->vf64 = val; in jql_set_f64() 455 qval->vf64 = vbinn->vfloat; in _jql_binn_to_jqval() 459 qval->vf64 = vbinn->vdouble; in _jql_binn_to_jqval() 488 qv->vf64 = jn->vf64; in _jql_node_to_jqval() 547 jbi_ftoa(rv->vf64, nbuf, &osz); in _jql_cmp_jqval_pair() 561 return (double) lv->vi64 > rv->vf64 ? 1 : (double) lv->vi64 < rv->vf64 ? -1 : 0; in _jql_cmp_jqval_pair() 578 return lv->vf64 > rv->vf64 ? 1 : lv->vf64 < rv->vf64 ? -1 : 0; in _jql_cmp_jqval_pair() 580 return lv->vf64 > (double) rv->vi64 ? 1 : lv->vf64 < rv->vf64 ? -1 : 0; in _jql_cmp_jqval_pair() 583 return lv->vf64 > rval ? 1 : lv->vf64 < rval ? -1 : 0; in _jql_cmp_jqval_pair() 588 return lv->vf64 > (double) rv->vbool ? 1 : lv->vf64 < (double) rv->vbool ? -1 : 0; in _jql_cmp_jqval_pair() [all …]
|
D | jql_internal.h | 41 double vf64; member
|
/third_party/ejdb/src/jbl/ |
D | binn.c | 2075 int64 vf64 = 0; in copy_int_value() local 2078 vf64 = *(signed char*) psource; in copy_int_value() 2081 vf64 = *(short*) psource; in copy_int_value() 2084 vf64 = *(int*) psource; in copy_int_value() 2087 vf64 = *(int64*) psource; in copy_int_value() 2109 vf64 = vuint64; in copy_int_value() 2111 if (vf64 < 0) { in copy_int_value() 2114 vuint64 = (uint64) vf64; in copy_int_value() 2118 if ((vf64 < INT8_MIN) || (vf64 > INT8_MAX)) { in copy_int_value() 2121 *(signed char*) pdest = (signed char) vf64; in copy_int_value() [all …]
|
D | jbl_json.c | 381 node->vf64 = strtod(p, &pe); in _jbl_parse_value() 467 rc = _jbl_write_double(node->vf64, pt, op); in _jbl_node_as_json() 519 n->vf64 = src->vf64; in _jbl_clone_node_struct()
|
D | jbl.c | 1482 .vf64 = fv in jbn_path_compare_f64() 1524 target->vi64 += (int64_t) value->vf64; in _jbl_increment_node_data() 1529 target->vf64 += value->vf64; in _jbl_increment_node_data() 1531 target->vf64 += (double) value->vi64; in _jbl_increment_node_data() 1685 n->vf64 = val; in jbn_add_item_f64() 1967 n->vf64 = bv->vdouble; in _jbl_create_node() 2214 jbi_ftoa(n1->vf64, b1, &sz1); in _jbl_compare_nodes() 2215 jbi_ftoa(n2->vf64, b2, &sz2); in _jbl_compare_nodes() 2449 binn_set_double(res, node->vf64); in _jbl_from_node_impl()
|
D | jbl.h | 149 double vf64; member
|
/third_party/flatbuffers/tests/FlatBuffers.Test.Swift/Tests/FlatBuffers.Test.SwiftTests/ |
D | monster_test_generated.swift | 1532 case vf64 = 26 1561 …public var vf64Count: Int32 { let o = _accessor.offset(VTOFFSET.vf64.v); return o == 0 ? 0 : _acce… 1562 …public func vf64(at index: Int32) -> Double { let o = _accessor.offset(VTOFFSET.vf64.v); return o … in vf64() function 1563 public var vf64: [Double] { return _accessor.getVector(at: VTOFFSET.vf64.v) ?? [] } variable 1564 …blic func mutate(vf64: Double, at index: Int32) -> Bool { let o = _accessor.offset(VTOFFSET.vf64.v… in mutate() 1577 …public static func addVectorOf(vf64: Offset, _ fbb: inout FlatBufferBuilder) { fbb.add(offset: vf6… in addVectorOf() 1592 vf64VectorOffset vf64: Offset = Offset() 1606 MyGame_Example_TypeAliases.addVectorOf(vf64: vf64, &fbb) 1621 let __vf64 = builder.createVector(obj.vf64) in pack() 1634 MyGame_Example_TypeAliases.addVectorOf(vf64: __vf64, &builder) in pack() [all …]
|
/third_party/flatbuffers/tests/ |
D | monster_test_generated.h | 2242 std::vector<double> vf64{}; 2258 (lhs.vf64 == rhs.vf64); 2352 const flatbuffers::Vector<double> *vf64() const { 2373 verifier.VerifyVector(vf64()) && 2418 void add_vf64(flatbuffers::Offset<flatbuffers::Vector<double>> vf64) { 2419 fbb_.AddOffset(TypeAliases::VT_VF64, vf64); 2445 flatbuffers::Offset<flatbuffers::Vector<double>> vf64 = 0) { 2450 builder_.add_vf64(vf64); 2475 const std::vector<double> *vf64 = nullptr) { 2477 auto vf64__ = vf64 ? _fbb.CreateVector<double>(*vf64) : 0; [all …]
|
D | monster_test_generated.rs | 3601 if let Some(x) = args.vf64 { builder.add_vf64(x); } in create() 3627 let vf64 = self.vf64().map(|x| { in unpack() localVariable 3642 vf64, in unpack() 3703 pub fn vf64(&self) -> Option<flatbuffers::Vector<'a, f64>> { in vf64() method 3743 pub vf64: Option<flatbuffers::WIPOffset<flatbuffers::Vector<'a, f64>>>, field 3760 vf64: None, in default() 3814 pub fn add_vf64(&mut self, vf64: flatbuffers::WIPOffset<flatbuffers::Vector<'b , f64>>) { in add_vf64() 3815 self.fbb_.push_slot_always::<flatbuffers::WIPOffset<_>>(TypeAliases::VT_VF64, vf64); in add_vf64() 3846 ds.field("vf64", &self.vf64()); in fmt() 3864 pub vf64: Option<Vec<f64>>, field [all …]
|
D | monster_test.fbs | 141 vf64:[float64];
|
D | monster_test_generated.lobster | 709 def vf64(i:int): 754 def add_vf64(vf64:flatbuffers_offset): 755 b_.PrependUOffsetTRelativeSlot(11, vf64)
|
D | monster_test_my_game.example_generated.dart | 1486 …List<double> get vf64 => const fb.ListReader<double>(const fb.Float64Reader()).vTableGet(_bc, _bcO… 1490 …16: $u16, i32: $i32, u32: $u32, i64: $i64, u64: $u64, f32: $f32, f64: $f64, v8: $v8, vf64: $vf64}'; 1593 List<double> vf64, 1606 _vf64 = vf64;
|
/third_party/flatbuffers/tests/cpp17/generated_cpp17/ |
D | monster_test_generated.h | 2258 std::vector<double> vf64{}; 2348 const flatbuffers::Vector<double> *vf64() const { 2367 else if constexpr (Index == 11) return vf64(); 2385 verifier.VerifyVector(vf64()) && 2430 void add_vf64(flatbuffers::Offset<flatbuffers::Vector<double>> vf64) { 2431 fbb_.AddOffset(TypeAliases::VT_VF64, vf64); 2457 flatbuffers::Offset<flatbuffers::Vector<double>> vf64 = 0) { 2462 builder_.add_vf64(vf64); 2511 const std::vector<double> *vf64 = nullptr) { 2513 auto vf64__ = vf64 ? _fbb.CreateVector<double>(*vf64) : 0; [all …]
|
/third_party/flatbuffers/dart/test/ |
D | monster_test_my_game.example_generated.dart | 1486 …List<double> get vf64 => const fb.ListReader<double>(const fb.Float64Reader()).vTableGet(_bc, _bcO… 1490 …16: $u16, i32: $i32, u32: $u32, i64: $i64, u64: $u64, f32: $f32, f64: $f64, v8: $v8, vf64: $vf64}'; 1593 List<double> vf64, 1606 _vf64 = vf64;
|
/third_party/ejdb/src/jql/inc/ |
D | jqpx.c | 198 unit->json.jn.vf64 = strtod(text, &eptr); in _jqp_json_number()
|