HomeSort by relevance Sort by last modified time
    Searched refs:pack (Results 426 - 450 of 1007) sorted by null

<<11121314151617181920>>

  /external/chromium-trace/catapult/telemetry/third_party/webpagereplay/third_party/dns/
rdataset.py 244 stuff = struct.pack("!HHIH", self.rdtype, rdclass, 0, 0)
255 stuff = struct.pack("!HHIH", self.rdtype, rdclass,
263 stuff = struct.pack("!H", end - start)
  /frameworks/av/services/camera/libcameraservice/api1/client2/
JpegProcessor.cpp 336 #pragma pack(push)
337 #pragma pack(1)
342 #pragma pack(pop)
  /cts/tools/utils/
monsoon.py 266 """ Pack a struct (without length or checksum) and send it. """
267 data = struct.pack(fmt, *args)
270 out = struct.pack("B", data_len) + data + struct.pack("B", checksum)
289 if result[-1] != struct.pack("B", checksum):
  /external/autotest/client/cros/cellular/mbim_compliance/tests/
cm_13.py 57 information_buffer=connect_info_structure.pack())
  /external/autotest/client/site_tests/platform_CompressedSwapPerf/
platform_CompressedSwapPerf.py 204 hog_sock.send(struct.pack(self.CMD_FORMAT, self.CMD_POKE))
212 hog_sock.send(struct.pack(self.CMD_FORMAT, self.CMD_BALLOON))
213 hog_sock.send(struct.pack(self.CMD_FORMAT, alloc_mb))
220 hog_sock.send(struct.pack(self.CMD_FORMAT, self.CMD_EXIT))
  /external/chromium-trace/catapult/telemetry/telemetry/internal/platform/
msr_server_win.py 87 self.wfile.write(struct.pack('Q', _ReadMsr(msr_number)))
  /external/chromium-trace/catapult/telemetry/third_party/webpagereplay/third_party/dns/rdtypes/ANY/
NSEC3PARAM.py 65 file.write(struct.pack("!BBHB", self.algorithm, self.flags,
  /external/fonttools/Lib/fontTools/ttLib/tables/
_h_h_e_a.py 40 return sstruct.pack(hheaFormat, self)
  /external/gptfdisk/
basicmbr.h 29 #pragma pack(1)
  /external/mdnsresponder/mDNSShared/
dnssd_ipc.h 110 // Structure packing macro. If we're not using GNUC, it's not fatal. Most compilers naturally pack the on-the-wire
161 # pragma pack(4)
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_common.h 38 const struct gl_pixelstore_attrib *pack, GLvoid * pixels);
  /external/mesa3d/src/mesa/state_tracker/
st_cb_drawpixels.c 40 #include "main/pack.h"
920 /* now pack the stencil (and Z) values in the dest format */
1338 struct gl_pixelstore_attrib pack, unpack; local
1432 struct gl_pixelstore_attrib pack = ctx->DefaultPacking; local
    [all...]
  /external/v8/tools/testrunner/server/
compression.py 47 payload = struct.pack('>i', len(compressed)) + compressed
  /frameworks/base/services/net/java/android/net/netlink/
StructNdMsg.java 128 public void pack(ByteBuffer byteBuffer) { method in class:StructNdMsg
StructNlAttr.java 119 public void pack(ByteBuffer byteBuffer) { method in class:StructNlAttr
StructNlMsgHdr.java 115 public void pack(ByteBuffer byteBuffer) { method in class:StructNlMsgHdr
  /frameworks/minikin/include/minikin/
FontFamily.h 66 static uint32_t pack(int variant, int weight, bool italic);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
fvec.h 23 #pragma pack(push,_CRT_PACKING)
27 #pragma pack(push,16)
248 #pragma pack(pop)
251 #pragma pack(pop)
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/test/test_ttk/
test_extensions.py 108 lscale.pack()
138 x.pack()
165 x.pack(expand=True, fill='both')
246 optmenu.pack()
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/test/test_ttk/
test_extensions.py 108 lscale.pack()
138 x.pack()
165 x.pack(expand=True, fill='both')
246 optmenu.pack()
  /prebuilts/misc/common/swig/include/2.0.11/perl5/
perlkw.swg 24 PERLBN(pack);
112 PERLBN(pack);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/test/test_ttk/
test_extensions.py 108 lscale.pack()
138 x.pack()
165 x.pack(expand=True, fill='both')
246 optmenu.pack()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/test/test_ttk/
test_extensions.py 108 lscale.pack()
138 x.pack()
165 x.pack(expand=True, fill='both')
246 optmenu.pack()
  /system/extras/verity/
build_verity_metadata.py 25 block = struct.pack("II256sI", MAGIC_NUMBER, VERSION, signature, table_len)
  /external/opencv3/modules/hal/include/opencv2/hal/
intrin_neon.hpp 255 #define OPENCV_HAL_IMPL_NEON_PACK(_Tpvec, _Tp, hreg, suffix, _Tpwvec, wsuffix, pack, op) \
256 inline _Tpvec v_##pack(const _Tpwvec& a, const _Tpwvec& b) \
261 inline void v_##pack##_store(_Tp* ptr, const _Tpwvec& a) \
267 _Tpvec v_rshr_##pack(const _Tpwvec& a, const _Tpwvec& b) \
274 void v_rshr_##pack##_store(_Tp* ptr, const _Tpwvec& a) \
280 OPENCV_HAL_IMPL_NEON_PACK(v_uint8x16, uchar, uint8x8_t, u8, v_uint16x8, u16, pack, n)
282 OPENCV_HAL_IMPL_NEON_PACK(v_int8x16, schar, int8x8_t, s8, v_int16x8, s16, pack, n)
283 OPENCV_HAL_IMPL_NEON_PACK(v_uint16x8, ushort, uint16x4_t, u16, v_uint32x4, u32, pack, n)
285 OPENCV_HAL_IMPL_NEON_PACK(v_int16x8, short, int16x4_t, s16, v_int32x4, s32, pack, n)
286 OPENCV_HAL_IMPL_NEON_PACK(v_uint32x4, unsigned, uint32x2_t, u32, v_uint64x2, u64, pack, n
    [all...]

Completed in 542 milliseconds

<<11121314151617181920>>