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

<<11121314151617181920>>

  /external/chromium_org/third_party/skia/experimental/Intersection/
EdgeWalkerQuadralaterals_Test.cpp 14 SkPath path, out; local
25 testSimplify(path, true, out, bitmap);
29 SkPath path, out; local
40 testSimplify(path, true, out, bitmap);
44 SkPath path, out; local
55 testSimplify(path, true, out, bitmap);
59 SkPath path, out; local
70 testSimplify(path, true, out, bitmap);
74 SkPath path, out; local
85 testSimplify(path, true, out, bitmap)
89 SkPath path, out; local
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
vdbetrace.c 76 StrAccum out; /* Accumulate the output here */ local
80 sqlite3StrAccumInit(&out, zBase, sizeof(zBase),
82 out.db = db;
87 sqlite3StrAccumAppend(&out, "-- ", 3);
88 sqlite3StrAccumAppend(&out, zStart, (int)(zRawSql-zStart));
94 sqlite3StrAccumAppend(&out, zRawSql, n);
118 sqlite3StrAccumAppend(&out, "NULL", 4);
120 sqlite3XPrintf(&out, "%lld", pVar->u.i);
122 sqlite3XPrintf(&out, "%!.15g", pVar->r);
132 sqlite3XPrintf(&out, "'%.*q'", utf8.n, utf8.z)
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/
stack_trace_table.cc 27 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
116 void** out = new void*[out_len]; local
117 if (out == NULL) {
120 out_len * sizeof(*out));
129 out[idx++] = reinterpret_cast<void*>(static_cast<uintptr_t>(b->count));
130 out[idx++] = reinterpret_cast<void*>(b->trace.size); // cumulative size
131 out[idx++] = reinterpret_cast<void*>(b->trace.depth);
133 out[idx++] = b->trace.stack[d];
138 out[idx++] = NULL;
156 return out;
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/
stack_trace_table.cc 27 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
116 void** out = new void*[out_len]; local
117 if (out == NULL) {
120 out_len * sizeof(*out));
129 out[idx++] = reinterpret_cast<void*>(static_cast<uintptr_t>(b->count));
130 out[idx++] = reinterpret_cast<void*>(b->trace.size); // cumulative size
131 out[idx++] = reinterpret_cast<void*>(b->trace.depth);
133 out[idx++] = b->trace.stack[d];
138 out[idx++] = static_cast<uintptr_t>(0);
156 return out;
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/tests/
combpath_test.c 23 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
44 const char *out; member in struct:Test_Entry
96 char *out; local
104 out = test->combpath(test->from, test->to);
106 if (strcmp(out, test->out) != 0) {
109 funcname, test->from, test->to, test->out, out);
110 yasm_xfree(out);
114 yasm_xfree(out);
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/genmacro/
genmacro.c 25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37 FILE *in, *out; local
48 fprintf(stderr, "Usage: %s <out> <var> <file> [<file> ...]\n", argv[0]);
52 out = fopen(argv[1], "wt");
54 if (!out) {
61 fprintf(out, "/* This file auto-generated from standard.mac by genmacro.c"
69 fclose(out);
92 fclose(out);
114 fprintf(out, " \"");
117 fputc('\\', out);
    [all...]
  /external/chromium_org/tools/gn/
substitution_writer_unittest.cc 46 ASSERT_EQ("//out/Debug/gen/foo/bar/myfile.tmp", result.value());
73 std::ostringstream out; local
75 setup.settings(), SourceFile("//foo/bar/baz.txt"), types, options, out);
82 out.str());
89 "-i {{source}} --out=bar\"{{source_name_part}}\".o",
96 std::ostringstream out; local
97 SubstitutionWriter::WriteWithNinjaVariables(pattern, options, out);
100 "-i ${in} --out=bar\"${source_name_part}\".o",
101 out.str());
153 EXPECT_EQ("//out/Debug/gen/foo/bar"
    [all...]
  /external/chromium_org/tools/json_schema_compiler/test/
choices_unittest.cc 118 ChoiceType out; local
119 ASSERT_TRUE(ChoiceType::Populate(value, &out));
120 ASSERT_TRUE(out.integers.as_integer.get());
121 EXPECT_FALSE(out.integers.as_integers.get());
122 EXPECT_EQ(4, *out.integers.as_integer);
124 EXPECT_FALSE(out.strings->as_string.get());
125 ASSERT_TRUE(out.strings->as_strings.get());
126 EXPECT_EQ(strings, *out.strings->as_strings);
139 ChoiceType out; local
140 ASSERT_TRUE(ChoiceType::Populate(value, &out));
    [all...]
  /external/chromium_org/ui/gfx/
color_utils_unittest.cc 49 SkColor out = HSLToSkColor(hsl, 255); local
50 EXPECT_EQ(SkColorGetR(out), SkColorGetR(rgb));
51 EXPECT_EQ(SkColorGetG(out), SkColorGetG(rgb));
52 EXPECT_EQ(SkColorGetB(out), SkColorGetB(rgb));
62 SkColor out = HSLToSkColor(hsl, 255); local
63 EXPECT_EQ(SkColorGetR(out), SkColorGetR(rgb));
64 EXPECT_EQ(SkColorGetG(out), SkColorGetG(rgb));
65 EXPECT_EQ(SkColorGetB(out), SkColorGetB(rgb));
  /external/eigen/unsupported/doc/examples/
FFT.cpp 36 T out=0; local
38 out += mag2(vec[k]);
39 return out;
45 T out=0; local
47 out += mag2(vec[k]);
48 return out;
  /external/guava/guava/src/com/google/common/io/
FileBackedOutputStream.java 47 private OutputStream out; field in class:FileBackedOutputStream
94 out = memory;
154 out = memory;
167 out.write(b);
177 out.write(b, off, len);
181 out.close();
185 out.flush();
205 out = transfer;
  /external/guava/guava-tests/test/com/google/common/io/
CountingOutputStreamTest.java 30 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
31 CountingOutputStream counter = new CountingOutputStream(out);
32 assertEquals(written, out.size());
37 assertEquals(written, out.size());
43 assertEquals(written, out.size());
48 assertEquals(written, out.size());
53 assertEquals(written, out.size());
62 assertEquals(written, out.size());
  /external/icu/icu4c/source/layout/
ArabicLayoutEngine.cpp 187 le_int32 i, dir = 1, out = 0; local
190 out = count - 1;
196 for (i = 0; i < count; i += 1, out += dir) {
197 glyphStorage[out] = (LEGlyphID) chars[offset + i];
CanonShaping.cpp 63 le_int32 out = 0, dir = 1; local
66 out = charCount - 1;
70 for (i = 0; i < charCount; i += 1, out += dir) {
74 glyphStorage.setCharIndex(out, index, success);
  /external/icu/icu4c/source/samples/citer/
citer.cpp 18 static UFILE *out; variable
22 u_fprintf(out, "%S", &s);
28 u_fprintf(out, "%C", (UChar) ch);
30 u_fprintf(out, "[CharacterIterator::DONE = 0xFFFF]");
32 u_fprintf(out, "[%X]", ch);
53 u_fprintf(out, "testText = %s", testChars);
56 u_fprintf(out, "clone() or equals() failed: Two clones tested unequal\n");
64 u_fprintf(out, "iter.getText() != clone.getText()\n");
67 u_fprintf(out, "\n");
70 u_fprintf(out, "Forward = ")
    [all...]
  /external/jemalloc/test/unit/
hash.c 26 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
84 uint32_t out; local
85 out = hash_x86_32(key, i, 256-i);
86 memcpy(&hashes[i*hashbytes], &out, hashbytes);
89 uint64_t out[2]; local
90 hash_x86_128(key, i, 256-i, out);
91 memcpy(&hashes[i*hashbytes], out, hashbytes);
94 uint64_t out[2]; local
95 hash_x64_128(key, i, 256-i, out);
96 memcpy(&hashes[i*hashbytes], out, hashbytes)
105 uint32_t out = hash_x86_32(hashes, hashbytes*256, 0); local
109 uint64_t out[2]; local
114 uint64_t out[2]; local
    [all...]
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
PropertyInfo.java 16 * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
245 // Write the object out to a byte array
247 ObjectOutputStream out = new ObjectOutputStream(bos); local
248 out.writeObject(this);
249 out.flush();
250 out.close();
SppPropertyInfo.java 16 * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
245 // Write the object out to a byte array
247 ObjectOutputStream out = new ObjectOutputStream(bos); local
248 out.writeObject(this);
249 out.flush();
250 out.close();
  /external/libopus/tests/
test_opus_padding.c 24 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
49 opus_int16 *out = malloc(FRAMESIZE*CHANNELS*sizeof(*out)); local
52 if (!in || !out) {
53 fprintf(stderr, "FAIL (out of memory)\n");
62 result = opus_decode(decoder, in, PACKETSIZE, out, FRAMESIZE, 0);
66 free(out);
  /external/llvm/
llvm-device-build.mk 72 define transform-device-td-to-out
llvm-host-build.mk 59 define transform-host-td-to-out
  /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);

Completed in 46 milliseconds

<<11121314151617181920>>