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

1 2 3 4 5 6

  /external/libcxx/test/input.output/iostream.format/std.manip/
setiosflags.pass.cpp 29 assert(!(is.flags() & std::ios_base::oct));
30 is >> std::setiosflags(std::ios_base::oct);
31 assert(is.flags() & std::ios_base::oct);
36 assert(!(os.flags() & std::ios_base::oct));
37 os << std::setiosflags(std::ios_base::oct);
38 assert(os.flags() & std::ios_base::oct);
43 assert(!(is.flags() & std::ios_base::oct));
44 is >> std::setiosflags(std::ios_base::oct);
45 assert(is.flags() & std::ios_base::oct);
50 assert(!(os.flags() & std::ios_base::oct));
    [all...]
setbase.pass.cpp 30 assert((is.flags() & std::ios_base::basefield) == std::ios_base::oct);
42 assert((os.flags() & std::ios_base::basefield) == std::ios_base::oct);
54 assert((is.flags() & std::ios_base::basefield) == std::ios_base::oct);
66 assert((os.flags() & std::ios_base::basefield) == std::ios_base::oct);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/std.manip/
setiosflags.pass.cpp 29 assert(!(is.flags() & std::ios_base::oct));
30 is >> std::setiosflags(std::ios_base::oct);
31 assert(is.flags() & std::ios_base::oct);
36 assert(!(os.flags() & std::ios_base::oct));
37 os << std::setiosflags(std::ios_base::oct);
38 assert(os.flags() & std::ios_base::oct);
43 assert(!(is.flags() & std::ios_base::oct));
44 is >> std::setiosflags(std::ios_base::oct);
45 assert(is.flags() & std::ios_base::oct);
50 assert(!(os.flags() & std::ios_base::oct));
    [all...]
setbase.pass.cpp 30 assert((is.flags() & std::ios_base::basefield) == std::ios_base::oct);
42 assert((os.flags() & std::ios_base::basefield) == std::ios_base::oct);
54 assert((is.flags() & std::ios_base::basefield) == std::ios_base::oct);
66 assert((os.flags() & std::ios_base::basefield) == std::ios_base::oct);
  /external/chromium_org/third_party/openssl/openssl/crypto/x509v3/
