HomeSort by relevance Sort by last modified time
    Searched full:pack (Results 1 - 25 of 938) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Sema/
pragma-pack.c 3 /* expected-warning {{value of #pragma pack(show) == 8}} */ #pragma pack(show)
4 /* expected-warning {{expected #pragma pack parameter to be}} */ #pragma pack(3)
5 /* expected-warning {{value of #pragma pack(show) == 8}} */ #pragma pack(show)
6 #pragma pack(4)
7 /* expected-warning {{value of #pragma pack(show) == 4}} */ #pragma pack(show)
8 #pragma pack() // resets to defaul
    [all...]
pragma-pack-2.c 5 #pragma pack(4)
14 #pragma pack(push, 2)
20 #pragma pack(pop)
24 #pragma pack(push, 2)
26 #pragma pack(pop)
34 #pragma pack(push, 2)
36 #pragma pack(pop)
43 #pragma pack(push, 2)
45 #pragma pack(pop)
50 #pragma pack(push, 2
    [all...]
pragma-pack-3.c 5 #pragma pack(push, 1)
8 #pragma pack(push, 4)
11 // Note that this differs from gcc; pack() in gcc appears to pop the
14 // for example changing this to pack(8), I don't even understand what gcc
17 #pragma pack()
20 #pragma pack(pop)
28 #pragma pack(pop)
pragma-pack-and-options-align.c 3 // Check that #pragma pack and #pragma options share the same stack.
5 #pragma pack(push, 1)
27 #pragma pack(pop)
33 #pragma pack(pop)
42 /* expected-warning {{#pragma pack(pop, ...) failed: stack empty}} */ #pragma pack(pop)
pragma-align-packed.c 3 #pragma pack(push, 1)
9 #pragma pack(pop)
25 #pragma pack(1)
  /external/clang/test/Parser/
pragma-pack.c 6 /* expected-warning {{missing '(' after '#pragma pack'}}*/ #pragma pack 10
7 #pragma pack()
8 #pragma pack(8)
10 /*expected-warning {{unknown action for '#pragma pack'}}*/ #pragma pack(hello)
11 #pragma pack(push)
12 #pragma pack(pop)
14 /* expected-warning {{expected integer or identifier in '#pragma pack'}}*/ #pragma pack(push,
    [all...]
  /external/clang/test/Preprocessor/
_Pragma-location.c 3 #define push _Pragma ("pack(push)")
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
p5.cpp 6 // A parameter pack whose name appears within the pattern of a pack
7 // expansion is expanded by that pack expansion. An appearance of the
8 // name of a parameter pack is only expanded by the innermost
9 // enclosing pack expansion. The pattern of a pack expansion shall
11 // pack expansion.
15 typedef pair<Types, int...> expand_no_packs; // expected-error{{pack expansion does not contain any unexpanded parameter packs}}
16 typedef pair<pair<Types..., int>..., int> expand_with_expanded_nested; // expected-error{{pack expansion does not contain any unexpanded parameter packs}}
19 // All of the parameter packs expanded by a pack expansion shall hav
    [all...]
parameter-matching.cpp 3 // Check for template type parameter pack (mis-)matches with template
8 template<typename ...T> struct X1t; // expected-note{{previous template type parameter pack declared here}}
9 template<typename T> struct X1t; // expected-error{{template type parameter conflicts with previous template type parameter pack}}
12 template<typename ...T> struct X2t; // expected-error{{template type parameter pack conflicts with previous template type parameter}}
17 template<template<typename ...T> class> struct X1t_intt; // expected-note{{previous template type parameter pack declared here}}
18 template<template<typename T> class> struct X1t_intt; // expected-error{{template type parameter conflicts with previous template type parameter pack}}
21 template<template<typename ...T> class> struct X2t_intt; // expected-error{{template type parameter pack conflicts with previous template type parameter}}
23 template<int ...Values> struct X1nt; // expected-note{{previous non-type template parameter pack declared here}}
24 template<int Values> struct X1nt; // expected-error{{non-type template parameter conflicts with previous non-type template parameter pack}}
27 template<template<class T> class...> class X1tt; // expected-error{{template template parameter pack conflicts with previous template template parameter}
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/digests/
SHA512Digest.java 3 import org.bouncycastle.crypto.util.Pack;
54 Pack.longToBigEndian(H1, out, outOff);
55 Pack.longToBigEndian(H2, out, outOff + 8);
56 Pack.longToBigEndian(H3, out, outOff + 16);
57 Pack.longToBigEndian(H4, out, outOff + 24);
58 Pack.longToBigEndian(H5, out, outOff + 32);
59 Pack.longToBigEndian(H6, out, outOff + 40);
60 Pack.longToBigEndian(H7, out, outOff + 48);
61 Pack.longToBigEndian(H8, out, outOff + 56);
SHA384Digest.java 3 import org.bouncycastle.crypto.util.Pack;
55 Pack.longToBigEndian(H1, out, outOff);
56 Pack.longToBigEndian(H2, out, outOff + 8);
57 Pack.longToBigEndian(H3, out, outOff + 16);
58 Pack.longToBigEndian(H4, out, outOff + 24);
59 Pack.longToBigEndian(H5, out, outOff + 32);
60 Pack.longToBigEndian(H6, out, outOff + 40);
  /external/clang/test/CodeGen/
