HomeSort by relevance Sort by last modified time
    Searched refs:buf (Results 251 - 275 of 9466) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/libvpx/source/libvpx/
y4menc.h 24 int y4m_write_file_header(char *buf, size_t len, int width, int height,
27 int y4m_write_frame_header(char *buf, size_t len);
  /external/chromium_org/third_party/openssl/openssl/crypto/des/
read2pwd.c 120 char buf[BUFSIZ],buff[BUFSIZ]; local
122 if ((ok=UI_UTIL_read_pw(buf,buff,BUFSIZ,prompt,verify)) == 0)
123 DES_string_to_key(buf,key);
124 OPENSSL_cleanse(buf,BUFSIZ);
133 char buf[BUFSIZ],buff[BUFSIZ]; local
135 if ((ok=UI_UTIL_read_pw(buf,buff,BUFSIZ,prompt,verify)) == 0)
136 DES_string_to_2keys(buf,key1,key2);
137 OPENSSL_cleanse(buf,BUFSIZ);
  /external/clang/test/Analysis/
exercise-ps.c 18 static void f2(void *buf) {
21 memcpy((&x[1]), (buf), 1); // expected-warning{{implicitly declaring library function 'memcpy' with type 'void *(void *, const void *}} \
  /external/compiler-rt/test/asan/TestCases/Linux/
syscalls.cc 19 char buf[1000]; local
20 __sanitizer_syscall_pre_recvmsg(0, buf - 1, 0);
  /external/deqp/framework/delibs/decpp/
deArrayBuffer.cpp 71 de::ArrayBuffer<int> buf; local
72 DE_TEST_ASSERT(buf.size() == 0);
73 DE_TEST_ASSERT(buf.getPtr() == DE_NULL);
78 de::ArrayBuffer<int> buf(4);
79 DE_TEST_ASSERT(buf.size() == 4);
80 DE_TEST_ASSERT(buf.getPtr() != DE_NULL);
129 de::ArrayBuffer<int> buf(4);
130 buf.clear();
131 DE_TEST_ASSERT(buf.size() == 0);
132 DE_TEST_ASSERT(buf.getPtr() == DE_NULL)
171 de::ArrayBuffer<int> buf; local
    [all...]
  /external/e2fsprogs/lib/e2p/
getflags.c 32 struct stat buf; local
35 if (fstat (fd, &buf) == -1)
40 if (buf.st_flags & UF_IMMUTABLE)
44 if (buf.st_flags & UF_APPEND)
48 if (buf.st_flags & UF_NODUMP)
57 if (!fstat(fd, &buf) &&
58 !S_ISREG(buf.st_mode) && !S_ISDIR(buf.st_mode))
  /external/elfutils/0.153/libebl/
eblmachineflagname.c 61 ebl_machine_flag_name (ebl, flags, buf, len)
64 char *buf;
73 char *cp = buf;
82 if (cp + 1 >= buf + len)
91 snprintf (cp, buf + len - cp, "%#x", flags);
96 if ((size_t) (buf + len - cp) < machstrlen)
98 *((char *) mempcpy (cp, machstr, buf + len - cp - 1)) = '\0';
108 res = buf;
  /external/libcxx/test/depr/depr.str.strstreams/depr.istrstream/depr.istrstream.members/
rdbuf.pass.cpp 22 const char buf[] = "123 4.5 dog"; local
23 const std::istrstream in(buf);
  /external/libcxx/test/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.virtuals/
setbuf.pass.cpp 22 char buf[] = "0123456789"; local
23 std::strstreambuf sb(buf, 0);
  /external/libmtp/src/
util.h 26 void data_dump(FILE *f, void *buf, uint32_t nbytes);
27 void data_dump_ascii (FILE *f, void *buf, uint32_t n, uint32_t dump_boundry);
  /external/libvpx/libvpx/
y4menc.h 24 int y4m_write_file_header(char *buf, size_t len, int width, int height,
27 int y4m_write_frame_header(char *buf, size_t len);
  /external/openssl/crypto/des/
read2pwd.c 120 char buf[BUFSIZ],buff[BUFSIZ]; local
122 if ((ok=UI_UTIL_read_pw(buf,buff,BUFSIZ,prompt,verify)) == 0)
123 DES_string_to_key(buf,key);
124 OPENSSL_cleanse(buf,BUFSIZ);
133 char buf[BUFSIZ],buff[BUFSIZ]; local
135 if ((ok=UI_UTIL_read_pw(buf,buff,BUFSIZ,prompt,verify)) == 0)
136 DES_string_to_2keys(buf,key1,key2);
137 OPENSSL_cleanse(buf,BUFSIZ);
  /external/pdfium/core/src/fxcodec/jbig2/
JBig2_Segment.h 14 #define JBIG2_GET_INT32(buf) (((buf)[0]<<24) | ((buf)[1]<<16) | ((buf)[2]<<8) | (buf)[3])
15 #define JBIG2_GET_INT16(buf) (((buf)[0]<<8) | (buf)[1])
  /external/ppp/pppd/
magic.h 49 void random_bytes __P((unsigned char *buf, int len));
  /external/qemu/distrib/libsparse/src/
sparse_crc32.h 19 uint32_t sparse_crc32(uint32_t crc, const void *buf, size_t size);
  /external/stlport/test/eh/
test_algo.cpp 87 test_stable_partition( const SortBuffer& buf )
88 : orig( buf ), partitionPoint(SortClass::kRange / 2) {
92 void operator()( SortBuffer& buf ) const
96 SortClass* d = EH_STD::stable_partition( buf.begin(), buf.end(), throw_cmp );
113 for ( const SortClass* p = buf.begin(); p != buf.end(); p++ )
117 if ( p != buf.begin() && p->value() == p[-1].value() ) {
139 void assert_sorted_version( const SortBuffer& orig, const SortBuffer& buf );
144 EFFECTS: Asserts that buf is a stable-sorted version of orig
257 SortBuffer buf; local
    [all...]
  /external/strace/test/
sig.c 12 char buf[1024]; local
15 read(0, buf, 1024);
  /external/tcpdump/
decode_prefix.h 36 extern int decode_prefix4(const u_char *pptr, u_int itemlen, char *buf, u_int buflen);
38 extern int decode_prefix6(const u_char *pd, u_int itemlen, char *buf, u_int buflen);
  /external/wpa_supplicant_8/src/tls/
pkcs8.h 12 struct crypto_private_key * pkcs8_key_import(const u8 *buf, size_t len);
14 pkcs8_enc_key_import(const u8 *buf, size_t len, const char *passwd);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
y4menc.h 24 int y4m_write_file_header(char *buf, size_t len, int width, int height,
27 int y4m_write_frame_header(char *buf, size_t len);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.str.strstreams/depr.istrstream/depr.istrstream.members/
rdbuf.pass.cpp 22 const char buf[] = "123 4.5 dog"; local
23 const std::istrstream in(buf);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.virtuals/
setbuf.pass.cpp 22 char buf[] = "0123456789"; local
23 std::strstreambuf sb(buf, 0);
  /system/core/libsparse/
sparse_crc32.h 19 uint32_t sparse_crc32(uint32_t crc, const void *buf, size_t size);
  /system/core/toolbox/
pwcache.c 46 static char buf[32]; local
47 snprintf(buf, sizeof(buf), "%lu", (long) gid);
48 return noname ? NULL : buf;
56 static char buf[32]; local
57 snprintf(buf, sizeof(buf), "%lu", (long) uid);
58 return noname ? NULL : buf;
  /hardware/intel/common/libwsbm/src/
wsbm_mallocpool.c 44 struct _WsbmBufStorage buf; member in struct:_WsbmMallocBuffer
50 mallocBuf(struct _WsbmBufStorage *buf)
52 return containerOf(buf, struct _WsbmMallocBuffer, buf);
64 wsbmBufStorageInit(&mBuf->buf, pool);
70 return &mBuf->buf;
74 pool_destroy(struct _WsbmBufStorage **buf)
76 free(mallocBuf(*buf));
77 *buf = NULL;
81 pool_waitIdle(struct _WsbmBufStorage *buf __attribute__ ((unused)), int lazy __attribute__ ((unused))
    [all...]

Completed in 2659 milliseconds

<<11121314151617181920>>