Searched refs:struct (Results 176 - 200 of 601) sorted by relevance

1234567891011>>

/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/templates/
H A Dtemplate_22-1.in67 struct sigaction act;
H A Dtemplate_25-1.in65 struct sigaction act;
H A Dtemplate_4-2.in47 struct sigaction act;
H A Dtemplate_8-1.in9 that if signals in the sa_mask (passed in the sigaction struct of the
41 struct sigaction act;
/external/tensorflow/tensorflow/go/
H A Dstatus.go28 type status struct {
/external/walt/ios/WALT/
H A DWALTAppDelegate.m32 struct utsname systemInfo;
/external/autotest/client/cros/cellular/mbim_compliance/
H A Dmbim_channel.py8 import struct namespace
347 if len(fragment) < struct.calcsize(self.MESSAGE_HEADER_FORMAT):
353 message_type, _, transaction_id = struct.unpack_from(
358 fragment = fragment[struct.calcsize(self.MESSAGE_HEADER_FORMAT):]
359 if len(fragment) < struct.calcsize(self.FRAGMENT_HEADER_FORMAT):
366 total_fragments, current_fragment = struct.unpack_from(
H A Dmbim_channel_unittest.py9 import struct namespace
346 packet = self._create_buffer(struct.calcsize(packet_format))
347 struct.pack_into(packet_format,
351 struct.calcsize(packet_format),
360 fragment = self._create_buffer(struct.calcsize(fragment_header_format))
361 struct.pack_into(fragment_header_format,
365 struct.calcsize(fragment_header_format),
/external/curl/tests/libtest/
H A Dmk-lib1521.pl61 struct data {
147 struct curl_slist *slist = NULL;
148 struct curl_httppost *httppost = NULL;
151 struct data object;
157 struct curl_certinfo *certinfo;
158 struct curl_tlssessioninfo *tlssession;
/external/libmojo/mojo/public/tools/bindings/pylib/mojom/generate/
H A Dpack.py10 # ps = pack.PackedStruct(struct)
14 # Size of struct header in bytes: num_bytes [4B] + version [4B].
74 index: the position of the original field in the struct.
106 """Returns the payload size (not including struct header) if |field| is the
117 def __init__(self, struct):
118 self.struct = struct
126 if (len(struct.fields) == 0):
132 for index, field in enumerate(struct.fields):
153 "a struct
[all...]
/external/mesa3d/src/gallium/drivers/svga/svgadump/
H A Dsvga_dump.py62 assert self.decl.class_type in ('struct', 'union')
228 struct, count = body[i]
231 print ' dump_%s((const %s *)body);' % (struct, struct)
232 print ' body += sizeof(%s);' % struct
328 for struct, count in body:
329 names.add(struct)
/external/python/cpython2/Lib/plat-mac/
H A DPixMapWrapper.py14 import struct namespace
19 # PixMap data structure element format (as used with struct)
72 self._header = struct.pack("lhhhhhhhlllhhhhlll",
89 + struct.pack(fmt, bytes) \
90 + self._header[offset + struct.calcsize(fmt):]
96 return struct.unpack(fmt, self._header[offset:offset+struct.calcsize(fmt)])[0]
H A Dcfmfile.py13 import struct namespace
86 self.memberCount) = struct.unpack("8l", data[:32])
95 data = struct.pack("8l", 0, 0, self.version, 0, 0, 0, 0, self.memberCount)
123 self.memberSize,) = struct.unpack("4lhBB4lh", data[4:42])
129 data = data + struct.pack("4lhBB4l",
144 data = data + struct.pack("hb", self.memberSize, len(self.name))
/external/python/cpython3/Lib/test/
H A Dtest_fcntl.py5 import struct namespace
27 if struct.calcsize('l') == 8:
33 lockdata = struct.pack(off_t + off_t + pid_t + 'hh', 0, 0, 0,
36 lockdata = struct.pack('qqihhi', 0, 0, 0, fcntl.F_WRLCK, 0, 0)
38 lockdata = struct.pack('hhlllii', fcntl.F_WRLCK, 0, 0, 0, 0, 0, 0)
40 lockdata = struct.pack('hh'+start_len+'hh', fcntl.F_WRLCK, 0, 0, 0, 0, 0)
43 print('struct.pack: ', repr(lockdata))
/external/scapy/scapy/arch/
H A Dlinux.py19 import struct namespace
105 return struct.unpack("16xh6s8x",get_if(iff,SIOCGIFHWADDR))
131 ifflags = struct.unpack("16xH14x",get_if(i,SIOCGIFFLAGS))[0]
168 mreq = struct.pack("IHH8s", get_if_index(iff), PACKET_MR_PROMISC, 0, b"")
191 struct.pack("iL", len(names), names.buffer_info()[0]))
194 out = struct.unpack("iL", ifreq)[0]
205 ifreq = ioctl(sck, SIOCGIFADDR, struct.pack("16s16x", ifname))
206 ifaddr = struct.unpack(">I", ifreq[20:24])[0]
207 ifreq = ioctl(sck, SIOCGIFNETMASK, struct.pack("16s16x", ifname))
208 msk = struct
[all...]
/external/webrtc/tools/matlab/
H A DparseLog.m5 % filename, into a struct with each column name as a field, and with the
14 % parsed: A struct containing each column parsed from the input file
37 parsed = struct;
/external/fonttools/Lib/fontTools/ttLib/tables/
H A D_g_l_y_f.py15 import struct namespace
359 numInstructions, = struct.unpack(">h", data[:2])
375 instructionLength, = struct.unpack(">h", data[:2])
424 # Warning: deep Python trickery going on. We use the struct module to unpack
426 # unpack the coordinates in one struct.unpack() call.
453 xDataLen = struct.calcsize(xFormat)
454 yDataLen = struct.calcsize(yFormat)
457 xCoordinates = struct.unpack(xFormat, data[:xDataLen])
458 yCoordinates = struct.unpack(yFormat, data[xDataLen:xDataLen+yDataLen])
474 data = data + struct
[all...]
/external/fonttools/Tools/fontTools/ttLib/tables/
H A D_g_l_y_f.py15 import struct namespace
359 numInstructions, = struct.unpack(">h", data[:2])
375 instructionLength, = struct.unpack(">h", data[:2])
424 # Warning: deep Python trickery going on. We use the struct module to unpack
426 # unpack the coordinates in one struct.unpack() call.
453 xDataLen = struct.calcsize(xFormat)
454 yDataLen = struct.calcsize(yFormat)
457 xCoordinates = struct.unpack(xFormat, data[:xDataLen])
458 yCoordinates = struct.unpack(yFormat, data[xDataLen:xDataLen+yDataLen])
474 data = data + struct
[all...]
/external/libunwind/include/
H A Dlibunwind-common.h.in95 typedef struct unw_cursor
117 typedef struct unw_addr_space *unw_addr_space_t;
125 typedef struct unw_proc_info
144 typedef struct unw_accessors
194 typedef struct unw_save_loc
/external/skia/experimental/go-skia/
H A Dskia.go35 type Surface struct {
74 type Image struct {
96 type Canvas struct {
123 type Paint struct {
154 type Path struct {
/external/skqp/experimental/go-skia/
H A Dskia.go35 type Surface struct {
74 type Image struct {
96 type Canvas struct {
123 type Paint struct {
154 type Path struct {
/external/swiftshader/third_party/LLVM/lib/Support/Windows/
H A DSignals.inc49 typedef struct _IMAGEHLP_LINE64 {
57 typedef struct _IMAGEHLP_SYMBOL64 {
66 typedef struct _tagADDRESS64 {
72 typedef struct _KDHELP64 {
87 typedef struct _tagSTACKFRAME64 {
/external/compiler-rt/lib/sanitizer_common/scripts/
H A Dsancov.py10 import struct namespace
50 magic_words = struct.unpack('II', magic_bytes);
71 s = struct.unpack_from(TypeCodeForStruct(bits) * (size * 8 / bits), f.read(size))
101 a = struct.pack(TypeCodeForStruct(bits) * len(s), *s)
113 pid, module_length, blob_size = struct.unpack('iII', header)
155 pcs = struct.unpack_from(TypeCodeForStruct(bits) * (size * 8 / bits), f.read(size))
174 pc_buffer = struct.pack(TypeCodeForStruct(bits) * len(pc_list), *sorted_pc_list)
/external/pcre/dist2/src/
H A Dpcre2.h.generic322 struct pcre2_real_general_context; \
323 typedef struct pcre2_real_general_context pcre2_general_context; \
325 struct pcre2_real_compile_context; \
326 typedef struct pcre2_real_compile_context pcre2_compile_context; \
328 struct pcre2_real_match_context; \
329 typedef struct pcre2_real_match_context pcre2_match_context; \
331 struct pcre2_real_code; \
332 typedef struct pcre2_real_code pcre2_code; \
334 struct pcre2_real_match_data; \
335 typedef struct pcre2_real_match_dat
[all...]
H A Dpcre2.h.in322 struct pcre2_real_general_context; \
323 typedef struct pcre2_real_general_context pcre2_general_context; \
325 struct pcre2_real_compile_context; \
326 typedef struct pcre2_real_compile_context pcre2_compile_context; \
328 struct pcre2_real_match_context; \
329 typedef struct pcre2_real_match_context pcre2_match_context; \
331 struct pcre2_real_code; \
332 typedef struct pcre2_real_code pcre2_code; \
334 struct pcre2_real_match_data; \
335 typedef struct pcre2_real_match_dat
[all...]

Completed in 714 milliseconds

1234567891011>>