Searched refs:pack (Results 1 - 13 of 13) sorted by relevance

/frameworks/native/opengl/tools/glgen/src/
H A DCodeEmitter.java19 void setVersion(int version, boolean ext, boolean pack); argument
H A DJsr239CodeEmitter.java69 public void setVersion(int version, boolean ext, boolean pack) { argument
75 (pack ? mJava11ExtPackInterfaceStream :
H A DGenerateGL.java34 private static void emit(int version, boolean ext, boolean pack, argument
68 emitter.setVersion(version, ext, pack);
/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/av/media/libstagefright/codecs/common/include/
H A DvoAMRWB.h29 #pragma pack(push, 4)
80 #pragma pack(pop)
/frameworks/base/graphics/java/android/graphics/
H A DAtlas.java82 * @param type The algorithm to use to pack rectangles in the atlas
97 * @param type The algorithm to use to pack rectangles in the atlas
112 * @param width The width of the rectangle to pack in the atlas
113 * @param height The height of the rectangle to pack in the atlas
118 * @see #pack(int, int, Atlas.Entry)
120 public Entry pack(int width, int height) { method in class:Atlas
121 return pack(width, height, null);
127 * @param width The width of the rectangle to pack in the atlas
128 * @param height The height of the rectangle to pack in the atlas
135 * @see #pack(in
137 public Entry pack(int width, int height, Entry entry) { method in class:Atlas
164 abstract Entry pack(int width, int height, Entry entry); method in class:Atlas.Policy
280 Entry pack(int width, int height, Entry entry) { method in class:Atlas.SlicePolicy
[all...]
/frameworks/av/media/libstagefright/codecs/vorbis/dec/
H A DSoftVorbis.cpp344 ogg_packet pack; local
345 pack.packet = &ref;
346 pack.bytes = ref.length;
347 pack.b_o_s = 0;
348 pack.e_o_s = 0;
349 pack.granulepos = 0;
350 pack.packetno = 0;
354 int err = vorbis_dsp_synthesis(mState, &pack, 1);
/frameworks/base/media/java/android/media/
H A DFocusRequester.java84 boolean hasSamePackage(String pack) { argument
86 return mPackageName.compareTo(pack) == 0;
139 + " -- pack: " + mPackageName
/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DJpegProcessor.cpp297 #pragma pack(push)
298 #pragma pack(1)
303 #pragma pack(pop)
/frameworks/base/services/java/com/android/server/
H A DAssetAtlasService.java88 // number of pixels we want to be able to pack in the atlas
244 * @param atlas The atlas to pack the bitmaps into
274 if (atlas.pack(bitmap.getWidth(), bitmap.getHeight(), entry) != null) {
275 // We have more bitmaps to pack than the current configuration
388 * Finds the best atlas configuration to pack the list of supplied bitmaps.
668 * @param bitmaps The list of bitmaps to pack in the atlas
682 // Minimum number of pixels we want to be able to pack
705 // If we were able to pack everything let's stop here
727 if (atlas.pack(bitmap.getWidth(), bitmap.getHeight(), entry) != null) {
H A DBackupManagerService.java2634 FullBackupRunner(PackageInfo pack, IBackupAgent agent, ParcelFileDescriptor pipe, argument
2636 mPackage = pack;
/frameworks/base/core/java/android/widget/
H A DGridLayout.java1301 return assoc.pack();
1337 return result.pack();
2146 public PackedMap<K, V> pack() { method in class:GridLayout.Assoc
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java1190 return assoc.pack();
1226 return result.pack();
2029 public PackedMap<K, V> pack() { method in class:GridLayout.Assoc

Completed in 294 milliseconds