pragma-pack-1.c 4 #pragma pack(4)
  /external/clang/test/SemaCXX/
pragma-pack.cpp 9 #pragma pack(push, 1)
13 #pragma pack(pop)
26 #pragma pack(push, 1)
30 #pragma pack(pop)
  /external/llvm/test/FrontendC/
2007-09-12-PragmaPack.c 5 #pragma pack(push, 1)
24 #pragma pack(pop)
2007-04-05-PackedStruct.c 3 #pragma pack(push, 2)
2007-09-28-PackedUnionMember.c 3 #pragma pack(push, 2)
16 #pragma pack(pop)
2009-06-18-StaticInitTailPadPack.c 5 #pragma pack(push, 2)
  /external/llvm/test/FrontendC++/
2009-09-09-packed-layout.cpp 7 #pragma pack(push, 1)
12 #pragma pack(pop)
2007-04-10-PackedUnion.cpp 4 #pragma pack(push, 2)
15 #pragma pack(pop)
2007-10-01-StructResize.cpp 3 #pragma pack(4)
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/
p13.cpp 4 // pack is a function parameter pack.
12 // template-parameter-list and the parameter pack is a template
13 // parameter pack; see 14.1. -- end note ]
40 // expected-error{{data member type contains unexpanded parameter pack}}
43 // The type T of the declarator-id of the function parameter pack
44 // shall contain a template parameter pack; each template parameter
45 // pack in T is expanded by the function parameter pack.
47 void f4(T ...args); // expected-error{{type 'T' of function parameter pack does not contain any unexpanded parameter packs}
    [all...]
  /frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
RenameClassAdapterTest.java 37 "com.pack.Old",
41 "com.pack.Old$Inner",
66 assertEquals("Lorg.blah.New;", mOuter.renameTypeDesc("Lcom.pack.Old;"));
67 assertEquals("Lorg.blah.New$Inner;", mInner.renameTypeDesc("Lcom.pack.Old$Inner;"));
69 assertEquals("Lorg.blah.New$Other;", mOuter.renameTypeDesc("Lcom.pack.Old$Other;"));
70 assertEquals("Lorg.blah.New$Other;", mInner.renameTypeDesc("Lcom.pack.Old$Other;"));
73 assertEquals("[Lorg.blah.New;", mOuter.renameTypeDesc("[Lcom.pack.Old;"));
74 assertEquals("[[Lorg.blah.New;", mOuter.renameTypeDesc("[[Lcom.pack.Old;"));
76 assertEquals("[Lorg.blah.New;", mInner.renameTypeDesc("[Lcom.pack.Old;"));
77 assertEquals("[[Lorg.blah.New;", mInner.renameTypeDesc("[[Lcom.pack.Old;"))
    [all...]
  /external/kernel-headers/original/asm-arm/
statfs.h 25 * Let's pack it so the padding goes away to simplify dual ABI support.
26 * Note that user space does NOT have to pack this structure.
  /development/tools/emulator/opengl/system/GLESv2_enc/
GL2EncoderUtils.cpp 21 size_t pixelDataSize(void *self, GLsizei width, GLsizei height, GLenum format, GLenum type, int pack)
25 return ctx->state()->pixelDataSize(width, height, format, type, pack);
28 size_t pixelDataSize3D(void *self, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, int pack)
30 size_t layerSize = pixelDataSize(self, width, height, format, type, pack);
  /external/clang/test/CXX/expr/expr.unary/expr.sizeof/
p5-0x.cpp 30 static const unsigned value = sizeof...(Value); // expected-error{{'Value' does not refer to the name of a parameter pack}}
33 template<typename ...Types> // expected-note{{parameter pack 'Types' declared here}}
35 static const unsigned value = sizeof... Type; // expected-error{{missing parentheses around the size of parameter pack 'Type'}} \
36 // expected-error{{Type' does not refer to the name of a parameter pack; did you mean 'Types'?}}

Completed in 1140 milliseconds

1 2 3 4 5 6 7 8 91011>>