v3_skey.c 74 ASN1_OCTET_STRING *oct)
76 return hex_to_string(oct->data, oct->length);
82 ASN1_OCTET_STRING *oct; local
85 if(!(oct = M_ASN1_OCTET_STRING_new())) {
90 if(!(oct->data = string_to_hex(str, &length))) {
91 M_ASN1_OCTET_STRING_free(oct);
95 oct->length = length;
97 return oct;
104 ASN1_OCTET_STRING *oct; local
    [all...]
  /external/openssl/crypto/x509v3/
v3_skey.c 74 ASN1_OCTET_STRING *oct)
76 return hex_to_string(oct->data, oct->length);
82 ASN1_OCTET_STRING *oct; local
85 if(!(oct = M_ASN1_OCTET_STRING_new())) {
90 if(!(oct->data = string_to_hex(str, &length))) {
91 M_ASN1_OCTET_STRING_free(oct);
95 oct->length = length;
97 return oct;
104 ASN1_OCTET_STRING *oct; local
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/asn1/
asn_pack.c 109 void *ASN1_unpack_string(ASN1_STRING *oct, d2i_of_void *d2i)
114 p = oct->data;
115 if(!(ret = d2i(NULL, &p, oct->length)))
122 ASN1_STRING *ASN1_pack_string(void *obj, i2d_of_void *i2d, ASN1_STRING **oct)
127 if (!oct || !*oct) {
132 if (oct) *oct = octmp;
133 } else octmp = *oct;
152 ASN1_STRING *ASN1_item_pack(void *obj, const ASN1_ITEM *it, ASN1_STRING **oct)
    [all...]
p8_pkey.c 101 ASN1_OCTET_STRING *oct;
102 oct = ASN1_OCTET_STRING_new();
103 if (!oct)
105 oct->data = penc;
106 ppenc = &oct->data;
107 oct->length = penclen;
112 ASN1_TYPE_set(priv->pkey, pmtype, oct);
  /external/openssl/crypto/asn1/
asn_pack.c 109 void *ASN1_unpack_string(ASN1_STRING *oct, d2i_of_void *d2i)
114 p = oct->data;
115 if(!(ret = d2i(NULL, &p, oct->length)))
122 ASN1_STRING *ASN1_pack_string(void *obj, i2d_of_void *i2d, ASN1_STRING **oct)
127 if (!oct || !*oct) {
132 if (oct) *oct = octmp;
133 } else octmp = *oct;
152 ASN1_STRING *ASN1_item_pack(void *obj, const ASN1_ITEM *it, ASN1_STRING **oct)
    [all...]
p8_pkey.c 101 ASN1_OCTET_STRING *oct;
102 oct = ASN1_OCTET_STRING_new();
103 if (!oct)
105 oct->data = penc;
106 ppenc = &oct->data;
107 oct->length = penclen;
112 ASN1_TYPE_set(priv->pkey, pmtype, oct);
  /external/libcxx/test/input.output/iostreams.base/std.ios.manip/basefield.manip/
oct.pass.cpp 14 // ios_base& oct(ios_base& str);
26 std::ios_base& r = std::oct(ios);
28 assert(ios.flags() & std::ios::oct);
Android.mk 27 test_name := input.output/iostreams.base/std.ios.manip/basefield.manip/oct
28 test_src := oct.pass.cpp
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/std.ios.manip/basefield.manip/
oct.pass.cpp 14 // ios_base& oct(ios_base& str);
26 std::ios_base& r = std::oct(ios);
28 assert(ios.flags() & std::ios::oct);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_future_builtins.py 4 from future_builtins import hex, oct, map, zip, filter namespace
16 self.assertEqual(oct(0), '0o0')
17 self.assertEqual(oct(100), '0o144')
18 self.assertEqual(oct(100L), '0o144')
19 self.assertEqual(oct(-100), '-0o144')
20 self.assertEqual(oct(-100L), '-0o144')
21 self.assertRaises(TypeError, oct, ())
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_future_builtins.py 4 from future_builtins import hex, oct, map, zip, filter namespace
16 self.assertEqual(oct(0), '0o0')
17 self.assertEqual(oct(100), '0o144')
18 self.assertEqual(oct(100L), '0o144')
19 self.assertEqual(oct(-100), '-0o144')
20 self.assertEqual(oct(-100L), '-0o144')
21 self.assertRaises(TypeError, oct, ())
  /external/chromium_org/third_party/openssl/openssl/crypto/pkcs12/
p12_decr.c 121 const char *pass, int passlen, ASN1_OCTET_STRING *oct, int zbuf)
128 if (!PKCS12_pbe_crypt(algor, pass, passlen, oct->data, oct->length,
161 ASN1_OCTET_STRING *oct; local
164 if (!(oct = M_ASN1_OCTET_STRING_new ())) {
173 if (!PKCS12_pbe_crypt(algor, pass, passlen, in, inlen, &oct->data,
174 &oct->length, 1)) {
181 return oct;
  /external/openssl/crypto/pkcs12/
p12_decr.c 121 const char *pass, int passlen, ASN1_OCTET_STRING *oct, int zbuf)
128 if (!PKCS12_pbe_crypt(algor, pass, passlen, oct->data, oct->length,
161 ASN1_OCTET_STRING *oct; local
164 if (!(oct = M_ASN1_OCTET_STRING_new ())) {
173 if (!PKCS12_pbe_crypt(algor, pass, passlen, in, inlen, &oct->data,
174 &oct->length, 1)) {
181 return oct;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
IvAlgorithmParameters.java 76 ASN1OctetString oct = (ASN1OctetString)ASN1Primitive.fromByteArray(params); local
78 params = oct.getOctets();
93 ASN1OctetString oct = (ASN1OctetString)ASN1Primitive.fromByteArray(params); local
95 engineInit(oct.getOctets());
  /external/libcxx/test/input.output/iostreams.base/ios.base/ios.types/ios_fmtflags/
fmtflags.pass.cpp 20 // static const fmtflags oct;
30 // static const fmtflags basefield = dec | oct | hex;
44 assert(std::ios_base::oct);
62 & std::ios_base::oct
77 | std::ios_base::oct
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios.base/ios.types/ios_fmtflags/
fmtflags.pass.cpp 20 // static const fmtflags oct;
30 // static const fmtflags basefield = dec | oct | hex;
44 assert(std::ios_base::oct);
62 & std::ios_base::oct
77 | std::ios_base::oct
  /external/ltrace/etc/
syscalls.conf 21 int open(string, hex(uint), oct(uint));
121 int openat(at_dirfd_t, string, hex(uint), oct(uint));
122 int mknodat(at_dirfd_t, string, oct(uint), ushort)
123 int mkdirat(at_dirfd_t, string, oct(uint));
128 int faccessat(at_dirfd_t, string, oct(uint), hex(uint));
129 int fchmodat(at_dirfd_t, string, oct(uint), hex(uint));
145 int creat(string, oct(int));
  /external/chromium_org/third_party/angle/src/compiler/preprocessor/
numeric_lex.h 26 return std::ios::oct;
  /external/stlport/test/unit/
num_put_get_test.cpp 629 CHECK(short, 0, oct, "0")
630 CHECK(short, 1, oct, "1")
631 CHECK(short, 12345, oct, "30071")
633 CHECK(short, -1, oct, "177777")
634 CHECK(short, -12345, oct, "147707")
637 CHECK(unsigned short, 0, oct, "0")
638 CHECK(unsigned short, 12345, oct, "30071")
640 CHECK(int, 0, oct, "0")
641 CHECK(int, 12345678, oct, "57060516")
643 CHECK(int, -1, oct, "37777777777"
    [all...]