Searched defs:pack (Results 1 - 18 of 18) sorted by relevance

/frameworks/base/core/java/android/net/netlink/
H A DStructNlMsgErr.java55 public void pack(ByteBuffer byteBuffer) { method in class:StructNlMsgErr
61 msg.pack(byteBuffer);
H A DStructNlAttr.java119 public void pack(ByteBuffer byteBuffer) { method in class:StructNlAttr
H A DStructNlMsgHdr.java115 public void pack(ByteBuffer byteBuffer) { method in class:StructNlMsgHdr
H A DStructNdMsg.java128 public void pack(ByteBuffer byteBuffer) { method in class:StructNdMsg
H A DRtNetlinkNeighborMessage.java133 nlmsghdr.pack(byteBuffer);
136 ndmsg.pack(byteBuffer);
165 msg.pack(byteBuffer);
224 nlAttr.pack(byteBuffer);
227 public void pack(ByteBuffer byteBuffer) { method in class:RtNetlinkNeighborMessage
228 getHeader().pack(byteBuffer) ;
229 mNdmsg.pack(byteBuffer);
/frameworks/native/opengl/tools/glgen/src/
H A DCodeEmitter.java19 void setVersion(int version, boolean ext, boolean pack); argument
H A DGenerateGL.java34 private static void emit(int version, boolean ext, boolean pack, argument
68 emitter.setVersion(version, ext, pack);
H A DJsr239CodeEmitter.java69 public void setVersion(int version, boolean ext, boolean pack) { argument
75 (pack ? mJava11ExtPackInterfaceStream :
/frameworks/opt/bitmap/src/com/android/bitmap/util/
H A DExif.java48 Also, the most we ever read backwards is 4 bytes. pack() reads backwards if the encoding
51 int tag = pack(jpeg, offset, 4, false);
52 count = pack(jpeg, offset - 2, 2, littleEndian);
107 length = pack(jpeg, offset, 2, false);
115 pack(jpeg, offset + 2, 4, false) == 0x45786966 &&
116 pack(jpeg, offset + 6, 2, false) == 0) {
135 int tag = pack(jpeg, offset, 4, false);
143 int count = pack(jpeg, offset + 4, 4, littleEndian) + 2;
155 count = pack(jpeg, offset - 2, 2, littleEndian);
159 tag = pack(jpe
187 private static int pack(final InputStreamBuffer bytes, int offset, int length, method in class:Exif
[all...]
/frameworks/opt/photoviewer/src/com/android/ex/photo/util/
H A DExif.java43 Also, the most we ever read backwards is 4 bytes. pack() reads backwards if the encoding
46 int tag = pack(jpeg, offset, 4, false);
47 count = pack(jpeg, offset - 2, 2, littleEndian);
102 length = pack(jpeg, offset, 2, false);
110 pack(jpeg, offset + 2, 4, false) == 0x45786966 &&
111 pack(jpeg, offset + 6, 2, false) == 0) {
130 int tag = pack(jpeg, offset, 4, false);
138 int count = pack(jpeg, offset + 4, 4, littleEndian) + 2;
150 count = pack(jpeg, offset - 2, 2, littleEndian);
154 tag = pack(jpe
182 private static int pack(final InputStreamBuffer bytes, int offset, int length, method in class:Exif
[all...]
/frameworks/minikin/tools/
H A Dmk_hyb_file.py123 return b''.join(struct.pack('B', x) for x in pattern)
191 def pack(self, node_list, ch_map, use_node=False): member in class:Hyph
308 return struct.pack('<6I', *data)
321 result = [struct.pack('<3I', 0, min_ch, max_ch + 1)]
323 result.append(struct.pack('<B', b))
327 result = [struct.pack('<2I', 1, len(ch_map))]
330 result.append(struct.pack('<I', data))
346 result = [struct.pack('<6I', 0, char_mask, link_shift, link_mask, pattern_shift, n_trie)]
365 result.append(struct.pack('<I', packed))
394 result = [struct.pack('<
[all...]
/frameworks/av/media/libstagefright/codecs/vorbis/dec/
H A DSoftVorbis.cpp345 ogg_packet pack; local
346 pack.packet = &ref;
347 pack.bytes = ref.length;
348 pack.b_o_s = 0;
349 pack.e_o_s = 0;
350 pack.granulepos = 0;
351 pack.packetno = 0;
356 int err = vorbis_dsp_synthesis(mState, &pack, 1);
/frameworks/base/graphics/java/android/graphics/
H A DAtlas.java77 * @param type The algorithm to use to pack rectangles in the atlas
92 * @param type The algorithm to use to pack rectangles in the atlas
107 * @param width The width of the rectangle to pack in the atlas
108 * @param height The height of the rectangle to pack in the atlas
113 * @see #pack(int, int, Atlas.Entry)
115 public Entry pack(int width, int height) { method in class:Atlas
116 return pack(width, height, null);
122 * @param width The width of the rectangle to pack in the atlas
123 * @param height The height of the rectangle to pack in the atlas
130 * @see #pack(in
132 public Entry pack(int width, int height, Entry entry) { method in class:Atlas
159 abstract Entry pack(int width, int height, Entry entry); method in class:Atlas.Policy
273 Entry pack(int width, int height, Entry entry) { method in class:Atlas.SlicePolicy
[all...]
/frameworks/base/services/core/java/com/android/server/audio/
H A DFocusRequester.java115 boolean hasSamePackage(String pack) { argument
117 return mPackageName.compareTo(pack) == 0;
193 + " -- pack: " + mPackageName
/frameworks/av/media/libstagefright/
H A DOggExtractor.cpp904 ogg_packet pack; local
905 pack.packet = &ref;
906 pack.bytes = ref.length;
907 pack.b_o_s = 0;
908 pack.e_o_s = 0;
909 pack.granulepos = 0;
910 pack.packetno = 0;
912 return vorbis_packet_blocksize(&mVi, &pack);
/frameworks/base/core/java/android/widget/
H A DGridLayout.java1289 return assoc.pack();
1327 return result.pack();
2265 public PackedMap<K, V> pack() { method in class:GridLayout.Assoc
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java1184 return assoc.pack();
1222 return result.pack();
2159 public PackedMap<K, V> pack() { method in class:GridLayout.Assoc
/frameworks/base/services/backup/java/com/android/server/backup/
H A DBackupManagerService.java3304 FullBackupRunner(PackageInfo pack, IBackupAgent agent, ParcelFileDescriptor pipe, argument
3307 mPackage = pack;

Completed in 628 milliseconds