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

<<11121314151617181920>>

  /external/chromium_org/third_party/skia/tests/
PathOpsSimplifyRectThreadedTest.cpp 22 bool progress = state.fReporter->verbose(); // FIXME: break out into its own parameter?
42 SkPath path, out; local
174 testSimplify(path, false, out, state, pathStr);
178 testSimplify(path, true, out, state, pathStr);
PathOpsSimplifyTrianglesThreadedTest.cpp 14 bool progress = state.fReporter->verbose(); // FIXME: break out into its own parameter?
40 SkPath path, out; local
63 testSimplify(path, false, out, state, pathStr);
69 testSimplify(path, true, out, state, pathStr);
  /external/chromium_org/third_party/webrtc/common_audio/signal_processing/include/
spl_inl_armv7.h 128 int32_t out = 0; local
130 __asm __volatile ("ssat %0, #16, %1" : "=r"(out) : "r"(value32));
132 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
105 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);
  /external/icu/icu4c/source/samples/dtptngsample/
dtptngsample.cpp 121 UFILE *out = u_finit(stdout, NULL, "UTF-8"); local
133 u_fprintf(out, "%S\n", UnicodeString("Pattern before replacement:").getTerminatedBuffer());
134 u_fprintf(out, "%S\n", pattern.getTerminatedBuffer());
137 u_fprintf(out, "%S\n", UnicodeString("Date/Time format in fr_FR:").getTerminatedBuffer());
138 u_fprintf(out, "%S\n", dateReturned.getTerminatedBuffer());
145 u_fprintf(out, "%S\n", UnicodeString("Pattern after replacement:").getTerminatedBuffer());
146 u_fprintf(out, "%S\n", newPattern.getTerminatedBuffer());
147 u_fprintf(out, "%S\n", UnicodeString("Date/Time format in fr_FR:").getTerminatedBuffer());
148 u_fprintf(out, "%S\n", dateReturned.getTerminatedBuffer());
153 u_fclose(out);
    [all...]
  /external/icu/icu4c/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/javassist/src/main/javassist/tools/web/
Webserver.java 51 * <code>ClassPool</code> are written out under the directory
142 System.out.println(msg);
149 System.out.print(msg1);
150 System.out.print(" ");
151 System.out.println(msg2);
158 System.out.print(msg1);
159 System.out.print(" ");
160 System.out.print(msg2);
161 System.out.print(" ");
162 System.out.println(msg3)
196 OutputStream out = new BufferedOutputStream(clnt.getOutputStream()); local
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/escape/
SimpleEscapingFunction.java 85 public void filter(String in, Appendable out) throws IOException {
98 out.append(in, start, pos);
100 out.append(escapeString);
108 out.append(in, start, pos);
  /external/libunwind/tests/
crasher.c 22 FILE *out = fopen(fname, "w"); local
24 if (!maps || !out)
36 fprintf(out, "0x%jx:%s ", addr, path);
38 fprintf(out, "\n");
40 fclose(out);
47 FILE *out; local
53 out = fopen(fname, "w");
54 if (out == NULL)
77 fprintf(out, "0x%jx:%s ", kv->kve_start, kv->kve_path);
81 fprintf(out, "\n")
    [all...]
  /external/llvm/examples/BrainF/
BrainFDriver.cpp 100 raw_ostream *out = &outs(); local
111 out = new raw_fd_ostream(OutputFilename.c_str(), ErrInfo,
139 //Write it out
149 WriteBitcodeToFile(mod, *out);
153 if (out != &outs())
154 delete out;
  /external/llvm/tools/llvm-diff/
DiffConsumer.h 68 raw_ostream &out; member in class:llvm::DiffConsumer
79 : out(errs()), Differences(false), Indent(0) {}
  /external/mesa3d/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/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
DecoderSpecificInfo.java 49 ByteBuffer out = ByteBuffer.wrap(bytes); local
51 return out;
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/model/
ScalingList.java 18 TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
40 public void write(CAVLCWriter out) throws IOException {
42 out.writeSE(0, "SPS: ");
51 out.writeSE(deltaScale, "SPS: ");
  /external/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/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...]

Completed in 42 milliseconds

<<11121314151617181920>>