/external/chromium_org/remoting/codec/ |
video_encoder_verbatim.cc | 43 uint8_t* out = GetOutputBuffer(packet.get(), output_size); local 54 memcpy(out, in, row_size); 55 out += row_size;
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
u_caps.c | 23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 35 * all checks pass returns TRUE and out is set to the last element of 37 * out to the index of the start of the first failing check. 40 util_check_caps_out(struct pipe_screen *screen, const unsigned *list, int *out) 49 *out = i - 2; 56 *out = i - 3; 63 *out = i - 3; 73 *out = i - 2; 81 *out = i - 3; 86 *out = i - 1 105 int out; local 231 int i, out = 0; local [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/ |
radeon_maos_arrays.c | 25 OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 51 static void emit_s0_vec(uint32_t *out, GLvoid *data, int stride, int count) 59 out[0] = *(int *)data; 60 out[1] = 0; 61 out += 2; 66 static void emit_stq_vec(uint32_t *out, GLvoid *data, int stride, int count) 75 out[0] = *(int *)data; 76 out[1] = *(int *)(data+4); 77 out[2] = *(int *)(data+12); 78 out += 3 88 uint32_t *out; local [all...] |
/external/chromium_org/third_party/openssl/openssl/apps/ |
gendsa.c | 35 * The word 'cryptographic' can be left out if the rouines from the library 50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 86 BIO *out=NULL,*in=NULL; local 106 if (strcmp(*argv,"-out") == 0) 174 BIO_printf(bio_err," -out file - output the key to 'file'\n"); 230 out=BIO_new(BIO_s_file()); 231 if (out == NULL) goto end; 235 BIO_set_fp(out,stdout,BIO_NOCLOSE); 239 out = BIO_push(tmpbio, out); [all...] |
nseq.c | 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 73 BIO *in = NULL, *out = NULL; local 89 } else if (!strcmp (*args, "-out")) { 103 BIO_printf (bio_err, "-out file output file\n"); 117 if (!(out = BIO_new_file (outfile, "w"))) { 123 out = BIO_new_fp(stdout, BIO_NOCLOSE); 127 out = BIO_push(tmpbio, out); 143 PEM_write_bio_NETSCAPE_CERT_SEQUENCE(out, seq); 156 dump_cert_text(out, x509) [all...] |
pkeyparam.c | 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 72 BIO *in = NULL, *out = NULL; local 101 else if (!strcmp (*args, "-out")) 133 BIO_printf(bio_err, "-out file output file\n"); 160 if (!(out = BIO_new_file (outfile, "w"))) 169 out = BIO_new_fp (stdout, BIO_NOCLOSE); 173 out = BIO_push(tmpbio, out); 187 PEM_write_bio_Parameters(out,pkey); 190 EVP_PKEY_print_params(out, pkey, 0, NULL) [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/bn/ |
exptest.c | 35 * The word 'cryptographic' can be left out if the rouines from the library 50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 77 BIO *out=NULL; local 101 out=BIO_new(BIO_s_file()); 103 if (out == NULL) EXIT(1); 104 BIO_set_fp(out,stdout,BIO_NOCLOSE); 127 ERR_print_errors(out); 135 ERR_print_errors(out); 143 ERR_print_errors(out); 151 ERR_print_errors(out); [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/des/ |
ecb_enc.c | 35 * The word 'cryptographic' can be left out if the rouines from the library 50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 114 unsigned char *out = &(*output)[0]; local 119 l=ll[0]; l2c(l,out); 120 l=ll[1]; l2c(l,out);
|
pcbc_enc.c | 35 * The word 'cryptographic' can be left out if the rouines from the library 50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 68 unsigned char *out,*iv; local 71 out=output; 94 l2c(tout0,out); 95 l2c(tout1,out); 112 l2c(tout0,out); 113 l2c(tout1,out); 116 l2cn(tout0,tout1,out,length);
|
/external/chromium_org/third_party/openssl/openssl/crypto/pkcs12/ |
p12_decr.c | 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 75 unsigned char *out; local 87 if(!(out = OPENSSL_malloc(inlen + EVP_CIPHER_CTX_block_size(&ctx)))) { 92 if (!EVP_CipherUpdate(&ctx, out, &i, in, inlen)) 94 OPENSSL_free(out); 95 out = NULL; 101 if(!EVP_CipherFinal_ex(&ctx, out + i, &i)) { 102 OPENSSL_free(out); 103 out = NULL; 109 if (data) *data = out; 123 unsigned char *out; local [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/rc4/ |
rc4.c | 35 * The word 'cryptographic' can be left out if the rouines from the library 50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 69 " -out arg - output file - default stdout\n", 76 FILE *in=NULL,*out=NULL; local 93 else if (strcmp(*argv,"-out") == 0) 134 out=stdout; 137 out=fopen(outfile,"w"); 138 if (out == NULL) 150 setmode(fileno(out),O_BINARY); 181 i=fwrite(buf,(unsigned int)i,1,out); [all...] |
/external/chromium_org/third_party/sqlite/src/src/ |
vdbetrace.c | 76 StrAccum out; /* Accumulate the output here */ local 80 sqlite3StrAccumInit(&out, zBase, sizeof(zBase), 82 out.db = db; 87 sqlite3StrAccumAppend(&out, "-- ", 3); 88 sqlite3StrAccumAppend(&out, zStart, (int)(zRawSql-zStart)); 94 sqlite3StrAccumAppend(&out, zRawSql, n); 118 sqlite3StrAccumAppend(&out, "NULL", 4); 120 sqlite3XPrintf(&out, "%lld", pVar->u.i); 122 sqlite3XPrintf(&out, "%!.15g", pVar->r); 132 sqlite3XPrintf(&out, "'%.*q'", utf8.n, utf8.z) [all...] |
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
stack_trace_table.cc | 27 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 116 void** out = new void*[out_len]; local 117 if (out == NULL) { 120 out_len * sizeof(*out)); 129 out[idx++] = reinterpret_cast<void*>(static_cast<uintptr_t>(b->count)); 130 out[idx++] = reinterpret_cast<void*>(b->trace.size); // cumulative size 131 out[idx++] = reinterpret_cast<void*>(b->trace.depth); 133 out[idx++] = b->trace.stack[d]; 138 out[idx++] = NULL; 156 return out; [all...] |
/external/chromium_org/third_party/tcmalloc/vendor/src/ |
stack_trace_table.cc | 27 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 116 void** out = new void*[out_len]; local 117 if (out == NULL) { 120 out_len * sizeof(*out)); 129 out[idx++] = reinterpret_cast<void*>(static_cast<uintptr_t>(b->count)); 130 out[idx++] = reinterpret_cast<void*>(b->trace.size); // cumulative size 131 out[idx++] = reinterpret_cast<void*>(b->trace.depth); 133 out[idx++] = b->trace.stack[d]; 138 out[idx++] = static_cast<uintptr_t>(0); 156 return out; [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/tests/ |
combpath_test.c | 23 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 44 const char *out; member in struct:Test_Entry 96 char *out; local 104 out = test->combpath(test->from, test->to); 106 if (strcmp(out, test->out) != 0) { 109 funcname, test->from, test->to, test->out, out); 110 yasm_xfree(out); 114 yasm_xfree(out); [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/genmacro/ |
genmacro.c | 25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 37 FILE *in, *out; local 48 fprintf(stderr, "Usage: %s <out> <var> <file> [<file> ...]\n", argv[0]); 52 out = fopen(argv[1], "wt"); 54 if (!out) { 61 fprintf(out, "/* This file auto-generated from standard.mac by genmacro.c" 69 fclose(out); 92 fclose(out); 114 fprintf(out, " \""); 117 fputc('\\', out); [all...] |
/external/chromium_org/tools/json_schema_compiler/test/ |
choices_unittest.cc | 118 ChoiceType out; local 119 ASSERT_TRUE(ChoiceType::Populate(value, &out)); 120 ASSERT_TRUE(out.integers.as_integer.get()); 121 EXPECT_FALSE(out.integers.as_integers.get()); 122 EXPECT_EQ(4, *out.integers.as_integer); 124 EXPECT_FALSE(out.strings->as_string.get()); 125 ASSERT_TRUE(out.strings->as_strings.get()); 126 EXPECT_EQ(strings, *out.strings->as_strings); 139 ChoiceType out; local 140 ASSERT_TRUE(ChoiceType::Populate(value, &out)); [all...] |
/external/chromium_org/ui/gfx/image/ |
cairo_cached_surface.cc | 92 cairo_surface_t* out = cairo_surface_create_similar( local 98 DCHECK(out); 100 cairo_t* copy_cr = cairo_create(out); 105 surface_map_.push_back(std::make_pair(display, out)); 106 return out;
|
/external/dropbear/libtomcrypt/src/pk/rsa/ |
rsa_verify_hash.c | 29 @param stat [out] The result of the signature comparison, 1==valid, 0==invalid 98 unsigned char *out; local 111 out = XMALLOC(outlen); 112 if (out == NULL) { 117 if ((err = pkcs_1_v1_5_decode(tmpbuf, x, LTC_PKCS_1_EMSA, modulus_bitlen, out, &outlen, &decoded)) != CRYPT_OK) { 118 XFREE(out); 122 /* now we must decode out[0...outlen-1] using ASN.1, test the OID and then test the hash */ 136 if ((err = der_decode_sequence(out, outlen, siginfo, 2)) != CRYPT_OK) { 137 XFREE(out); 150 zeromem(out, outlen) [all...] |
/external/eigen/unsupported/doc/examples/ |
FFT.cpp | 36 T out=0; local 38 out += mag2(vec[k]); 39 return out; 45 T out=0; local 47 out += mag2(vec[k]); 48 return out;
|
/external/grub/stage2/ |
terminfo.c | 59 char *out; local 61 out = out_buffer; 70 *out = (*in) - 'A'; 75 *out = '^'; 91 *out++ = (char)(n & 0xff); 103 *out++ = '\e'; 106 *out++ = '\n'; 109 *out++ = '\r'; 112 *out++ = '\t'; 115 *out++ = '\b' 164 char *out; local [all...] |
/external/guava/guava/src/com/google/common/io/ |
FileBackedOutputStream.java | 47 private OutputStream out; field in class:FileBackedOutputStream 94 out = memory; 154 out = memory; 167 out.write(b); 177 out.write(b, off, len); 181 out.close(); 185 out.flush(); 205 out = transfer;
|
/external/guava/guava-tests/test/com/google/common/io/ |
CountingOutputStreamTest.java | 30 ByteArrayOutputStream out = new ByteArrayOutputStream(); local 31 CountingOutputStream counter = new CountingOutputStream(out); 32 assertEquals(written, out.size()); 37 assertEquals(written, out.size()); 43 assertEquals(written, out.size()); 48 assertEquals(written, out.size()); 53 assertEquals(written, out.size()); 62 assertEquals(written, out.size());
|
/external/icu4c/layout/ |
CanonShaping.cpp | 63 le_int32 out = 0, dir = 1; local 66 out = charCount - 1; 70 for (i = 0; i < charCount; i += 1, out += dir) { 74 glyphStorage.setCharIndex(out, index, status);
|
/external/icu4c/samples/citer/ |
citer.cpp | 18 static UFILE *out; variable 22 u_fprintf(out, "%S", &s); 28 u_fprintf(out, "%C", (UChar) ch); 30 u_fprintf(out, "[CharacterIterator::DONE = 0xFFFF]"); 32 u_fprintf(out, "[%X]", ch); 53 u_fprintf(out, "testText = %s", testChars); 56 u_fprintf(out, "clone() or equals() failed: Two clones tested unequal\n"); 64 u_fprintf(out, "iter.getText() != clone.getText()\n"); 67 u_fprintf(out, "\n"); 70 u_fprintf(out, "Forward = ") [all...] |