HomeSort by relevance Sort by last modified time
    Searched refs:buf (Results 151 - 175 of 13582) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/libcxx/test/std/input.output/string.streams/stringbuf/stringbuf.assign/
move.pass.cpp 24 std::stringbuf buf; local
25 buf = move(buf1);
26 assert(buf.str() == "testing");
30 std::stringbuf buf; local
31 buf = move(buf1);
32 assert(buf.str() == "testing");
36 std::stringbuf buf; local
37 buf = move(buf1);
38 assert(buf.str() == "testing");
42 std::wstringbuf buf; local
48 std::wstringbuf buf; local
54 std::wstringbuf buf; local
    [all...]
nonmember_swap.pass.cpp 26 std::stringbuf buf; local
27 swap(buf, buf1);
28 assert(buf.str() == "testing");
33 std::stringbuf buf; local
34 swap(buf, buf1);
35 assert(buf.str() == "testing");
40 std::stringbuf buf; local
41 swap(buf, buf1);
42 assert(buf.str() == "testing");
47 std::wstringbuf buf; local
54 std::wstringbuf buf; local
61 std::wstringbuf buf; local
    [all...]
  /external/libvpx/libvpx/
vpxstats.c 25 stats->buf.sz = 0;
26 stats->buf.buf = NULL;
38 stats->buf.sz = stats->buf_alloc_sz = ftell(stats->file);
41 stats->buf.buf = malloc(stats->buf_alloc_sz);
43 if (!stats->buf.buf)
47 nbytes = fread(stats->buf.buf, 1, stats->buf.sz, stats->file)
    [all...]
  /external/ltp/testcases/kernel/device-drivers/v4l/user_space/
v4l2_show.c 46 void show_v4l2_buffer(struct v4l2_buffer *buf)
68 buf->index,
69 buf->type,
70 buf->bytesused,
71 buf->flags,
72 buf->field,
73 buf->timestamp.tv_sec,
74 buf->timestamp.tv_usec,
75 buf->timecode.type,
76 buf->timecode.flags
    [all...]
  /external/strace/tests/
sprintrc.c 55 static char buf[4096]; local
64 ? snprintf(buf, sizeof(buf), formats[fmt], errno2name())
65 : snprintf(buf, sizeof(buf), "%ld", rc);
69 if ((size_t) ret >= sizeof(buf))
71 " no more than %zu", ret, sizeof(buf));
73 return buf;
  /external/strace/tests-m32/
sprintrc.c 55 static char buf[4096]; local
64 ? snprintf(buf, sizeof(buf), formats[fmt], errno2name())
65 : snprintf(buf, sizeof(buf), "%ld", rc);
69 if ((size_t) ret >= sizeof(buf))
71 " no more than %zu", ret, sizeof(buf));
73 return buf;
  /external/strace/tests-mx32/
sprintrc.c 55 static char buf[4096]; local
64 ? snprintf(buf, sizeof(buf), formats[fmt], errno2name())
65 : snprintf(buf, sizeof(buf), "%ld", rc);
69 if ((size_t) ret >= sizeof(buf))
71 " no more than %zu", ret, sizeof(buf));
73 return buf;
  /external/syslinux/com32/lib/
getcwd.c 9 char *getcwd(char *buf, size_t size)
11 return core_getcwd(buf, size);
  /external/valgrind/coregrind/m_gdbserver/
regcache.h 45 void registers_to_string (char *buf);
49 void registers_from_string (const char *buf);
65 /* *mod set to True if *buf provides a new value. */
66 void supply_register (int n, const void *buf, Bool *mod);
68 /* Reads register data from buf (hex string in target byte order)
70 *mod set to True if *buf provides a new value. */
71 void supply_register_from_string (int n, const char *buf, Bool *mod);
73 /* *mod set to True if *buf provides a new value. */
74 void supply_register_by_name (const char *name, const void *buf, Bool *mod);
76 void collect_register (int n, void *buf);
    [all...]
  /external/zlib/src/contrib/blast/
blast.h 38 typedef unsigned (*blast_in)(void *how, unsigned char **buf);
39 typedef int (*blast_out)(void *how, unsigned char *buf, unsigned len);
52 * The input function is invoked: len = infun(how, &buf), where buf is set by
58 * The output function is invoked: err = outfun(how, buf, len), where the bytes
59 * to be written are buf[0..len-1]. If err is not zero, then blast() returns
  /frameworks/base/core/java/android/database/
CharArrayBuffer.java 27 public CharArrayBuffer(char[] buf) {
28 data = buf;
  /hardware/intel/img/hwcomposer/merrifield/ips/common/
Wsbm.cpp 57 bool Wsbm::allocateTTMBuffer(uint32_t size, uint32_t align, void ** buf)
59 int ret = psbWsbmAllocateTTMBuffer(size, align, buf);
68 bool Wsbm::allocateTTMBufferUB(uint32_t size, uint32_t align, void ** buf, void *user_pt)
70 int ret = psbWsbmAllocateFromUB(size, align, buf, user_pt);
79 bool Wsbm::destroyTTMBuffer(void * buf)
81 int ret = psbWsbmDestroyTTMBuffer(buf);
90 void * Wsbm::getCPUAddress(void * buf)
92 return psbWsbmGetCPUAddress(buf);
95 uint32_t Wsbm::getGttOffset(void * buf)
97 return psbWsbmGetGttOffset(buf);
    [all...]
  /hardware/intel/img/hwcomposer/moorefield_hdmi/ips/common/
Wsbm.cpp 57 bool Wsbm::allocateTTMBuffer(uint32_t size, uint32_t align, void ** buf)
59 int ret = psbWsbmAllocateTTMBuffer(size, align, buf);
68 bool Wsbm::allocateTTMBufferUB(uint32_t size, uint32_t align, void ** buf, void *user_pt)
70 int ret = psbWsbmAllocateFromUB(size, align, buf, user_pt);
79 bool Wsbm::destroyTTMBuffer(void * buf)
81 int ret = psbWsbmDestroyTTMBuffer(buf);
90 void * Wsbm::getCPUAddress(void * buf)
92 return psbWsbmGetCPUAddress(buf);
95 uint32_t Wsbm::getGttOffset(void * buf)
97 return psbWsbmGetGttOffset(buf);
    [all...]
  /libcore/ojluni/src/test/java/time/test/java/time/format/
TestCharLiteralPrinter.java 74 buf.append("EXISTING");
75 getFormatter('a').formatTo(EMPTY_DTA, buf);
76 assertEquals(buf.toString(), "EXISTINGa");
80 buf.append("EXISTING");
81 getFormatter('a').formatTo(dta, buf);
82 assertEquals(buf.toString(), "EXISTINGa");
86 getFormatter('a').formatTo(dta, buf);
87 assertEquals(buf.toString(), "a");
TestStringLiteralPrinter.java 74 buf.append("EXISTING");
75 getFormatter("hello").formatTo(EMPTY_DTA, buf);
76 assertEquals(buf.toString(), "EXISTINGhello");
80 buf.append("EXISTING");
81 getFormatter("hello").formatTo(dta, buf);
82 assertEquals(buf.toString(), "EXISTINGhello");
89 getFormatter("hello").formatTo(dta, buf);
90 assertEquals(buf.toString(), "hello");
  /prebuilts/ndk/r11/sources/cxx-stl/gabi++/tests/
test_gabixx_exceptions.cpp 21 char *buf; local
24 buf = new char[512];
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.str.strstreams/depr.istrstream/depr.istrstream.members/
str.pass.cpp 22 const char buf[] = "123 4.5 dog"; local
23 std::istrstream in(buf);
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/string.streams/stringbuf/stringbuf.assign/
member_swap.pass.cpp 24 std::stringbuf buf; local
25 buf.swap(buf1);
26 assert(buf.str() == "testing");
31 std::stringbuf buf; local
32 buf.swap(buf1);
33 assert(buf.str() == "testing");
38 std::stringbuf buf; local
39 buf.swap(buf1);
40 assert(buf.str() == "testing");
45 std::wstringbuf buf; local
52 std::wstringbuf buf; local
59 std::wstringbuf buf; local
    [all...]
move.pass.cpp 24 std::stringbuf buf; local
25 buf = move(buf1);
26 assert(buf.str() == "testing");
30 std::stringbuf buf; local
31 buf = move(buf1);
32 assert(buf.str() == "testing");
36 std::stringbuf buf; local
37 buf = move(buf1);
38 assert(buf.str() == "testing");
42 std::wstringbuf buf; local
48 std::wstringbuf buf; local
54 std::wstringbuf buf; local
    [all...]
nonmember_swap.pass.cpp 26 std::stringbuf buf; local
27 swap(buf, buf1);
28 assert(buf.str() == "testing");
33 std::stringbuf buf; local
34 swap(buf, buf1);
35 assert(buf.str() == "testing");
40 std::stringbuf buf; local
41 swap(buf, buf1);
42 assert(buf.str() == "testing");
47 std::wstringbuf buf; local
54 std::wstringbuf buf; local
61 std::wstringbuf buf; local
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/gabi++/tests/
test_gabixx_exceptions.cpp 21 char *buf; local
24 buf = new char[512];
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/depr/depr.str.strstreams/depr.istrstream/depr.istrstream.members/
str.pass.cpp 22 const char buf[] = "123 4.5 dog"; local
23 std::istrstream in(buf);
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/input.output/string.streams/stringbuf/stringbuf.assign/
member_swap.pass.cpp 24 std::stringbuf buf; local
25 buf.swap(buf1);
26 assert(buf.str() == "testing");
31 std::stringbuf buf; local
32 buf.swap(buf1);
33 assert(buf.str() == "testing");
38 std::stringbuf buf; local
39 buf.swap(buf1);
40 assert(buf.str() == "testing");
45 std::wstringbuf buf; local
52 std::wstringbuf buf; local
59 std::wstringbuf buf; local
    [all...]
move.pass.cpp 24 std::stringbuf buf; local
25 buf = move(buf1);
26 assert(buf.str() == "testing");
30 std::stringbuf buf; local
31 buf = move(buf1);
32 assert(buf.str() == "testing");
36 std::stringbuf buf; local
37 buf = move(buf1);
38 assert(buf.str() == "testing");
42 std::wstringbuf buf; local
48 std::wstringbuf buf; local
54 std::wstringbuf buf; local
    [all...]
nonmember_swap.pass.cpp 26 std::stringbuf buf; local
27 swap(buf, buf1);
28 assert(buf.str() == "testing");
33 std::stringbuf buf; local
34 swap(buf, buf1);
35 assert(buf.str() == "testing");
40 std::stringbuf buf; local
41 swap(buf, buf1);
42 assert(buf.str() == "testing");
47 std::wstringbuf buf; local
54 std::wstringbuf buf; local
61 std::wstringbuf buf; local
    [all...]

Completed in 1190 milliseconds

1 2 3 4 5 67 8 91011>>