HomeSort by relevance Sort by last modified time
    Searched refs:buff (Results 26 - 50 of 549) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/valgrind/none/tests/
res_search.c 12 unsigned char buff[8000]; local
14 if(-1 == res_search(dn, 1, 1, buff, 8000))
51 unsigned char buff[8000]; local
53 if(-1 == res_search(argv[1], 1, 1, buff, 8000))
  /device/generic/goldfish/libqemu/
test_util.h 31 int pipe_send( Pipe* pipe, const void* buff, size_t bufflen );
32 int pipe_recv( Pipe* pipe, void* buff, size_t bufflen );
test_guest_1.c 60 char buff[64]; local
68 int len = snprintf(buff, sizeof(buff), "Hello World %d\n", count);
70 int ret = pipe_send(pipe, buff, len);
90 if (memcmp(buff, buff2, len) != 0) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
lzio.c 24 const char *buff; local
26 buff = z->reader(L, z->data, &size);
28 if (buff == NULL || size == 0)
31 z->p = buff;
68 char *luaZ_openspace (lua_State *L, Mbuffer *buff, size_t n) {
69 if (n > buff->buffsize) {
71 luaZ_resizebuffer(L, buff, n);
73 return buff->buffer;
  /external/syslinux/com32/lua/src/
lzio.c 24 const char *buff; local
26 buff = z->reader(L, z->data, &size);
28 if (buff == NULL || size == 0)
31 z->p = buff;
68 char *luaZ_openspace (lua_State *L, Mbuffer *buff, size_t n) {
69 if (n > buff->buffsize) {
71 luaZ_resizebuffer(L, buff, n);
73 return buff->buffer;
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
PYXWriter.java 37 public void adup(char[] buff, int offset, int length) throws SAXException {
42 public void aname(char[] buff, int offset, int length) throws SAXException {
44 theWriter.write(buff, offset, length);
46 attrName = new String(buff, offset, length);
49 public void aval(char[] buff, int offset, int length) throws SAXException {
50 theWriter.write(buff, offset, length);
55 public void cmnt(char [] buff, int offset, int length) throws SAXException {
57 // theWriter.write(buff, offset, length);
61 public void entity(char[] buff, int offset, int length) throws SAXException { }
65 public void eof(char[] buff, int offset, int length) throws SAXException
    [all...]
  /external/ltp/testcases/kernel/syscalls/adjtimex/
adjtimex02.c 113 static struct timex buff; variable in typeref:struct:timex
130 &buff, setup2, NULL, EINVAL}, {
131 &buff, setup3, NULL, EINVAL}, {
132 &buff, setup4, NULL, EINVAL}, {
133 &buff, setup5, NULL, EINVAL}, {
134 &buff, setup6, cleanup6, EPERM}
166 buff = tim_save;
167 buff.modes = SET_MODE;
235 buff.tick = 900000 / hz - 1;
241 buff.tick = 1100000 / hz + 1
    [all...]
  /external/linux-kselftest/tools/testing/selftests/bpf/
bpf_util.h 14 char buff[128]; local
24 while (fgets(buff, sizeof(buff), fp)) {
25 n = sscanf(buff, "%u-%u", &start, &end);
  /external/toybox/lib/
pending.h 5 int read_password(char * buff, int buflen, char* mesg);
  /tools/test/connectivity/acts/tests/google/power/tel/lab/temp/
liveplot.py 11 buff = collections.deque(np.zeros(HZ*T_SPAN), maxlen=HZ * T_avg) variable
15 buff.append(float(raw_input()))
16 wave.append(sum(buff)/float(len(buff)))
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_printf.cc 33 static int AppendChar(char **buff, const char *buff_end, char c) {
34 if (*buff < buff_end) {
35 **buff = c;
36 (*buff)++;
44 static int AppendNumber(char **buff, const char *buff_end, u64 absolute_value,
56 result += AppendChar(buff, buff_end, '-');
74 result += AppendChar(buff, buff_end, c);
76 if (negative && !pad_with_zero) result += AppendChar(buff, buff_end, '-');
79 result += AppendChar(buff, buff_end, (digit < 10) ? '0' + digit
85 static int AppendUnsigned(char **buff, const char *buff_end, u64 num, u8 base
    [all...]
  /external/ltp/testcases/kernel/io/disktest/
dump.c 42 char buff[10]; local
56 sprintf(buff, "%08lX", (long)TotalBytes);
57 strncat(obuff, buff, (obuff_siz - 1) - strlen(obuff));
63 sprintf(buff, "%02X ", *(ibuff + i));
64 strncat(obuff, buff, (obuff_siz - 1) - strlen(obuff));
75 sprintf(buff, "%c",
77 strncat(obuff, buff, (obuff_siz - 1) - strlen(obuff));
86 char buff[10]; local
99 sprintf(buff, "%08lX ", (long)TotalBytes);
100 strncat(obuff, buff, (obuff_siz - 1) - strlen(obuff))
180 char *buff; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
dynload_beos.c 190 char buff[256]; /* hate hard-coded string sizes... */ local
197 PyOS_snprintf( buff, sizeof(buff),
201 PyOS_snprintf( buff, sizeof(buff),
205 PyErr_SetString( PyExc_ImportError, buff );
218 char buff[256]; /* hate hard-coded string sizes... */ local
226 PyOS_snprintf( buff, sizeof(buff),
231 PyOS_snprintf( buff, sizeof(buff),
    [all...]
  /external/python/cpython2/Python/
dynload_beos.c 190 char buff[256]; /* hate hard-coded string sizes... */ local
197 PyOS_snprintf( buff, sizeof(buff),
201 PyOS_snprintf( buff, sizeof(buff),
205 PyErr_SetString( PyExc_ImportError, buff );
218 char buff[256]; /* hate hard-coded string sizes... */ local
226 PyOS_snprintf( buff, sizeof(buff),
231 PyOS_snprintf( buff, sizeof(buff)
    [all...]
  /external/ImageMagick/coders/
meta.c 1147 *buff,
1192 buff=AcquireImage((ImageInfo *) NULL,exception);
1193 if (buff == (Image *) NULL)
1198 buff=DestroyImage(buff);
1201 AttachBlob(buff->blob,blob,length);
1204 length=(size_t) parse8BIM(image, buff);
1206 (void) WriteBlobByte(buff,0x0);
1210 length=(size_t) parse8BIMW(image, buff);
1212 (void) WriteBlobByte(buff,0x0)
1143 *buff, local
2271 *buff; local
2297 *buff; local
    [all...]
  /device/generic/goldfish/include/
qemu_pipe.h 82 char buff[256]; local
91 snprintf(buff, sizeof buff, "pipe:%s", pipeName);
102 buffLen = strlen(buff);
104 if (!WriteFully(fd, buff, buffLen + 1)) {
  /device/generic/goldfish-opengl/system/OpenglSystemCommon/
qemu_pipe.h 70 char buff[256]; local
79 snprintf(buff, sizeof buff, "pipe:%s", pipeName);
90 buffLen = strlen(buff);
92 if (!WriteFully(fd, buff, buffLen + 1)) {
  /external/libxml2/doc/examples/
tree2.c 30 char buff[256]; local
83 sprintf(buff, "node%d", i);
84 node = xmlNewChild(root_node, NULL, BAD_CAST buff, NULL);
86 sprintf(buff, "node%d%d", i, j);
87 node1 = xmlNewChild(node, NULL, BAD_CAST buff, NULL);
  /external/selinux/libsepol/cil/src/
cil_log.c 55 char buff[MAX_LOG_SIZE]; local
56 vsnprintf(buff, MAX_LOG_SIZE, msg, args);
57 (*cil_log_handler)(cil_log_level, buff);
  /external/adhd/cras/src/server/
cras_mix.h 22 * buff - Buffer of samples to scale.
29 void cras_scale_buffer_increment(snd_pcm_format_t fmt, uint8_t *buff,
36 * buff - Buffer of samples to scale.
41 void cras_scale_buffer(snd_pcm_format_t fmt, uint8_t *buff, unsigned int count,
  /external/libedit/src/
chartype.c 210 static Char *buff = NULL; local
218 if (!buff) {
220 buff = el_malloc(buffsize * sizeof(*buff));
222 dst = buff;
224 used = ct_visual_char(dst, buffsize - (size_t)(dst - buff), *s);
226 used = dst - buff;
228 p = el_realloc(buff, buffsize * sizeof(*buff));
231 buff = p
    [all...]
  /cts/tests/tests/media/libndkaudio/
AudioSource.h 37 virtual int getData(long time, float * buff, int numFrames,
  /device/generic/goldfish/camera/
JpegCompressor.h 76 * buff - Buffer where to copy the JPEG. Must be large enough to contain the
79 void getCompressedImage(void* buff);
  /device/generic/goldfish/camera/jpeg-stub/
JpegStub.h 39 void JpegStub_getCompressedImage(JpegStub* stub, void* buff);
  /device/google/cuttlefish_common/guest/hals/camera/
JpegCompressor.h 71 * buff - Buffer where to copy the JPEG. Must be large enough to contain the
74 void getCompressedImage(void* buff);

Completed in 8882 milliseconds

12 3 4 5 6 7 8 91011>>