HomeSort by: relevance | last modified time | path
    Searched refs:os (Results 1 - 25 of 1333) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/common/dist/zlib/contrib/iostream/
test.cpp 8 gzofstream os( 1, ios::out );
12 os << "Hello, Mommy" << endl;
14 os << setcompressionlevel( Z_NO_COMPRESSION );
15 os << "hello, hello, hi, ho!" << endl;
17 setcompressionlevel( os, Z_DEFAULT_COMPRESSION )
20 os.close();
  /src/external/gpl3/binutils/dist/zlib/contrib/iostream/
test.cpp 8 gzofstream os( 1, ios::out );
12 os << "Hello, Mommy" << endl;
14 os << setcompressionlevel( Z_NO_COMPRESSION );
15 os << "hello, hello, hi, ho!" << endl;
17 setcompressionlevel( os, Z_DEFAULT_COMPRESSION )
20 os.close();
  /src/external/gpl3/binutils.old/dist/zlib/contrib/iostream/
test.cpp 8 gzofstream os( 1, ios::out );
12 os << "Hello, Mommy" << endl;
14 os << setcompressionlevel( Z_NO_COMPRESSION );
15 os << "hello, hello, hi, ho!" << endl;
17 setcompressionlevel( os, Z_DEFAULT_COMPRESSION )
20 os.close();
  /src/external/gpl3/gdb/dist/gdb/system-gdbinit/
wrs-linux.py 18 import os
20 if "ENV_PREFIX" in os.environ:
21 gdb.execute("set sysroot %s" % os.environ["ENV_PREFIX"])
  /src/external/gpl3/gdb/dist/zlib/contrib/iostream/
test.cpp 8 gzofstream os( 1, ios::out );
12 os << "Hello, Mommy" << endl;
14 os << setcompressionlevel( Z_NO_COMPRESSION );
15 os << "hello, hello, hi, ho!" << endl;
17 setcompressionlevel( os, Z_DEFAULT_COMPRESSION )
20 os.close();
  /src/external/gpl3/gdb.old/dist/gdb/system-gdbinit/
wrs-linux.py 18 import os
20 if "ENV_PREFIX" in os.environ:
21 gdb.execute("set sysroot %s" % os.environ["ENV_PREFIX"])
  /src/external/gpl3/gdb.old/dist/zlib/contrib/iostream/
test.cpp 8 gzofstream os( 1, ios::out );
12 os << "Hello, Mommy" << endl;
14 os << setcompressionlevel( Z_NO_COMPRESSION );
15 os << "hello, hello, hi, ho!" << endl;
17 setcompressionlevel( os, Z_DEFAULT_COMPRESSION )
20 os.close();
  /src/external/apache2/llvm/dist/llvm/utils/lit/tests/Inputs/py-config-discovery/
lit.site.cfg.py 2 import os
3 config.test_exec_root = os.path.dirname(__file__)
4 config.test_source_root = os.path.join(os.path.dirname(config.test_exec_root), "discovery")
5 lit_config.load_config(config, os.path.join(config.test_source_root, "lit.cfg"))
  /src/crypto/external/bsd/heimdal/dist/lib/base/
data.c 43 heim_octet_string *os = (heim_octet_string *)d; local
47 if (os->data == NULL)
51 deallocp = _heim_get_isaextra(os, 0);
54 dealloc(os->data);
69 heim_octet_string *os = ptr; local
70 const unsigned char *s = os->data;
72 if (os->length < 4)
73 return os->length;
75 (s[os->length - 2] << 16) | (s[os->length - 1] << 24)
100 heim_octet_string *os; local
115 heim_octet_string *os; local
    [all...]
  /src/external/apache2/llvm/dist/clang/tools/clang-fuzzer/proto-to-cxx/
