Home
last modified time | relevance | path

Searched refs:bytesize (Results 1 – 8 of 8) sorted by relevance

/third_party/gstreamer/gstplugins_base/tests/check/gst/
Dtypefindfunctions.c216 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/
Djerry_client_serial.py28 bytesize = int(config[2]) if config_size > 2 else 8
33 stopbits=stopbits, bytesize=bytesize, timeout=1)
/third_party/gstreamer/gstplugins_bad/gst/pnm/
Dgstpnmenc.c189 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/
Dgstcudaloader.c72 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()
Dgstcudaloader.h75 unsigned int bytesize);
84 unsigned int bytesize);
/third_party/skia/gm/
Dcolrv1.cpp78 size_t bytesize() { return fGlyphs.size() * sizeof(uint16_t); } in bytesize() function
166 fEmojiFont.bytesize(), in onDraw()
/third_party/python/Lib/test/
Dtest_struct.py182 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/python/Lib/multiprocessing/
Dconnection.py231 bytesize = itemsize * len(m)
234 elif offset > bytesize:
238 if bytesize < offset + size: