/external/chromium_org/third_party/yasm/source/patched-yasm/tools/genperf/ |
genperf.c | 25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 150 perfect_gen(FILE *out, const char *lookup_function_name, 201 fprintf(out, "static const struct %s *\n", struct_name); 202 fprintf(out, "%s(const char *key, size_t len)\n", lookup_function_name); 203 fprintf(out, "{\n"); 208 fprintf(out, " static const struct %s pd[%lu] = {\n", struct_name, nkeys); 220 fprintf(out, "#line %u \"%s\"\n", kw->line, filename); 221 fprintf(out, " {\"%s\"%s}", kw->name, kw->args); 223 fprintf(out, " { NULL }"); 226 fprintf(out, ","); 252 FILE *in, *out; local [all...] |
/external/chromium_org/third_party/zlib/ |
inflate.c | 48 * - Pull out common wnext == 0 case for speed in inflate_fast() 75 * for the in() and out() functions 96 local int updatewindow OF((z_streamp strm, unsigned out)); 287 Write out the inffixed.h that is #include'd above. Defining MAKEFIXED also 302 a.out > inffixed.h 358 local int updatewindow(strm, out) 360 unsigned out; 383 copy = out - strm->avail_out; 599 unsigned in, out; /* save starting available input and output */ local 620 out = left [all...] |
/external/chromium_org/tools/gn/ |
command_desc.cc | 311 void OutputSourceOfDep(const ParseNode* origin, std::ostream& out) { 315 out << " (Added by " + location.file()->name().value() << ":" 319 // Templatized writer for writing out different config value types. 322 void operator()(const std::string& str, std::ostream& out) const { 323 out << " " << str << "\n"; 327 void operator()(const SourceDir& dir, std::ostream& out) const { 328 out << " " << FormatSourceDir(dir) << "\n"; 341 std::ostringstream out; local 352 out << " From " << config->label().GetUserVisibleName(false) << "\n"; 353 OutputSourceOfDep(iter.origin(), out); [all...] |
trace.cc | 64 std::ostream& out) { 65 out << "File parse times: (time in ms, name)\n"; 70 out << base::StringPrintf(" %8.2f ", 72 out << loads[i]->name() << std::endl; 77 std::ostream& out) { 95 out << base::StringPrintf(" %8.2f %d ", 97 out << *sorted[i].name_ptr << std::endl; 102 std::ostream& out) { 103 out << "File execute times: (total time in ms, # executions, name)\n"; 104 SummarizeCoalesced(execs, out); 215 std::ostringstream out; local 240 std::ostringstream out; local [all...] |
/external/chromium_org/tools/telemetry/telemetry/core/ |
bitmaptools.cc | 20 bool ReadInt(int* out) { 21 return fread(out, sizeof(*out), 1, stdin) == 1; 126 unsigned char* out = new unsigned char[out_size]; local 127 unsigned char* dst = out; 135 WriteResponse(out, out_size); 136 delete[] out;
|
/external/chromium_org/ui/gfx/codec/ |
jpeg_codec.cc | 68 : out(o), 75 std::vector<unsigned char>* out; member in struct:gfx::__anon20672::JpegEncoderState 77 // Number of bytes in the 'out' buffer that are actually used (see above). 92 state->out->resize(initial_output_buffer_size); 95 cinfo->dest->next_output_byte = &(*state->out)[0]; 103 // reaches zero). In typical applications, it should write out the *entire* 115 state->image_buffer_used = state->out->size(); 118 state->out->resize(state->out->size() * 2); 121 cinfo->dest->next_output_byte = &(*state->out)[state->image_buffer_used] [all...] |
/external/chromium_org/ui/views/controls/webview/ |
web_dialog_view.cc | 70 gfx::Size out; local 72 delegate_->GetDialogSize(&out); 73 return out; 77 gfx::Size out; local 79 delegate_->GetMinimumDialogSize(&out); 80 return out;
|
/external/deqp/modules/egl/ |
teglChooseConfigReference.cpp | 346 std::vector<SurfaceConfig> out; local 350 if (isMatch(*iter)) out.push_back(*iter); 353 return out;
|
teglGetProcAddressTests.cpp | 55 std::vector<std::string> out; local 59 out.push_back(std::string(cStrArray[ndx])); 62 return out;
|
/external/deqp/modules/gles3/functional/ |
es3fFboTestCase.cpp | 208 std::vector<std::string> out; local 215 out.push_back("GL_EXT_color_buffer_half_float"); 221 out.push_back("GL_EXT_color_buffer_half_float"); 228 out.push_back("GL_EXT_color_buffer_float"); 234 return out;
|
es3fShaderPackingFunctionTests.cpp | 195 void* out = &outputs[0]; local 198 m_executor->execute((int)inputs.size(), &in, &out); 283 void* out = &outputs[0]; local 286 m_executor->execute((int)inputs.size(), &in, &out); 386 void* out = &outputs[0]; local 389 m_executor->execute((int)inputs.size(), &in, &out); 474 void* out = &outputs[0]; local 477 m_executor->execute((int)inputs.size(), &in, &out); 582 void* out = &outputs[0]; local 585 m_executor->execute((int)inputs.size(), &in, &out); 685 void* out = &outputs[0]; local [all...] |
/external/deqp/modules/gles31/functional/ |
es31fFboTestCase.cpp | 212 std::vector<std::string> out; local 219 out.push_back("GL_EXT_color_buffer_half_float"); 225 out.push_back("GL_EXT_color_buffer_half_float"); 232 out.push_back("GL_EXT_color_buffer_float"); 239 return out;
|
/external/dexmaker/src/dx/java/com/android/dx/dex/code/ |
DalvInsnList.java | 123 * @param out {@code non-null;} where to write to 125 public void writeTo(AnnotatedOutput out) { 126 int startCursor = out.getCursor(); 129 if (out.annotates()) { 130 boolean verbose = out.isVerbose(); 138 s = insn.listingString(" ", out.getAnnotationWidth(), 145 out.annotate(codeBytes, s); 147 out.annotate(codeBytes, ""); 155 insn.writeTo(out); 163 int written = (out.getCursor() - startCursor) / 2 [all...] |
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/ |
CstString.java | 86 char out; local 96 out = (char) v0; 118 out = (char) value; 145 out = (char) value; 154 chars[outAt] = out;
|
/external/dnsmasq/src/ |
util.c | 50 static uint32 out[8]; variable 73 for (i = 0;i < 8;++i) out[i] = seed[24 + i]; 82 for (i = 0;i < 8;++i) out[i] ^= t[i + 4]; 96 return (unsigned short) out[--outleft]; 368 /* in may equal out, when maxlen may be -1 (No max len). */ 369 int parse_hex(char *in, unsigned char *out, int maxlen, 399 out[i] = strtol(in, NULL, 16);
|
/external/e2fsprogs/lib/ext2fs/ |
tst_bitmaps.c | 410 blk64_t out; local 429 start, end, &out); 435 printf("First unmarked block is %llu\n", out); 533 ext2_ino_t out; local 552 start, end, &out); 558 printf("First unmarked inode is %u\n", out);
|
/external/e2fsprogs/misc/ |
blkid.c | 42 static void print_version(FILE *out) 44 fprintf(out, "%s %s (%s)\n", progname, BLKID_VERSION, BLKID_DATE); 49 FILE *out = error ? stderr : stdout; local 51 print_version(out); 52 fprintf(out,
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/generators/rss/ |
RSSFeedUpdateEntryTask.java | 103 System.out.println(Messages.getString("RSSFeedUpdateEntryTask.SearchingFor") + SP + xpath + (!isNullString(replacement)?", " + Messages.getString("RSSFeedUpdateEntryTask.ReplacingWith") + " '" + replacement + "'":NS)); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$ //$NON-NLS-6$ //$NON-NLS-7$ 143 System.out.println(SEP); 144 transformer.transform(new DOMSource(newNode),new StreamResult(System.out)); 145 System.out.println(SEP); 164 System.out.println(Messages.getString("RSSFeedCommon.RSSFeedFile") + SP + file.toString()+ " "+ Messages.getString("RSSFeedUpdateEntryTask.DoesNotExist")); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ 214 if (debug==0) { System.out.print(xpath + (isNullString(replacement)?" = ":" :: ")); } //$NON-NLS-1$ //$NON-NLS-2$ 224 if (debug>0) { System.out.print(Messages.getString("RSSFeedUpdateEntryTask.DebugFoundAttribute")); } //$NON-NLS-1$ 229 if (debug>0) { System.out.print(Messages.getString("RSSFeedUpdateEntryTask.DebugFoundElement")); } //$NON-NLS-1$ 234 if (debug>0) { System.out.print(Messages.getString("RSSFeedUpdateEntryTask.DebugFoundText")); } //$NON-NLS-1$ 244 System.out.print((debug>0?aNode.getNodeName() + " = ":NS) + aNode.getNodeValue()); //$NON-NLS-1$ //$NON-NLS-2 [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/ |
RawDataTable.java | 99 if (this.debug) System.out.print("\t"+displayValue); 102 if (this.debug) System.out.println(); 105 if (this.debug) System.out.println("\n");
|
/external/eigen/unsupported/Eigen/src/Eigenvalues/ |
ArpackSelfAdjointEigenSolver.h | 219 * Output: \verbinclude SelfAdjointEigenSolver_eigenvectors.out 241 * Output: \verbinclude SelfAdjointEigenSolver_eigenvalues.out 264 * Output: \verbinclude SelfAdjointEigenSolver_operatorSqrt.out 289 * Output: \verbinclude SelfAdjointEigenSolver_operatorInverseSqrt.out 516 Scalar *out = workd + ipntr[1] - 1; local 535 Matrix<Scalar, Dynamic, 1>::Map(out, n) = A * Matrix<Scalar, Dynamic, 1>::Map(in, n); 541 internal::OP<MatrixSolver, MatrixType, Scalar, BisSPD>::applyOP(OP, A, n, in, out); 551 Matrix<Scalar, Dynamic, 1>::Map(out, n) = OP.solve(Matrix<Scalar, Dynamic, 1>::Map(in, n)); 559 Matrix<Scalar, Dynamic, 1>::Map(out, n) = OP.solve(Matrix<Scalar, Dynamic, 1>::Map(in, n)); 561 Matrix<Scalar, Dynamic, 1>::Map(out, n) = OP.solve(B * Matrix<Scalar, Dynamic, 1>::Map(in, n)) 567 Scalar *out = workd + ipntr[1] - 1; local [all...] |
/external/emma/core/java12/com/vladium/jcd/parser/ |
ClassDefParser.java | 107 if (DEBUG) System.out.println (s_line); 111 if (DEBUG) System.out.println (s_line); 117 if (DEBUG) System.out.println (s_line); 120 if (DEBUG) System.out.println (s_line); 123 if (DEBUG) System.out.println (s_line); 126 if (DEBUG) System.out.println (s_line); 129 if (DEBUG) System.out.println (s_line); 138 if (DEBUG) System.out.println ("magic: [" + Long.toHexString (magic) + ']'); 151 System.out.println ("major_version: [" + major_version + ']'); 152 System.out.println ("minor_version: [" + minor_version + ']') [all...] |
/external/freetype/src/base/ |
ftoutln.c | 935 FT_Vector in, out, shift; local 962 out.x = v_next.x - v_cur.x; 963 out.y = v_next.y - v_cur.y; 964 l_out = FT_Vector_Length( &out ); 967 out.x = FT_DivFix( out.x, l_out ); 968 out.y = FT_DivFix( out.y, l_out ); 971 d = FT_MulFix( in.x, out.x ) + FT_MulFix( in.y, out.y ) [all...] |
/external/guava/guava/src/com/google/common/collect/ |
ComputingConcurrentHashMap.java | 398 private void writeObject(ObjectOutputStream out) throws IOException { 399 out.defaultWriteObject(); 400 writeMapTo(out);
|
/external/guava/guava-tests/test/com/google/common/hash/ |
AbstractStreamingHasherTest.java | 153 final ByteArrayOutputStream out = new ByteArrayOutputStream(); field in class:AbstractStreamingHasherTest.Sink 179 out.write(bb.get()); 199 assertEquals(out.toByteArray().length, ceilToMultiple(expectedBytes, chunkSize)); 211 byte[] got = out.toByteArray();
|
/external/icu/icu4c/source/layout/ |
ArabicShaping.cpp | 141 // shaper.shape(out, 1) (isolate to final) 167 le_int32 in, e, out = 0, dir = 1; local 170 out = charCount - 1; 175 for (in = offset, e = offset + charCount; in < e; in += 1, out += dir) { 180 glyphStorage.setAuxData(out, NO_FEATURES, success); 182 glyphStorage.setAuxData(out, ISOL_FEATURES, success); 198 adjustTags(out, 1, glyphStorage); 204 erout = out;
|