HomeSort by relevance Sort by last modified time
    Searched refs:p8 (Results 1 - 25 of 212) sorted by null

1 2 3 4 5 6 7 8 9

  /external/boringssl/src/crypto/x509/
x509.c 108 X509_ALGOR **pa, PKCS8_PRIV_KEY_INFO *p8) {
110 *ppkalg = p8->pkeyalg->algorithm;
113 if (p8->pkey->type == V_ASN1_OCTET_STRING) {
114 p8->broken = PKCS8_OK;
116 *pk = p8->pkey->value.octet_string->data;
117 *ppklen = p8->pkey->value.octet_string->length;
119 } else if (p8->pkey->type == V_ASN1_SEQUENCE) {
120 p8->broken = PKCS8_NO_OCTET;
122 *pk = p8->pkey->value.sequence->data;
123 *ppklen = p8->pkey->value.sequence->length
    [all...]
  /external/valgrind/memcheck/tests/
leak-cases.c 15 // p8 -?-> AAA -?-> BBB (y)DR, (n)DL / P (y,y)IR, (n,y)IL, (_,n)DL / P
65 Node* p8; variable
87 p8 = mk(mk(NULL)); // Case 8: 16/1 possibly lost
88 (p8->next)++; // 16/1 possibly lost
89 p8++;
  /external/v8/src/ia32/
simulator-ia32.h 25 p7, p8) \
26 (FUNCTION_CAST<regexp_matcher>(entry)(p0, p1, p2, p3, p4, p5, p6, p7, p8))
  /external/v8/src/x64/
simulator-x64.h 25 p7, p8) \
26 (FUNCTION_CAST<regexp_matcher>(entry)(p0, p1, p2, p3, p4, p5, p6, p7, p8))
  /external/v8/src/x87/
simulator-x87.h 25 p7, p8) \
26 (FUNCTION_CAST<regexp_matcher>(entry)(p0, p1, p2, p3, p4, p5, p6, p7, p8))
  /toolchain/binutils/binutils-2.27/gold/testsuite/
two_file_test_1_v1.cc 122 char* p8 = &v4[6]; variable
127 return *p8 == ' ';
dwp_test_1.cc 89 char* p8 = &v4[6]; variable
94 return *p8 == ' ';
two_file_test_1.cc 117 char* p8 = &v4[6]; variable
122 return *p8 == ' ';
  /external/flac/libFLAC/include/private/
md5.h 32 FLAC__byte *p8; member in union:__anon20620
  /external/llvm/unittests/ADT/
