Searched defs:out (Results 176 - 200 of 2458) sorted by relevance

1234567891011>>

/external/chromium_org/mojo/bindings/js/
H A Dhandle.cc50 mojo::Handle* out) {
52 *out = mojo::Handle();
60 *out = handle->get();
48 FromV8(v8::Isolate* isolate, v8::Handle<v8::Value> val, mojo::Handle* out) argument
/external/chromium_org/native_client_sdk/src/libraries/error_handling/
H A Dstring_stream.c43 int out; local
46 out = ssvprintf(stream, format, args);
49 return out;
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
H A Drealpath.c36 char* out = resolved_path; local
40 *out = 0;
44 strcat(out, "/");
46 out++;
49 if (getcwd(out, out_end - out) == NULL)
52 out += strlen(out);
80 out = prev_slash;
83 ++out;
[all...]
/external/chromium_org/net/spdy/
H A Dspdy_read_queue.cc34 size_t SpdyReadQueue::Dequeue(char* out, size_t len) { argument
41 memcpy(out + bytes_copied, buffer->GetRemainingData(), bytes_to_copy);
/external/chromium_org/net/tools/crl_set_dump/
H A Dcrl_set_dump.cc66 const std::string out = net::CRLSetStorage::Serialize(final_crl_set.get()); local
67 if (base::WriteFile(output_filename, out.data(), out.size()) == -1) {
/external/chromium_org/ppapi/cpp/
H A Dview.cc35 PP_Rect out; local
37 if (PP_ToBool(get_interface<PPB_View_1_2>()->GetRect(pp_resource(), &out)))
38 return Rect(out);
40 if (PP_ToBool(get_interface<PPB_View_1_1>()->GetRect(pp_resource(), &out)))
41 return Rect(out);
43 if (PP_ToBool(get_interface<PPB_View_1_0>()->GetRect(pp_resource(), &out)))
44 return Rect(out);
88 PP_Rect out; local
91 &out)))
92 return Rect(out);
122 PP_Point out; local
[all...]
/external/chromium_org/remoting/codec/
H A Dvideo_encoder_verbatim.cc45 uint8_t* out = GetPacketOutputBuffer(packet.get(), output_size); local
56 memcpy(out, in, row_size);
57 out += row_size;
/external/chromium_org/sync/syncable/
H A Dsyncable_id.cc17 ostream& operator<<(ostream& out, const Id& id) { argument
18 out << id.s_;
19 return out;
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DPrintStream.cpp50 void printInternal(PrintStream& out, const char* string) argument
52 out.printf("%s", string);
55 void printInternal(PrintStream& out, const CString& string) argument
57 out.print(string.data());
60 void printInternal(PrintStream& out, const String& string) argument
62 out.print(string.utf8());
65 void printInternal(PrintStream& out, bool value) argument
68 out.print("true");
70 out.print("false");
73 void printInternal(PrintStream& out, in argument
78 printInternal(PrintStream& out, unsigned value) argument
83 printInternal(PrintStream& out, long value) argument
88 printInternal(PrintStream& out, unsigned long value) argument
93 printInternal(PrintStream& out, long long value) argument
98 printInternal(PrintStream& out, unsigned long long value) argument
103 printInternal(PrintStream& out, float value) argument
108 printInternal(PrintStream& out, double value) argument
113 dumpCharacter(PrintStream& out, char value) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DBase64.h59 inline void base64Encode(const Vector<char>& in, Vector<char>& out, Base64EncodePolicy policy) argument
61 base64Encode(in.data(), in.size(), out, policy);
64 inline void base64Encode(const CString& in, Vector<char>& out, Base64EncodePolicy policy) argument
66 base64Encode(in.data(), in.length(), out, policy);
/external/chromium_org/third_party/angle/src/compiler/preprocessor/
H A DToken.cpp74 std::ostream &operator<<(std::ostream &out, const Token &token) argument
77 out << " ";
79 out << token.text;
80 return out;
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DOutputGLSL.cpp26 TInfoSinkBase& out = objSink(); local
30 out << "gl_FragDepth";
H A DUnfoldShortCircuit.cpp33 TInfoSinkBase &out = mOutputHLSL->getBodyStream(); local
51 out << "bool s" << i << ";\n";
53 out << "{\n";
57 out << "s" << i << " = ";
60 out << ";\n";
61 out << "if (!s" << i << ")\n"
65 out << " s" << i << " = ";
68 out << ";\n"
71 out << "}\n";
82 out << "boo
114 TInfoSinkBase &out = mOutputHLSL->getBodyStream(); local
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/aes/
H A Dmode_wrappers.c56 void AES_ctr128_encrypt(const uint8_t *in, uint8_t *out, size_t len, argument
59 CRYPTO_ctr128_encrypt(in, out, len, key, ivec, ecount_buf, num,
63 void AES_ecb_encrypt(const uint8_t *in, uint8_t *out, const AES_KEY *key, argument
65 assert(in && out && key);
69 AES_encrypt(in, out, key);
71 AES_decrypt(in, out, key);
77 void AES_cbc_encrypt(const uint8_t *in, uint8_t *out, size_t len, argument
81 CRYPTO_cbc128_encrypt(in, out, len, key, ivec, (block128_f)AES_encrypt);
83 CRYPTO_cbc128_decrypt(in, out, len, key, ivec, (block128_f)AES_decrypt);
88 void asm_AES_cbc_encrypt(const uint8_t *in, uint8_t *out, size_
90 AES_cbc_encrypt(const uint8_t *in, uint8_t *out, size_t len, const AES_KEY *key, uint8_t *ivec, const int enc) argument
97 AES_ofb128_encrypt(const uint8_t *in, uint8_t *out, size_t length, const AES_KEY *key, uint8_t *ivec, int *num) argument
103 AES_cfb128_encrypt(const uint8_t *in, uint8_t *out, size_t length, const AES_KEY *key, uint8_t *ivec, int *num, int enc) argument
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/asn1/
H A Da_i2d_fp.c34 * The word 'cryptographic' can be left out if the rouines from the library
63 int ASN1_i2d_fp(i2d_of_void *i2d, FILE *out, void *x) argument
73 BIO_set_fp(b,out,BIO_NOCLOSE);
79 int ASN1_i2d_bio(i2d_of_void *i2d, BIO *out, unsigned char *x) argument
98 i=BIO_write(out,&(b[j]),n);
112 int ASN1_item_i2d_fp(const ASN1_ITEM *it, FILE *out, void *x) argument
122 BIO_set_fp(b,out,BIO_NOCLOSE);
128 int ASN1_item_i2d_bio(const ASN1_ITEM *it, BIO *out, void *x) argument
142 i=BIO_write(out,&(b[j]),n);
H A Dt_bitst.c34 * The word 'cryptographic' can be left out if the rouines from the library
62 int ASN1_BIT_STRING_name_print(BIO *out, ASN1_BIT_STRING *bs, argument
67 BIO_printf(out, "%*s", indent, "");
70 if(!first) BIO_puts(out, ", ");
71 BIO_puts(out, bnam->lname);
75 BIO_puts(out, "\n");
/external/chromium_org/third_party/boringssl/src/crypto/base64/
H A Dbase64_test.c42 uint8_t out[9]; local
48 len = EVP_EncodeBlock(out, (const uint8_t*)t->decoded, strlen(t->decoded));
50 memcmp(out, t->encoded, len) != 0) {
52 t->decoded, (int)len, (const char*)out, t->encoded);
60 uint8_t out[6]; local
68 if (!EVP_DecodeBase64(out, &len, sizeof(out),
74 memcmp(out, t->decoded, len) != 0) {
76 t->encoded, (int)len, (const char*)out, t->decoded);
82 ret = EVP_DecodeBlock(out, (cons
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/bio/
H A Dprintf.c34 * The word 'cryptographic' can be left out if the rouines from the library
71 char buf[256], *out, out_malloced = 0; local
83 out = OPENSSL_malloc(requested_len + 1);
85 if (out == NULL) {
91 out_len = vsnprintf(out, requested_len + 1, format, args);
95 out = buf;
98 ret = BIO_write(bio, out, out_len);
100 OPENSSL_free(out);
/external/chromium_org/third_party/boringssl/src/crypto/cipher/
H A De_null.c34 * The word 'cryptographic' can be left out if the rouines from the library
69 static int null_cipher(EVP_CIPHER_CTX *ctx, uint8_t *out, argument
71 if (in != out) {
72 memcpy(out, in, in_len);
/external/chromium_org/third_party/boringssl/src/crypto/
H A Dcpu-intel.c34 * The word 'cryptographic' can be left out if the rouines from the library
81 /* handle_cpu_env applies the value from |in| to the CPUID values in |out[0]|
82 * and |out[1]|. See the comment in |OPENSSL_cpuid_setup| about this. */
83 static void handle_cpu_env(uint32_t *out, const char *in) { argument
92 out[0] &= ~v;
93 out[1] &= ~(v >> 32);
95 out[0] = v;
96 out[1] = v >> 32;
/external/chromium_org/third_party/boringssl/src/crypto/evp/
H A Dasn1.c34 * The word 'cryptographic' can be left out if the rouines from the library
67 EVP_PKEY *d2i_PrivateKey(int type, EVP_PKEY **out, const uint8_t **inp, argument
71 if (out == NULL || *out == NULL) {
78 ret = *out;
102 if (out != NULL) {
103 *out = ret;
108 if (ret != NULL && (out == NULL || *out != ret)) {
114 EVP_PKEY *d2i_AutoPrivateKey(EVP_PKEY **out, cons argument
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/x509/
H A Dt_crl.c34 * The word 'cryptographic' can be left out if the rouines from the library
83 int X509_CRL_print(BIO *out, X509_CRL *x) argument
91 BIO_printf(out, "Certificate Revocation List (CRL):\n");
93 BIO_printf(out, "%8sVersion %lu (0x%lx)\n", "", l+1, l);
95 X509_signature_print(out, x->sig_alg, NULL);
97 BIO_printf(out,"%8sIssuer: %s\n","",p);
99 BIO_printf(out,"%8sLast Update: ","");
100 ASN1_TIME_print(out,X509_CRL_get_lastUpdate(x));
101 BIO_printf(out,"\n%8sNext Update: ","");
103 ASN1_TIME_print(out,X509_CRL_get_nextUpdat
[all...]
/external/chromium_org/third_party/cld/base/
H A Dstl_decl_msvc.h35 copy_n(InputIterator in, Size count, OutputIterator out) { argument
37 *out = *in;
38 ++out;
41 return std::make_pair(in, out);
/external/chromium_org/third_party/icu/source/samples/case/
H A Dcase.cpp15 U_CFUNC int c_main(UFILE *out);
17 void printUnicodeString(UFILE *out, const UnicodeString &s) { argument
19 u_fprintf(out, "\"%S\"", other.getTerminatedBuffer());
25 UFILE *out; local
27 out = u_finit(stdout, NULL, NULL);
28 if(!out) {
32 ucnv_setFromUCallBack(u_fgetConverter(out), UCNV_FROM_U_CALLBACK_ESCAPE,
35 u_fprintf(out, "Warning- couldn't set the substitute callback - err %s\n", u_errorName(status));
40 u_fprintf(out,"ICU Case Mapping Sample Program\n\n");
41 u_fprintf(out, "
[all...]
H A Ducase.c21 int c_main(UFILE *out) argument
39 u_fprintf(out, "toupper(%C) = %C\n", char_k, ch);
41 u_fprintf(out, "tolower() = %C\n", ch);
43 u_fprintf(out, "totitle(%C) = %C\n", char_k, ch);
45 u_fprintf(out, "u_foldCase(%C, U_FOLD_CASE_DEFAULT) = %C\n", char_K, (UChar) ch);
53 u_fprintf(out, "error in u_strToLower(Turkish locale)=%ld error=%s\n", length,
57 u_fprintf(out, "u_strToLower(%S, turkish) -> %S\n", upper, buffer);
66 u_fprintf(out, "error in u_strToLower(English locale)=%ld error=%s\n", length,
69 u_fprintf(out, "u_strToUpper(%S, english) -> %S\n", lower, buffer);
78 u_fprintf(out, "erro
[all...]

Completed in 351 milliseconds

1234567891011>>