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

<<71727374757677787980>>

  /external/chromium_org/third_party/skia/experimental/Intersection/
EdgeWalker_TestUtility.cpp 249 char out[256]; local
251 if (bitWidth * 2 + 1 >= (int) sizeof(out)) {
255 if (bitHeight >= (int) sizeof(out)) {
274 char* outPtr = out;
283 SkDebugf("%s\n", out);
379 bool testSimplify(const SkPath& path, bool fill, SkPath& out, SkBitmap& bitmap) {
383 simplify(path, fill, out);
387 return comparePaths(path, out, bitmap) == 0;
390 bool testSimplifyx(SkPath& path, bool useXor, SkPath& out, State4& state,
397 simplifyx(path, out);
422 SkPath out; local
438 SkPath out; local
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
os_os2.c 28 ** problems to worry about than running out of memory. So there is not
38 ** code. Better to leave the code out, we think.
642 char *out = (char *)calloc( CCHMAXPATH, 1 ); local
644 if( !out )
652 return out; /* if conversion fails, return the empty string */
655 UniStrFromUcs( uclCp, out, tempPath, CCHMAXPATH );
657 return out;
671 char *out = (char *)calloc( CCHMAXPATH, 1 ); local
673 if( !out )
681 return out; /* if conversion fails, return the empty string *
    [all...]
  /external/chromium_org/third_party/webrtc/voice_engine/test/android/android_test/src/org/webrtc/voiceengine/test/
AndroidTest.java 50 // VoE level (0-255), corresponds to level 4 out of 5
649 FileOutputStream out = null; local
651 out = new FileOutputStream(fr);
668 out.write(recBuffer);
960 // System.out.println(e.getMessage());
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/frontends/yasm/
yasm.c 24 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
252 FILE *out = NULL; local
262 out = stdout;
268 /* Default to yasm.out if no obj filename specified */
269 obj_filename = yasm__xstrdup("yasm.out");
274 obj_filename = yasm__xstrdup("yasm.out");
277 cur_objfmt_module->extension, "yasm.out");
282 out = open_file(obj_filename, "wt");
283 if (!out)
320 fputs(preproc_buf, out);
1258 char *out, *outext; local
    [all...]
  /external/chromium_org/tools/traceline/traceline/
main.cc 32 std::string out; local
33 out.push_back('"');
40 out.push_back('\\'); out.push_back(c);
44 out.push_back('\\'); out.push_back('x');
45 out.push_back(hextable[c >> 4]); out.push_back(hextable[c & 0xf]);
48 out.push_back(c);
53 out.push_back('"')
    [all...]
  /external/chromium_org/ui/base/clipboard/
clipboard_aurax11.cc 227 // Private implementation of our X11 integration. Keeps X11 headers out of the
265 // the data out of |clipboard_selection_| or |primary_selection_|. If the
421 std::vector< ::Atom> out; local
428 out.push_back(it->first);
446 out.push_back(atom_array[i]);
465 out.push_back(*it);
471 return TargetList(out, &atom_cache_);
  /external/chromium_org/ui/views/layout/
grid_layout.cc 833 gfx::Size out; local
834 SizeRowsAndColumns(false, 0, 0, &out);
835 out.SetSize(std::max(out.width(), minimum_size_.width()),
836 std::max(out.height(), minimum_size_.height()));
837 return out;
    [all...]
  /external/deqp/modules/gles3/functional/
es3fFboRenderTest.cpp 164 std::vector<std::string> out; local
169 out.push_back("GL_EXT_color_buffer_half_float");
175 out.push_back("GL_EXT_color_buffer_half_float");
182 out.push_back("GL_EXT_color_buffer_float");
188 return out;
224 std::ostringstream out; local
229 out << sep;
230 out << *iter;
233 return out.str();
    [all...]
  /external/deqp/modules/gles31/functional/
es31fShaderIntegerFunctionTests.cpp 773 const deUint32 out = ((const deUint32*)outputs[0])[compNdx]; local
778 if (out != ref)
841 const deInt32 out = ((const deUint32*)outputs[0])[compNdx]; local
846 if ((out&cmpMask) != (ref&cmpMask))
898 const deInt32 out = ((const deUint32*)outputs[0])[compNdx]; local
901 if ((out&cmpMask) != (ref&cmpMask))
947 const int out = ((const int*)outputs[0])[compNdx]; local
1007 const int out = ((const int*)outputs[0])[compNdx]; local
1085 const int out = ((const deInt32*)outputs[0])[compNdx]; local
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/io/instructions/
InstructionCodec.java 40 @Override public void encode(DecodedInstruction insn, CodeOutput out) {
41 out.write(insn.getOpcodeUnit());
55 @Override public void encode(DecodedInstruction insn, CodeOutput out) {
56 out.write(insn.getOpcodeUnit());
72 @Override public void encode(DecodedInstruction insn, CodeOutput out) {
73 out.write(
91 @Override public void encode(DecodedInstruction insn, CodeOutput out) {
92 out.write(
109 @Override public void encode(DecodedInstruction insn, CodeOutput out) {
110 out.write(codeUnit(insn.getOpcode(), insn.getA()))
    [all...]
  /external/doclava/src/com/google/doclava/
Converter.java 195 TagInfo[] out = new TagInfo[len]; local
199 * System.out.println("Tag name='" + t.name() + "' kind='" + t.kind() + "'");
202 out[i] = Converter.convertSeeTag((SeeTag) t, base);
204 out[i] = Converter.convertThrowsTag((ThrowsTag) t, base);
206 out[i] = Converter.convertParamTag((ParamTag) t, base);
208 out[i] = Converter.convertTag(t);
211 return out;
459 ArrayList<FieldInfo> out = new ArrayList<FieldInfo>();
464 out.add(f);
467 return out.toArray(new FieldInfo[out.size()])
629 AnnotationInstanceInfo[] out = new AnnotationInstanceInfo[len]; local
    [all...]
  /external/e2fsprogs/misc/
badblocks.c 113 static FILE *out; variable
153 fprintf(out, "%lu\n", (unsigned long) bad);
154 fflush(out);
248 fflush(out);
535 /* fprintf (out, "%lu\n", nextbad); */
795 fflush (out);
832 /* fprintf (out, "%lu\n", nextbad); */
1255 out = fopen (output_file, "w");
1256 if (out == NULL)
1265 out = stdout
    [all...]
  /external/fio/
options.c 606 goto out;
620 goto out;
624 goto out;
641 goto out;
650 goto out;
686 out:
754 log_err("fio: pareto input out of range (0 < input < 1.0)\n");
886 goto out;
891 goto out;
895 out
3695 char out[OPT_LEN_MAX+1]; local
    [all...]
  /external/icu/icu4c/source/common/
ucnv.c 404 /*returns a single Name from the list, will return NULL if out of bounds
1001 * (continue converting by breaking out of only the inner loop)
2490 UConverter in, out; \/* stack-allocated *\/ local
    [all...]
  /external/icu/icu4c/source/extra/uconv/
uconv.cpp 513 char *out; local
516 out = buffer;
519 &out, buffer + sizeof(buffer),
524 if (NULL != ucnv_detectUnicodeSignature(buffer, (int32_t)(out - buffer), NULL, &err) &&
866 UnicodeString out; local
882 out.append(chunk);
891 u = out;
966 // get the corresponding byte offset out of fromoffsets[]
    [all...]
  /external/icu/icu4c/source/test/cintltst/
cnormtst.c 707 UChar out[20]={ 0xffff, 0xffff, 0xffff, 0xffff }; local
720 length=unorm_normalize(in, 2, UNORM_NFD, 0, out, 3, &errorCode);
725 if(length!=3 || out[2]!=0x308 || out[3]!=0xffff) {
726 log_err("unorm_normalize(NFD ma<umlaut>)=%ld failed with out[]=U+%04x U+%04x U+%04x U+%04x\n", length, out[0], out[1], out[2], out[3]);
734 length=unorm_normalize(NULL, 0, UNORM_NFC, 0, out, 20, &errorCode)
1626 UChar out[32]; local
    [all...]
  /external/icu/icu4c/source/test/intltest/
dtfmrgts.cpp 1148 UnicodeString out; local
    [all...]
rbbiapts.cpp 1199 UnicodeString out; local
    [all...]
transrt.cpp 90 * pointer automatically when the wrapper goes out of scope.
330 // PrintWriter out;
1110 FILE *out = fopen(filename, "w"); local
    [all...]
tzfmttst.cpp 1013 UnicodeString out; local
1020 assertEquals(UnicodeString("Format result for ") + DATA[i].tzid + " (Test Case " + i + ")", expected, out); local
    [all...]
  /external/icu/icu4c/source/tools/gencnval/
gencnval.c 187 writeAliasTable(UNewDataMemory *out);
223 UNewDataMemory *out; local
244 "\t-v or --verbose prints out extra information about the alias table\n"
292 out=udata_create(options[DESTDIR].value, DATA_TYPE, DATA_NAME, &dataInfo,
300 writeAliasTable(out);
303 udata_finish(out, &errorCode);
    [all...]
  /external/icu/icu4c/source/tools/genrb/
wrtxml.cpp 54 static FileStream* out=NULL; variable
90 // write data to out file
414 write_utf8_file(out,UnicodeString(tagStart));
415 write_utf8_file(out,UnicodeString(buf, bufLen, "UTF-8"));
416 write_utf8_file(out,UnicodeString(tagEnd));
417 write_utf8_file(out,UnicodeString("\n"));
450 write_tabs(out);
465 write_utf8_file(out, UnicodeString(" "));
466 write_utf8_file(out, UnicodeString(name));
467 write_utf8_file(out, UnicodeString(" = \""))
    [all...]
  /external/javassist/src/main/javassist/bytecode/
ConstPool.java 1146 PrintWriter out = new PrintWriter(bout); local
    [all...]
  /external/kernel-headers/original/uapi/rdma/
rdma_user_cm.h 28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
77 __u16 out; member in struct:rdma_ucm_cmd_hdr
  /external/libcxxabi/src/Unwind/
UnwindCursor.hpp 648 _Self operator+(size_t a) { _Self out = *this; out._i += a; return out; } local
649 _Self operator-(size_t a) { assert(_i >= a); _Self out = *this; out._i -= a; return out; } local
    [all...]

Completed in 1117 milliseconds

<<71727374757677787980>>