MakeUniqueTest.cpp 52 auto p8 = make_unique<std::tuple<int, int, int, int, int, int, int, int>>( local
54 EXPECT_TRUE((bool)p8);
55 EXPECT_EQ(std::make_tuple(0, 1, 2, 3, 4, 5, 6, 7), *p8);
  /art/test/700-LoadArgRegs/src/
Main.java 24 static void testI8(int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8) {
25 System.out.println(p1+", "+p2+", "+p3+", "+p4+", "+p5+", "+p6+", "+p7+", "+p8);
27 static void testI9(int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8, int p9) {
28 System.out.println(p1+", "+p2+", "+p3+", "+p4+", "+p5+", "+p6+", "+p7+", "+p8+", "+p9);
30 static void testI10(int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8, int p9, int p10) {
31 System.out.println(p1+", "+p2+", "+p3+", "+p4+", "+p5+", "+p6+", "+p7+", "+p8+", "+p9+", "+p10);
33 static void testI11(int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8, int p9, int p10, int p11) {
34 System.out.println(p1+", "+p2+", "+p3+", "+p4+", "+p5+", "+p6+", "+p7+", "+p8+", "+p9+", "+p10+", "+p11);
36 static void testI12(int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8, int p9, int p10, int p11, int p12) {
37 System.out.println(p1+", "+p2+", "+p3+", "+p4+", "+p5+", "+p6+", "+p7+", "+p8+", "+p9+", "+p10+", "+p11+", "+p12)
    [all...]
  /external/boringssl/src/crypto/pem/
pem_pk8.c 114 X509_SIG *p8; local
136 p8 = PKCS8_encrypt(nid, enc, kstr, klen, NULL, 0, 0, p8inf);
141 ret = i2d_PKCS8_bio(bp, p8);
143 ret = PEM_write_bio_PKCS8(bp, p8);
144 X509_SIG_free(p8);
160 X509_SIG *p8 = NULL; local
164 p8 = d2i_PKCS8_bio(bp, NULL);
165 if (!p8)
174 X509_SIG_free(p8);
177 p8inf = PKCS8_decrypt(p8, psbuf, klen)
    [all...]
  /external/clang/test/SemaCXX/
cxx11-ast-print.cpp 35 // CHECK: const char *p8 = 4.9_quux;
36 const char *p8 = 4.9_quux; variable
  /external/webrtc/webrtc/base/
refcount.h 70 typename P6, typename P7, typename P8>
71 RefCountedObject(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6, P7 p7, P8 p8)
72 : T(p1, p2, p3, p4, p5, p6, p7, p8), ref_count_(0) {
76 typename P6, typename P7, typename P8, typename P9>
78 P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6, P7 p7, P8 p8, P9 p9)
79 : T(p1, p2, p3, p4, p5, p6, p7, p8, p9), ref_count_(0) {
83 typename P6, typename P7, typename P8, typename P9, typename P10>
85 P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6, P7 p7, P8 p8, P9 p9, P10 p10
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/cris/
rd-v32s-4.s 13 move $r7,$p8
30 move $p8,$r7
47 move 120,$p8
64 move $p8,[$r7]
81 move [$r7],$p8
  /external/swiftshader/third_party/LLVM/test/MC/ARM/
neont2-mul-encoding.s 21 @ CHECK: vmul.p8 d16, d16, d17 @ encoding: [0x40,0xff,0xb1,0x09]
22 vmul.p8 d16, d16, d17
23 @ CHECK: vmul.p8 q8, q8, q9 @ encoding: [0x40,0xff,0xf2,0x09]
24 vmul.p8 q8, q8, q9
53 @ CHECK: vmull.p8 q8, d16, d17 @ encoding: [0xc0,0xef,0xa1,0x0e]
54 vmull.p8 q8, d16, d17
  /developers/samples/android/ui/transition/AdapterTransition/Application/src/main/java/com/example/android/adaptertransition/
Meat.java 40 new Meat(R.drawable.p8, "Eighth"),
  /developers/samples/android/ui/transition/FragmentTransition/Application/src/main/java/com/example/android/fragmenttransition/
Meat.java 40 new Meat(R.drawable.p8, "Eighth"),
  /external/clang/test/CXX/lex/lex.charset/
p2-cxx11.cpp 41 const char16_t *p8 = u"foo \U0000dfff bar"; // expected-error {{invalid universal character}} variable
  /external/libffi/src/ia64/
unix.S 181 cmp.lt p8, p0 = 24, in3
191 (p8) st8 [r18] = r11
208 cmp.lt p8, p0 = 12, in3
211 (p8) stfs [r16] = f11, 8
232 cmp.lt p8, p0 = 24, in3
235 (p8) stfd [r16] = f11, 16
256 cmp.lt p8, p0 = 48, in3
259 (p8) stfe [r16] = f11, 32
416 cmp.lt p8, p0 = 24, r8
422 (p8) ld8 r11 = [r17
    [all...]
  /external/python/cpython2/Modules/_ctypes/libffi/src/ia64/
unix.S 181 cmp.lt p8, p0 = 24, in3
191 (p8) st8 [r18] = r11
208 cmp.lt p8, p0 = 12, in3
211 (p8) stfs [r16] = f11, 8
232 cmp.lt p8, p0 = 24, in3
235 (p8) stfd [r16] = f11, 16
256 cmp.lt p8, p0 = 48, in3
259 (p8) stfe [r16] = f11, 32
416 cmp.lt p8, p0 = 24, r8
422 (p8) ld8 r11 = [r17
    [all...]
  /external/python/cpython3/Modules/_ctypes/libffi/src/ia64/
unix.S 181 cmp.lt p8, p0 = 24, in3
191 (p8) st8 [r18] = r11
208 cmp.lt p8, p0 = 12, in3
211 (p8) stfs [r16] = f11, 8
232 cmp.lt p8, p0 = 24, in3
235 (p8) stfd [r16] = f11, 16
256 cmp.lt p8, p0 = 48, in3
259 (p8) stfe [r16] = f11, 32
416 cmp.lt p8, p0 = 24, r8
422 (p8) ld8 r11 = [r17
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/ia64/
pseudo.s 5 cmp4.eq p8 = r0, r0
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/
p6.cpp 75 auto S::*p8 = &S::m; member in class:S::S
82 only<int (S::*)> test8 = p8;
  /external/tensorflow/tensorflow/core/lib/gtl/
manual_constructor.h 205 const T5& p5, const T6& p6, const T7& p7, const T8& p8) {
206 new (space_) Type(p1, p2, p3, p4, p5, p6, p7, p8);
212 const T5& p5, const T6& p6, const T7& p7, const T8& p8,
214 new (space_) Type(p1, p2, p3, p4, p5, p6, p7, p8, p9);
220 const T5& p5, const T6& p6, const T7& p7, const T8& p8,
222 new (space_) Type(p1, p2, p3, p4, p5, p6, p7, p8, p9, p10);
229 const T5& p5, const T6& p6, const T7& p7, const T8& p8,
231 new (space_) Type(p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, p11);

Completed in 1832 milliseconds

1 2 3 4 5 6 7 8 9