HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 451 - 475 of 3043) sorted by null

<<11121314151617181920>>

  /external/chromium_org/remoting/codec/
video_decoder_verbatim.cc 49 uint8_t* out = screen_buffer_.get() + rect.top() * stride + local
56 memcpy(out, in, rect_row_size);
58 out += stride;
  /external/chromium_org/third_party/angle/src/compiler/translator/
intermOut.cpp 16 // 2. Print out a text based description of the tree.
89 TInfoSinkBase& out = sink; local
91 OutputTreeText(out, node, depth);
94 case EOpAssign: out << "move second child to first child"; break;
95 case EOpInitialize: out << "initialize first child with second child"; break;
96 case EOpAddAssign: out << "add second child into first child"; break;
97 case EOpSubAssign: out << "subtract second child into first child"; break;
98 case EOpMulAssign: out << "multiply second child into first child"; break;
99 case EOpVectorTimesMatrixAssign: out << "matrix mult second child into first child"; break;
100 case EOpVectorTimesScalarAssign: out << "vector scale second child into first child"; break
142 TInfoSinkBase& out = sink; local
213 TInfoSinkBase& out = sink; local
295 TInfoSinkBase& out = sink; local
328 TInfoSinkBase& out = sink; local
365 TInfoSinkBase& out = sink; local
403 TInfoSinkBase& out = sink; local
    [all...]
  /external/chromium_org/third_party/harfbuzz-ng/src/
test-buffer-serialize.cc 14 * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
103 char line[BUFSIZ], out[BUFSIZ]; local
118 out, sizeof (out), NULL,
121 puts (out);
  /external/chromium_org/third_party/icu/source/tools/gentest/
