HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 326 - 350 of 4560) sorted by null

<<11121314151617181920>>

  /external/libweave/third_party/chromium/base/strings/
stringprintf_unittest.cc 22 static void StringAppendVTestHelper(std::string* out, const char* format, ...) {
27 StringAppendV(out, format, ap);
91 std::string out; local
92 SStringPrintf(&out, "%s", src);
93 EXPECT_STREQ(src, out.c_str());
113 std::string out; local
114 SStringPrintf(&out, fmt, src, src, src, src, src, src, src);
124 EXPECT_STREQ(ref, out.c_str());
129 std::string out; local
130 StringAppendVTestHelper(&out, "%d foo %s", 1, "bar")
147 std::string out; local
162 std::wstring out; local
177 std::string out; local
    [all...]
  /external/llvm/include/llvm/Support/
SwapByteOrder.h 101 } in, out; local
103 out.i = SwapByteOrder_32(in.i);
104 return out.f;
111 } in, out; local
113 out.i = SwapByteOrder_64(in.i);
114 return out.d;
  /external/llvm/
llvm-device-build.mk 70 define transform-device-td-to-out
llvm-host-build.mk 87 define transform-host-td-to-out
  /external/lzma/Java/Tukaani/src/
LZMADecDemo.java 35 System.out.write(buf, 0, size);
55 System.out.write(buf, 0, size);
XZDecDemo.java 29 System.out.write(buf, 0, size);
46 System.out.write(buf, 0, size);
XZSeekDecDemo.java 52 System.out.write(buf, 0, size);
69 System.out.write(buf, 0, size);
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/
LZMA2OutputStream.java 22 private FinishableOutputStream out; field in class:LZMA2OutputStream
54 LZMA2OutputStream(FinishableOutputStream out, LZMA2Options options) {
55 if (out == null)
58 this.out = out;
59 outData = new DataOutputStream(out);
160 rc.write(out);
172 lz.copyUncompressed(out, uncompressedSize, chunkSize);
194 out.write(0x00);
218 out.flush()
    [all...]
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/common/
EncoderUtil.java 17 public static void writeCRC32(OutputStream out, byte[] buf)
24 out.write((byte)(value >>> (i * 8)));
27 public static void encodeVLI(OutputStream out, long num)
30 out.write((byte)(num | 0x80));
34 out.write((byte)num);
  /external/mesa3d/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/mesa3d/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/mockito/src/org/mockito/internal/debugging/
MockitoDebuggerImpl.java 22 String out = ""; local
24 out += line("********************************");
25 out += line("*** Mockito interactions log ***");
26 out += line("********************************");
28 out += line(i.toString());
29 out += line(" invoked: " + i.getLocation());
31 out += line(" stubbed: " + i.stubInfo().stubbedAt().toString());
37 return print(out);
39 out += line("********************************");
40 out += line("*** Unused stubs ***");
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
Hex.java 37 char[] out = new char[(l << 1) + (group > 0 ? (l / group) : 0)]; local
41 out[j++] = '-';
44 out[j++] = DIGITS[(0xF0 & data[i]) >>> 4];
45 out[j++] = DIGITS[0x0F & data[i]];
47 return new String(out);