proto_to_cxx.cpp 22 std::ostream &operator<<(std::ostream &os, const BinaryOp &x);
23 std::ostream &operator<<(std::ostream &os, const StatementSeq &x);
26 std::ostream &operator<<(std::ostream &os, const Const &x) {
27 return os << "(" << x.val() << ")";
29 std::ostream &operator<<(std::ostream &os, const VarRef &x) {
30 return os << "a[" << (static_cast<uint32_t>(x.varnum()) % 100) << "]";
32 std::ostream &operator<<(std::ostream &os, const Lvalue &x) {
33 return os << x.varref();
35 std::ostream &operator<<(std::ostream &os, const Rvalue &x) {
36 if (x.has_varref()) return os << x.varref()
89 std::ostringstream os; local
    [all...]
loop_proto_to_cxx.cpp 42 std::ostream &operator<<(std::ostream &os, const BinaryOp &x);
43 std::ostream &operator<<(std::ostream &os, const StatementSeq &x);
46 std::ostream &operator<<(std::ostream &os, const Const &x) {
47 return os << "(" << x.val() << ")";
49 std::ostream &operator<<(std::ostream &os, const VarRef &x) {
53 return os << "a[" << which_loop << "]";
55 return os << "b[" << which_loop << "]";
57 return os << "c[" << which_loop << "]";
60 std::ostream &operator<<(std::ostream &os, const Rvalue &x) {
62 return os << x.cons()
148 std::ostringstream os; local
    [all...]
  /src/crypto/external/apache2/openssl/dist/fuzz/
helper.py 15 import os
21 THIS_DIR = os.path.abspath(os.path.dirname(__file__))
22 CORPORA_DIR = os.path.abspath(os.path.join(THIS_DIR, "corpora"))
24 FUZZER_DIR = os.path.abspath(os.path.join(CORPORA_DIR, FUZZER))
25 if not os.path.isdir(FUZZER_DIR):
26 os.mkdir(FUZZER_DIR)
31 dd = os.path.abspath(os.path.join(CORPORA_DIR, d)
    [all...]
  /src/crypto/external/bsd/openssl/dist/fuzz/
helper.py 15 import os
21 THIS_DIR = os.path.abspath(os.path.dirname(__file__))
22 CORPORA_DIR = os.path.abspath(os.path.join(THIS_DIR, "corpora"))
24 FUZZER_DIR = os.path.abspath(os.path.join(CORPORA_DIR, FUZZER))
25 if not os.path.isdir(FUZZER_DIR):
26 os.mkdir(FUZZER_DIR)
31 dd = os.path.abspath(os.path.join(CORPORA_DIR, d)
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/crypto/hmac/
hm_ameth.c 28 ASN1_OCTET_STRING *os = EVP_PKEY_get0(pkey); local
29 if (os) {
30 if (os->data)
31 OPENSSL_cleanse(os->data, os->length);
32 ASN1_OCTET_STRING_free(os);
57 ASN1_OCTET_STRING *os; local
62 os = ASN1_OCTET_STRING_new();
63 if (os == NULL)
67 if (!ASN1_OCTET_STRING_set(os, priv, len))
79 ASN1_OCTET_STRING *os = (ASN1_OCTET_STRING *)pkey->pkey.ptr; local
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/fuzz/
helper.py 15 import os
21 THIS_DIR = os.path.abspath(os.path.dirname(__file__))
22 CORPORA_DIR = os.path.abspath(os.path.join(THIS_DIR, "corpora"))
24 FUZZER_DIR = os.path.abspath(os.path.join(CORPORA_DIR, FUZZER))
25 if not os.path.isdir(FUZZER_DIR):
26 os.mkdir(FUZZER_DIR)
31 dd = os.path.abspath(os.path.join(CORPORA_DIR, d)
    [all...]
  /src/external/bsd/wpa/dist/wpa_supplicant/binder/fi/w1/wpa_supplicant/
ISupplicantCallbacks.aidl 12 import android.os.PersistableBundle;
  /src/external/mpl/bind/dist/bin/tests/system/statschannel/
conftest.py 12 import os
19 return int(os.environ["EXTRAPORT1"])
  /src/crypto/external/bsd/openssl.old/dist/crypto/poly1305/
poly1305_ameth.c 30 ASN1_OCTET_STRING *os = EVP_PKEY_get0(pkey); local
31 if (os != NULL) {
32 if (os->data != NULL)
33 OPENSSL_cleanse(os->data, os->length);
34 ASN1_OCTET_STRING_free(os);
52 ASN1_OCTET_STRING *os; local
57 os = ASN1_OCTET_STRING_new();
58 if (os == NULL)
61 if (!ASN1_OCTET_STRING_set(os, priv, len))
73 ASN1_OCTET_STRING *os = (ASN1_OCTET_STRING *)pkey->pkey.ptr; local
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/crypto/siphash/
siphash_ameth.c 30 ASN1_OCTET_STRING *os = EVP_PKEY_get0(pkey); local
32 if (os != NULL) {
33 if (os->data != NULL)
34 OPENSSL_cleanse(os->data, os->length);
35 ASN1_OCTET_STRING_free(os);
53 ASN1_OCTET_STRING *os; local
58 os = ASN1_OCTET_STRING_new();
59 if (os == NULL)
62 if (!ASN1_OCTET_STRING_set(os, priv, len))
74 ASN1_OCTET_STRING *os = (ASN1_OCTET_STRING *)pkey->pkey.ptr; local
    [all...]
  /src/external/apache2/llvm/dist/clang/tools/scan-build-py/bin/
analyze-build 9 import os.path
10 this_dir = os.path.dirname(os.path.realpath(__file__))
11 sys.path.append(os.path.dirname(this_dir))
analyze-c++ 8 import os.path
9 this_dir = os.path.dirname(os.path.realpath(__file__))
10 sys.path.append(os.path.dirname(this_dir))
analyze-cc 8 import os.path
9 this_dir = os.path.dirname(os.path.realpath(__file__))
10 sys.path.append(os.path.dirname(this_dir))
intercept-build 9 import os.path
10 this_dir = os.path.dirname(os.path.realpath(__file__))
11 sys.path.append(os.path.dirname(this_dir))
intercept-c++ 8 import os.path
9 this_dir = os.path.dirname(os.path.realpath(__file__))
10 sys.path.append(os.path.dirname(this_dir))
intercept-cc 8 import os.path
9 this_dir = os.path.dirname(os.path.realpath(__file__))
10 sys.path.append(os.path.dirname(this_dir))

Completed in 33 milliseconds

1 2 3 4 5 6 7 8 91011>>