gentest.c 145 FILE *out; local
154 out = fopen(file, "w");
157 if(out == NULL) {
163 fprintf(out, "/** Copyright (C) 2007-%d, International Business Machines Corporation and Others. All Rights Reserved. **/\n\n", year);
164 fprintf(out, "/* NOTE: this file is AUTOMATICALLY GENERATED by gentest.\n"
167 fprintf(out, "package com.ibm.icu.dev.test.util;\n\n");
168 fprintf(out, "public class DebugUtilitiesData extends Object {\n");
169 fprintf(out, " public static final String ICU4C_VERSION=\"%s\";\n", U_ICU_VERSION);
171 fprintf(out, " public static final int %s = %d;\n", udbg_enumName(UDBG_UDebugEnumType,t), t);
173 fprintf(out, " public static final String [] TYPES = { \n")
    [all...]
  /external/chromium_org/third_party/libwebp/utils/
alpha_processing.c 147 uint32_t out = argb & 0xff000000u; local
148 out |= Mult(argb >> 0, scale) << 0;
149 out |= Mult(argb >> 8, scale) << 8;
150 out |= Mult(argb >> 16, scale) << 16;
151 ptr[x] = out;
  /external/chromium_org/third_party/libxml/src/
testC14N.c 193 xmlChar **out = NULL; local
215 out = buffer;
218 if (out - buffer > buffer_size - 10) {
219 int indx = out - buffer;
222 out = &buffer[indx];
224 (*out++) = str;
228 (*out) = NULL;
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/rbug/
rbug_connection.c 21 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
73 struct rbug_header *out; local
104 out = rbug_demarshal(data);
105 if (!out)
112 return out;
  /external/chromium_org/third_party/openssl/openssl/apps/
gendh.c 36 * The word 'cryptographic' can be left out if the rouines from the library
51 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
100 BIO *out=NULL; local
117 if (strcmp(*argv,"-out") == 0)
149 BIO_printf(bio_err," -out file - output the key to 'file\n");
166 out=BIO_new(BIO_s_file());
167 if (out == NULL)
175 BIO_set_fp(out,stdout,BIO_NOCLOSE);
179 out = BIO_push(tmpbio, out);
    [all...]
rand.c 46 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
69 /* -out file - write to file
86 BIO *out = NULL; local
105 if (strcmp(argv[i], "-out") == 0)
167 BIO_printf(bio_err, "-out file - write to file\n");
186 out = BIO_new(BIO_s_file());
187 if (out == NULL)
190 r = BIO_write_filename(out, outfile);
193 r = BIO_set_fp(out, stdout, BIO_NOCLOSE | BIO_FP_TEXT);
197 out = BIO_push(tmpbio, out)
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/asn1/
bio_ndef.c 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
67 * The data is streamed out and does *not* need to be
71 * signatures etc written out.
89 BIO *out; member in struct:ndef_aux_st
101 BIO *BIO_new_NDEF(BIO *out, ASN1_VALUE *val, const ASN1_ITEM *it)
118 out = BIO_push(asn_bio, out);
120 if (!ndef_aux || !asn_bio || !out)
130 sarg.out = out;
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/des/
fcrypt.c 103 DES_LONG out[2],ll; local
144 fcrypt_body(&(out[0]),&ks,Eswap0,Eswap1);
146 ll=out[0]; l2c(ll,b);
147 ll=out[1]; l2c(ll,b);
  /external/chromium_org/third_party/openssl/openssl/crypto/dh/
dhtest.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
104 BIO *out; local
116 out=BIO_new(BIO_s_file());
117 if (out == NULL) EXIT(1);
118 BIO_set_fp(out,stdout,BIO_NOCLOSE);
120 BN_GENCB_set(&_cb, &cb, out);
127 BIO_puts(out, "p value is not prime\n");
129 BIO_puts(out, "p value is not a safe prime\n");
131 BIO_puts(out, "unable to check the generator value\n")
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/poly1305/
poly1305test.c 45 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
98 static void hex_decode(unsigned char *out, const char* hex)
107 out[j++] = v;
124 unsigned char key[32], out[16], expected[16]; local
134 strlen(test->outhex) != sizeof(out)*2 ||
148 CRYPTO_poly1305_finish(&poly1305, out);
150 if (memcmp(out, expected, sizeof(expected)) != 0)
154 hexdump(out, sizeof(out));
  /external/chromium_org/third_party/skia/experimental/PdfViewer/src/
SkPdfDiffEncoder.cpp 114 SkString out; local
118 out.appendf("/tmp/log_step_by_step/step-%i-%s.png", gOpCounter, gLastKeyword.c_str());
120 SkImageEncoder::EncodeFile(out.c_str(), bitmap, SkImageEncoder::kPNG_Type, 100);
  /external/chromium_org/third_party/skia/tests/
ColorFilterTest.cpp 97 SkPMColor in, out; local
103 lf->filterSpan(&in, 1, &out);
104 REPORTER_ASSERT(reporter, SkGetPackedA32(out) == i);
105 REPORTER_ASSERT(reporter, SkGetPackedR32(out) == 0);
106 REPORTER_ASSERT(reporter, SkGetPackedG32(out) == 0);
107 REPORTER_ASSERT(reporter, SkGetPackedB32(out) == 0);
113 lf->filterSpan(&in, 1, &out);
114 REPORTER_ASSERT(reporter, out == SK_ColorTRANSPARENT);
120 lf->filterSpan(&in, 1, &out);
121 REPORTER_ASSERT(reporter, out != in)
    [all...]
  /external/chromium_org/third_party/webrtc/common_audio/signal_processing/include/
spl_inl_armv7.h 158 int32_t out = 0; local
160 __asm __volatile ("ssat %0, #16, %1" : "=r"(out) : "r"(value32));
162 return (int16_t)out;
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
filterbanks_unittest.cc 81 int32_t out[kSamples] = {-1040, -1035, -22875, -1397, -27604, 20018, 7917, local
85 int32_t out[kSamples] = {-1040, -1035, -22875, -1397, -27604, 20017, 7915, local
98 EXPECT_EQ(out[i], in[i]);
  /external/chromium_org/third_party/webrtc/modules/utility/source/
file_player_unittests.cc 63 int16_t out[10 * kSampleRateHz / 1000] = {0}; local
66 player_->Get10msAudioFromFile(out, num_samples, kSampleRateHz));
67 checksum.Update(out, num_samples * sizeof(out[0]));
70 fwrite(out, sizeof(out[0]), num_samples, output_file_));
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
genmodule.c 25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
48 FILE *in, *out; local
171 out = fopen(outfile, "wt");
173 if (!out) {
178 fprintf(out, "/* This file auto-generated by genmodule.c"
184 fclose(out);
202 fprintf(out, " {\"%s\", &yasm_%s_LTX_%s},\n",
214 fprintf(out, "extern yasm_%s_module yasm_%s_LTX_%s;\n",
218 fputs(str, out);
222 fclose(out);
    [all...]
  /external/clang/tools/diagtool/
TreeView.cpp 26 static bool hasColors(const llvm::raw_ostream &out) {
27 if (&out != &llvm::errs() && &out != &llvm::outs())
34 llvm::raw_ostream &out; member in class:TreePrinter
38 TreePrinter(llvm::raw_ostream &out)
39 : out(out), ShowColors(hasColors(out)), FlagsOnly(false) {}
43 out << llvm::sys::Process::OutputColor(Color, false, false);
48 out << llvm::sys::Process::ResetColor()
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/util/
Leb128Utils.java 129 * Writes {@code value} as an unsigned integer to {@code out}, starting at
132 public static void writeUnsignedLeb128(ByteOutput out, int value) {
136 out.writeByte((byte) ((value & 0x7f) | 0x80));
141 out.writeByte((byte) (value & 0x7f));
145 * Writes {@code value} as a signed integer to {@code out}, starting at
148 public static void writeSignedLeb128(ByteOutput out, int value) {
157 out.writeByte((byte) ((value & 0x7f) | (hasMore ? 0x80 : 0)));
  /external/elfutils/0.153/libebl/
eblobjnote.c 190 Elf_Data out = local
198 if (elf32_xlatetom (&out, &in, ebl->data) != NULL)
  /external/emma/core/java12/com/vladium/jcd/cls/attribute/
GenericAttribute_info.java 76 public void writeInClassFormat (final UDataOutputStream out) throws IOException
78 super.writeInClassFormat (out);
80 out.write (m_info, 0, m_info.length);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
ReserializingTestCollectionGenerator.java 56 ObjectOutputStream out = new ObjectOutputStream(bytes); local
57 out.writeObject(object);
  /external/harfbuzz_ng/src/
test-buffer-serialize.cc 14 * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
103 char line[BUFSIZ], out[BUFSIZ]; local
118 out, sizeof (out), NULL,
121 puts (out);

Completed in 49 milliseconds

<<11121314151617181920>>