/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
ws2dnet.h | 11 #pragma pack(push,ws2dnet,1) 115 #pragma pack(pop,ws2dnet)
|
xlocinfo.h | 13 #pragma pack(push,_CRT_PACKING) 98 #pragma pack(pop)
|
fdi.h | 131 #pragma pack(4) 242 #pragma pack (1) 253 #pragma pack () 267 #pragma pack()
|
/prebuilts/ndk/9/platforms/android-21/arch-arm/usr/include/linux/ |
cciss_defs.h | 62 #pragma pack(1) 146 #pragma pack()
|
/prebuilts/ndk/9/platforms/android-21/arch-arm64/usr/include/linux/ |
cciss_defs.h | 62 #pragma pack(1) 146 #pragma pack()
|
/prebuilts/ndk/9/platforms/android-21/arch-mips/usr/include/linux/ |
cciss_defs.h | 62 #pragma pack(1) 146 #pragma pack()
|
/prebuilts/ndk/9/platforms/android-21/arch-mips64/usr/include/linux/ |
cciss_defs.h | 62 #pragma pack(1) 146 #pragma pack()
|
/prebuilts/ndk/9/platforms/android-21/arch-x86/usr/include/linux/ |
cciss_defs.h | 62 #pragma pack(1) 146 #pragma pack()
|
/prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/linux/ |
cciss_defs.h | 62 #pragma pack(1) 146 #pragma pack()
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/ |
aepack.py | 4 pack(x) converts a Python object to an AEDesc object 76 ae.AEPutParamDesc(keystr, pack(value)) 78 def pack(x, forcetype = None): function 79 """Pack a python object into an AE descriptor""" 85 return pack(x).AECoerceDesc(forcetype) 99 return AE.AECreateDesc('long', struct.pack('l', x)) 101 return AE.AECreateDesc('doub', struct.pack('d', x)) 112 list.AEPutDesc(0, pack(item)) 118 #record.AEPutParamDesc(key, pack(value)) 257 pdata = pack(data [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_ioctl.py | 79 struct.pack("I", termios.TIOCSWINSZ)) 81 our_winsz = struct.pack("HHHH",80,25,0,0)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_ioctl.py | 79 struct.pack("I", termios.TIOCSWINSZ)) 81 our_winsz = struct.pack("HHHH",80,25,0,0)
|
/external/fonttools/Lib/fontTools/ttLib/tables/ |
E_B_L_C_.py | 118 dataList.append(sstruct.pack(eblcHeaderFormat, self)) 183 data = struct.pack(indexSubHeaderFormat, i.firstGlyphIndex, i.lastGlyphIndex, i.additionalOffsetToIndexSubtable) 190 data = sstruct.pack(bitmapSizeTableFormatPart1, curTable) 194 data = sstruct.pack(sbitLineMetricsFormat, metricObj) 196 data = sstruct.pack(bitmapSizeTableFormatPart2, curTable) 346 return struct.pack(indexSubHeaderFormat, self.indexFormat, self.imageFormat, self.imageDataOffset) 466 # Now that all the locations are collected, pack them appropriately into 477 dataList += [struct.pack(dataFormat, offsetValue) for offsetValue in offsetArray] 480 dataList.append(struct.pack(dataFormat, 0)) 536 dataList.append(struct.pack(">L", self.imageSize) [all...] |
F_F_T_M_.py | 23 data = sstruct.pack(FFTMFormat, self)
|
_k_e_r_n.py | 57 data = struct.pack(">ll", fl2fi(self.version, 16), nTables) 59 data = struct.pack(">HH", self.version, nTables) 120 data = struct.pack(">HHHH", nPairs, searchRange, entrySelector, rangeShift) 126 data = data + struct.pack(">HHh", left, right, value) 127 return struct.pack(">HHH", self.version, len(data) + 6, self.coverage) + data
|
_c_m_a_p.py | 60 data = struct.pack(">HH", self.tableVersion, numSubTables) 74 data = data + struct.pack(">HHl", table.platformID, table.platEncID, offset) 197 return struct.pack(">HHH", 0, 262, self.language) + self.data 206 data = struct.pack(">HHH", 0, 262, self.language) + glyphIdArray.tostring() 383 return struct.pack(">HHH", self.format, self.length, self.language) + self.data 515 dataList = [struct.pack(">HHH", 2, length, self.language)] 517 dataList.append(struct.pack(">H", index*8)) 519 dataList.append(struct.pack(subHeaderFormat, subhead.firstCode, subhead.entryCount, subhead.idDelta, subhead.idRangeOffset)) 522 dataList.append(struct.pack(">H", gi)) 702 return struct.pack(">HHH", self.format, self.length, self.language) + self.dat [all...] |
/external/chromium_org/chrome/browser/resources/chromeos/ |
sim_unlock.css | 60 -webkit-box-pack: center; 64 -webkit-box-pack: center;
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/ |
intel_pixel.h | 45 const struct gl_pixelstore_attrib *pack,
|
/external/clang/test/CodeGen/ |
decl.c | 88 #pragma pack(push, 2)
|
/external/ltrace/ |
param.h | 50 /* This parameter pack expands to a list of ordinary 53 * parameter pack. ioctl or ptrace are two examples that 57 /* This parameter pack represents a vararg argument. */ 94 } pack; member in union:param::__anon10328 106 /* Initialize parameter pack PARAM. ARGS is an array of expressions 107 * with parameters. ARGS is owned and released by the pack if 110 * When the parameter pack should be expanded, those expressions are 115 * its INFOP argument to a type of the next parameter in the pack. 116 * When there are no more parameters in the pack, the NEXT callback 139 /* Start enumerating types in parameter pack. This evaluates th [all...] |
/external/mesa3d/src/mesa/drivers/dri/intel/ |
intel_pixel.h | 45 const struct gl_pixelstore_attrib *pack,
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/ |
tkSimpleDialog.py | 65 body.pack(padx=5, pady=5) 114 w.pack(side=LEFT, padx=5, pady=5) 116 w.pack(side=LEFT, padx=5, pady=5) 121 box.pack()
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
xdrlib.py | 40 """Pack various data representations into a buffer.""" 54 self.__buf.write(struct.pack('>L', x)) 57 self.__buf.write(struct.pack('>l', x)) 72 try: self.__buf.write(struct.pack('>f', x)) 77 try: self.__buf.write(struct.pack('>d', x))
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/ |
tkSimpleDialog.py | 65 body.pack(padx=5, pady=5) 114 w.pack(side=LEFT, padx=5, pady=5) 116 w.pack(side=LEFT, padx=5, pady=5) 121 box.pack()
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
xdrlib.py | 40 """Pack various data representations into a buffer.""" 54 self.__buf.write(struct.pack('>L', x)) 57 self.__buf.write(struct.pack('>l', x)) 72 try: self.__buf.write(struct.pack('>f', x)) 77 try: self.__buf.write(struct.pack('>d', x))
|