HomeSort by relevance Sort by last modified time
    Searched full:pack (Results 126 - 150 of 2304) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/llvm/test/CodeGen/SystemZ/
vec-perm-06.ll 1 ; Test vector pack.
5 ; Test a canonical v16i8 pack.
18 ; Test a reversed v16i8 pack.
31 ; Test a v16i8 pack with only the first operand being used.
44 ; Test a v16i8 pack with only the second operand being used.
58 ; Test a v16i8 pack with both operands being the same. This too is
72 ; Test a v16i8 pack in which some of the indices are don't care.
85 ; Test a v16i8 pack in which one of the operands is undefined and where
100 ; Test a canonical v8i16 pack.
111 ; Test a reversed v8i16 pack
    [all...]
  /external/mesa3d/src/mesa/main/
pbo.c 67 const struct gl_pixelstore_attrib *pack,
80 if (!_mesa_is_bufferobj(pack->BufferObj)) {
85 size = pack->BufferObj->Size;
106 start = _mesa_image_offset(dimensions, pack, width, height,
110 end = _mesa_image_offset(dimensions, pack, width, height,
221 ASSERT(unpack != &ctx->Pack); /* catch pack/unpack mismatch */
238 const struct gl_pixelstore_attrib *pack,
243 if (_mesa_is_bufferobj(pack->BufferObj)) {
244 /* pack into PBO *
    [all...]
texgetimage.c 42 #include "pack.h"
101 void *dest = _mesa_image_address(dimensions, &ctx->Pack, pixels,
106 _mesa_pack_depth_span(ctx, width, dest, type, depthRow, &ctx->Pack);
146 void *dest = _mesa_image_address(dimensions, &ctx->Pack, pixels,
151 if (ctx->Pack.SwapBytes) {
191 void *dest = _mesa_image_address(dimensions, &ctx->Pack, pixels,
201 if (!ctx->Pack.SwapBytes)
204 else if (ctx->Pack.SwapBytes) {
240 /* Decompress into temp float buffer, then pack into user buffer */
300 void *dest = _mesa_image_address(dimensions, &ctx->Pack, pixels
    [all...]
  /external/clang/test/Parser/
cxx0x-ambig.cpp 116 void g(S(...[sizeof(T)])); // expected-note {{here}} expected-warning {{ISO C++11 requires a parenthesized pack declaration to have a name}}
119 void h(T(...)); // function type, expected-error {{unexpanded parameter pack}}
120 void h(T...); // pack expansion, ok
123 void i(int(T, ...)); // function type, expected-error {{unexpanded parameter pack}}
124 void i(int(T, ...a)); // expected-error {{expected ')'}} expected-note {{to match}} expected-error {{unexpanded parameter pack}}
127 void j(T(int...)); // expected-error {{unexpanded parameter pack}}
128 void j(T(T...)); // expected-error {{unexpanded parameter pack}}
131 void l(int(&...)(T)); // expected-warning {{ISO C++11 requires a parenthesized pack declaration to have a name}}
132 void l(int(*...)(T)); // expected-warning {{ISO C++11 requires a parenthesized pack declaration to have a name}}
133 void l(int(S<int>::*...)(T)); // expected-warning {{ISO C++11 requires a parenthesized pack declaration to have a name}
    [all...]
  /external/clang/lib/Sema/
SemaTemplateVariadic.cpp 92 /// elements that are pack expansions.
150 /// \brief Suppress traversal of template argument pack expansions.
158 /// \brief Suppress traversal of template argument pack expansions.
167 /// parameter pack. In this case, the unexpanded pack can occur anywhere,
169 /// lambda, we don't propagate the 'contains unexpanded parameter pack' bit
180 // If any capture names a function parameter pack, that pack is expanded
200 /// \brief Determine whether it's possible for an unexpanded parameter pack to
224 // parameter pack, and we are done
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_struct.py 19 struct.pack('q', 5)
37 # SF bug 1530559. struct.pack raises TypeError where it used
41 got = struct.pack(format, number)
46 expected = struct.pack(format, int(number))
50 self.assertEqual((struct.pack('=i', 1)[0] == chr(0)), ISBIGENDIAN)
64 self.assertRaises(struct.error, struct.pack, 'iii', 3)
65 self.assertRaises(struct.error, struct.pack, 'i', 3, 3, 3)
66 self.assertRaises((TypeError, struct.error), struct.pack, 'i', 'foo')
67 self.assertRaises((TypeError, struct.error), struct.pack, 'P', 'foo')
69 s = struct.pack('ii', 1, 2
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_struct.py 19 struct.pack('q', 5)
37 # SF bug 1530559. struct.pack raises TypeError where it used
41 got = struct.pack(format, number)
46 expected = struct.pack(format, int(number))
50 self.assertEqual((struct.pack('=i', 1)[0] == chr(0)), ISBIGENDIAN)
64 self.assertRaises(struct.error, struct.pack, 'iii', 3)
65 self.assertRaises(struct.error, struct.pack, 'i', 3, 3, 3)
66 self.assertRaises((TypeError, struct.error), struct.pack, 'i', 'foo')
67 self.assertRaises((TypeError, struct.error), struct.pack, 'P', 'foo')
69 s = struct.pack('ii', 1, 2
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_struct.py 19 struct.pack('q', 5)
37 # SF bug 1530559. struct.pack raises TypeError where it used
41 got = struct.pack(format, number)
46 expected = struct.pack(format, int(number))
50 self.assertEqual((struct.pack('=i', 1)[0] == chr(0)), ISBIGENDIAN)
64 self.assertRaises(struct.error, struct.pack, 'iii', 3)
65 self.assertRaises(struct.error, struct.pack, 'i', 3, 3, 3)
66 self.assertRaises((TypeError, struct.error), struct.pack, 'i', 'foo')
67 self.assertRaises((TypeError, struct.error), struct.pack, 'P', 'foo')
69 s = struct.pack('ii', 1, 2
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_struct.py 19 struct.pack('q', 5)
37 # SF bug 1530559. struct.pack raises TypeError where it used
41 got = struct.pack(format, number)
46 expected = struct.pack(format, int(number))
50 self.assertEqual((struct.pack('=i', 1)[0] == chr(0)), ISBIGENDIAN)
64 self.assertRaises(struct.error, struct.pack, 'iii', 3)
65 self.assertRaises(struct.error, struct.pack, 'i', 3, 3, 3)
66 self.assertRaises((TypeError, struct.error), struct.pack, 'i', 'foo')
67 self.assertRaises((TypeError, struct.error), struct.pack, 'P', 'foo')
69 s = struct.pack('ii', 1, 2
    [all...]
  /external/pdfium/xfa/src/fgas/src/crt/
fx_memory.h 26 #pragma pack(push, 1)
35 #pragma pack(pop)
58 #pragma pack(push, 1)
71 #pragma pack(pop)
92 #pragma pack(push, 1)
116 #pragma pack(pop)
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dxva.h 28 #pragma pack(push, 1)
54 #pragma pack(pop)
101 #pragma pack(push, 1)
114 #pragma pack(pop)
206 #pragma pack(push, 1)
212 #pragma pack(pop)
  /external/fonttools/Lib/fontTools/ttLib/tables/
T_S_I__0.py 36 data = data + struct.pack(tsi0Format, index, textLength, textOffset)
37 data = data + struct.pack(tsi0Format, 0XFFFE, 0, -1409540300) # 0xABFC1F34
39 data = data + struct.pack(tsi0Format, index, textLength, textOffset)
  /external/lzma/C/
Ppmd.h 31 #pragma pack(push, 1)
32 /* Most compilers works OK here even without #pragma pack(push, 1), but some GCC compilers need it. */
53 #pragma pack(pop)
  /frameworks/opt/bitmap/src/com/android/bitmap/util/
Exif.java 48 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(jpeg, offset, 2, littleEndian)
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/
Exif.java 43 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(jpeg, offset, 2, littleEndian)
182 private static int pack(final InputStreamBuffer bytes, int offset, int length, method in class:Exif
    [all...]
  /external/freetype/src/truetype/
ttinterp.c 656 #undef PACK
657 #define PACK( x, y ) ( ( x << 4 ) | y )
666 /* SVTCA y */ PACK( 0, 0 ),
667 /* SVTCA x */ PACK( 0, 0 ),
668 /* SPvTCA y */ PACK( 0, 0 ),
669 /* SPvTCA x */ PACK( 0, 0 ),
670 /* SFvTCA y */ PACK( 0, 0 ),
671 /* SFvTCA x */ PACK( 0, 0 ),
672 /* SPvTL // */ PACK( 2, 0 ),
673 /* SPvTL + */ PACK( 2, 0 )
    [all...]
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/truetype/
ttinterp.c 640 #undef PACK
641 #define PACK( x, y ) ( ( x << 4 ) | y )
650 /* SVTCA y */ PACK( 0, 0 ),
651 /* SVTCA x */ PACK( 0, 0 ),
652 /* SPvTCA y */ PACK( 0, 0 ),
653 /* SPvTCA x */ PACK( 0, 0 ),
654 /* SFvTCA y */ PACK( 0, 0 ),
655 /* SFvTCA x */ PACK( 0, 0 ),
656 /* SPvTL // */ PACK( 2, 0 ),
657 /* SPvTL + */ PACK( 2, 0 )
    [all...]
  /external/pdfium/third_party/freetype/src/truetype/
ttinterp.c 649 #undef PACK
650 #define PACK( x, y ) ( ( x << 4 ) | y )
659 /* SVTCA y */ PACK( 0, 0 ),
660 /* SVTCA x */ PACK( 0, 0 ),
661 /* SPvTCA y */ PACK( 0, 0 ),
662 /* SPvTCA x */ PACK( 0, 0 ),
663 /* SFvTCA y */ PACK( 0, 0 ),
664 /* SFvTCA x */ PACK( 0, 0 ),
665 /* SPvTL // */ PACK( 2, 0 ),
666 /* SPvTL + */ PACK( 2, 0 )
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/rsa/tests/
test_pkcs1.py 17 message = struct.pack('>IIII', 0, 0, 0, 1)
30 message = struct.pack('>IIII', 0, 0, 0, 1)
47 message = struct.pack('>IIII', 0, 0, 0, 1)
89 message = struct.pack('>IIII', 0, 0, 0, 1)
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/
p5-0x.cpp 17 // - A function parameter pack that does not occur at the end of the
  /external/clang/test/CXX/temp/temp.param/
p9-0x.cpp 4 // template-parameter that is not a template parameter pack.
5 template<typename ...Types = int> // expected-error{{template parameter pack cannot have a default argument}}
8 template<int ...Values = 0> // expected-error{{template parameter pack cannot have a default argument}}
13 template<template<class> class ...Templates = vector> // expected-error{{template parameter pack cannot have a default argument}}
  /external/clang/test/CodeGen/
pragma-pack-3.c 8 #pragma pack(push, 2)
  /external/clang/test/Layout/
ms-x86-empty-layout.c 40 #pragma pack(1)
44 #pragma pack()
51 #pragma pack(1)
55 #pragma pack()
  /external/clang/test/Sema/
pragma-pack-4.c 6 #pragma pack(4)
  /external/eigen/cmake/
EigenDetermineVSServicePack.cmake 22 "The Visual Studio Release with Service Pack")

Completed in 2070 milliseconds

1 2 3 4 56 7 8 91011>>