/third_party/gstreamer/gstplugins_base/tests/check/gst/ |
D | typefindfunctions.c | 216 make_ac3_packet (guint8 * data, guint bytesize, guint bsid) in make_ac3_packet() argument 229 guint wordsize = bytesize >> 1, frmsizecod = 0; in make_ac3_packet() 232 fail_unless ((bytesize & 0x01) == 0); in make_ac3_packet() 233 fail_unless (bytesize >= sizeof (ac3_header)); in make_ac3_packet() 247 memset (data + 6, 0, bytesize - 6); in make_ac3_packet() 288 make_eac3_packet (guint8 * data, guint bytesize, guint bsid) in make_eac3_packet() argument 301 guint wordsize = bytesize >> 1; in make_eac3_packet() 303 fail_unless ((bytesize & 0x01) == 0); in make_eac3_packet() 304 fail_unless (bytesize >= sizeof (eac3_header)); in make_eac3_packet() 310 memset (data + 6, 0, bytesize - 6); in make_eac3_packet()
|
/third_party/jerryscript/jerry-debugger/ |
D | jerry_client_serial.py | 28 bytesize = int(config[2]) if config_size > 2 else 8 33 stopbits=stopbits, bytesize=bytesize, timeout=1)
|
/third_party/gstreamer/gstplugins_bad/gst/pnm/ |
D | gstpnmenc.c | 189 guint size, pixels, bytesize; in gst_pnmenc_handle_frame() local 206 bytesize = 1; in gst_pnmenc_handle_frame() 213 bytesize = 1; in gst_pnmenc_handle_frame() 221 bytesize = 2; in gst_pnmenc_handle_frame() 222 size = pixels * bytesize; in gst_pnmenc_handle_frame() 332 o_rowstride = 3 * pnmenc->info.width * bytesize; in gst_pnmenc_handle_frame() 334 o_rowstride = pnmenc->info.width * bytesize; in gst_pnmenc_handle_frame()
|
/third_party/gstreamer/gstplugins_bad/sys/nvcodec/ |
D | gstcudaloader.c | 72 CUresult (CUDAAPI * CuMemAlloc) (CUdeviceptr * dptr, unsigned int bytesize); 75 CUresult (CUDAAPI * CuMemAllocHost) (void **pp, unsigned int bytesize); 327 CuMemAlloc (CUdeviceptr * dptr, unsigned int bytesize) in CuMemAlloc() argument 331 return gst_cuda_vtable.CuMemAlloc (dptr, bytesize); in CuMemAlloc() 345 CuMemAllocHost (void **pp, unsigned int bytesize) in CuMemAllocHost() argument 349 return gst_cuda_vtable.CuMemAllocHost (pp, bytesize); in CuMemAllocHost()
|
D | gstcudaloader.h | 75 unsigned int bytesize); 84 unsigned int bytesize);
|
/third_party/skia/gm/ |
D | colrv1.cpp | 78 size_t bytesize() { return fGlyphs.size() * sizeof(uint16_t); } in bytesize() function 166 fEmojiFont.bytesize(), in onDraw()
|
/third_party/flatbuffers/src/ |
D | reflection.cpp | 447 element_size = elemobjectdef->bytesize(); in CopyTable() 474 subobjectdef.bytesize()); in CopyTable() 508 offset, obj.bytesize()); in VerifyStruct() 518 return !p || v.VerifyVectorOrString(p, obj.bytesize()); in VerifyVectorOfStructs() 537 return v.VerifyFromPointer(elem, elem_obj->bytesize()); in VerifyUnion()
|
D | idl_parser.cpp | 730 field.value.offset = static_cast<voffset_t>(struct_def.bytesize); in AddField() 731 struct_def.bytesize += size; in AddField() 1188 FLATBUFFERS_ASSERT(val.constant.length() == struct_def.bytesize); in SerializeStruct() 1191 struct_def.bytesize); in SerializeStruct() 1385 struct_def.bytesize); in ParseTable() 1386 builder_.PopBytes(struct_def.bytesize); in ParseTable() 1580 const size_t struct_size = type.struct_def->bytesize; in ParseVector() 1584 v->Data(), v->Data() + v->size() * type.struct_def->bytesize, in ParseVector() 1585 type.struct_def->bytesize, in ParseVector() 2539 if (!struct_def->bytesize) return Error("size 0 structs not allowed"); in ParseDecl() [all …]
|
D | idl_gen_lobster.cpp | 319 NumToString(struct_def.bytesize) + ")\n"; in StructBuilderBody()
|
D | idl_gen_text.cpp | 136 c.Data() + type.struct_def->bytesize * i) in PrintContainer()
|
D | idl_gen_ts.cpp | 330 *body += NumToString(struct_def.bytesize) + ");\n"; in GenStructBody() 1336 code += " return " + NumToString(struct_def.bytesize) + ";\n"; in GenStruct()
|
D | idl_gen_python.cpp | 507 code += NumToString(struct_def.bytesize) + ")\n"; in StructBuilderBody() 744 Indent + Indent + "return " + NumToString(struct_def.bytesize) + "\n"; in GenStructSizeOf()
|
D | idl_gen_lua.cpp | 398 code += NumToString(struct_def.bytesize) + ")\n"; in StructBuilderBody()
|
D | idl_gen_dart.cpp | 623 code += " int get size => " + NumToString(struct_def.bytesize) + ";\n\n"; in GenReader()
|
D | idl_gen_php.cpp | 470 code += NumToString(struct_def.bytesize) + ");\n"; in StructBuilderBody()
|
D | idl_gen_java.cpp | 455 code += NumToString(struct_def.bytesize) + ");\n"; in GenStructBody()
|
D | idl_gen_kotlin.cpp | 413 writer.SetValue("size", NumToString(struct_def.bytesize)); in GenStructBody()
|
D | idl_gen_cpp.cpp | 1068 vs += NumToString(struct_def->bytesize); in GenMiniReflect() 3409 code_.SetValue("STRUCT_BYTE_SIZE", NumToString(struct_def.bytesize)); in GenStruct()
|
/third_party/python/Lib/test/ |
D | test_struct.py | 182 self.bytesize = struct.calcsize(format) 183 self.bitsize = self.bytesize * 8 211 expected = (b"\x00" * (self.bytesize - len(expected)) + 216 self.assertEqual(len(expected), self.bytesize) 245 for j in range(self.bytesize):
|
/third_party/flatbuffers/include/flatbuffers/ |
D | idl.h | 360 bytesize(0) {} in StructDef() 363 auto padding = PaddingBytes(bytesize, min_align); in PadLastField() 364 bytesize += padding; in PadLastField() 380 size_t bytesize; // Size if fixed. member 496 ? type.struct_def->bytesize in InlineSize()
|
D | reflection_generated.h | 766 int32_t bytesize() const { in bytesize() function 811 void add_bytesize(int32_t bytesize) { in add_bytesize() 812 fbb_.AddElement<int32_t>(Object::VT_BYTESIZE, bytesize, 0); in add_bytesize() 839 int32_t bytesize = 0, 845 builder_.add_bytesize(bytesize); 859 int32_t bytesize = 0, 872 bytesize,
|
D | reflection.h | 84 return schema.objects()->Get(type_index)->bytesize(); in GetTypeSizeInline()
|
/third_party/flatbuffers/reflection/ |
D | reflection.fbs | 85 bytesize:int; // For structs.
|
/third_party/python/Lib/multiprocessing/ |
D | connection.py | 236 bytesize = itemsize * len(m) 239 elif offset > bytesize: 243 if bytesize < offset + size:
|
/third_party/flatbuffers/lobster/ |
D | flatbuffers.lobster | 90 // First, store the object bytesize: 92 // Second, store the vtable bytesize:
|