HomeSort by relevance Sort by last modified time
    Searched refs:buff (Results 76 - 100 of 312) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/qemu/android/
opengles.h 64 void android_gles_server_path(char* buff, size_t buffsize);
config.c 352 char buff[1024]; member in struct:__anon13018
361 w->p = w->buff;
362 w->end = w->buff + sizeof(w->buff);
391 ret = write( w->fd, w->buff, w->p - w->buff );
395 w->p = w->buff;
403 if (w->p > w->buff) {
406 ret = write( w->fd, w->buff, w->p - w->buff );
    [all...]
  /external/qemu/android/utils/
misc.h 31 extern void buffer_translate_char( char* buff,
  /hardware/samsung_slsi/exynos5/exynos_omx/codecs/exynos_codecs/audio/exynos5/srp/alp/include/
srp_api.h 60 int SRP_Decode(void *buff, int size_byte);
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
FatDirectoryEntry.java 87 * @param buff the buffer to read the entry from
94 public static FatDirectoryEntry read(ByteBuffer buff, boolean readOnly) {
95 assert (buff.remaining() >= SIZE);
99 if (buff.get(buff.position()) == 0) return null;
104 buff.get(data);
108 public static void writeNullEntry(ByteBuffer buff) {
110 buff.put((byte) 0);
375 * @param buff the buffer to write this entry to
377 void write(ByteBuffer buff) {
    [all...]
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
SSLSocketFactoriesTest.java 313 byte[] buff = new byte[client_message.length()];
314 int len = is.read(buff);
317 + len + ": '" + new String(buff, 0, len)+"'");
320 Arrays.equals(client_message.getBytes(), buff));
384 byte[] buff = new byte[server_message.length()];
385 int len = is.read(buff);
388 + len + ": '" + new String(buff, 0, len)+"'");
391 Arrays.equals(server_message.getBytes(), buff));
393 buff = (" "+client_message+" ").getBytes();
394 os.write(buff, 1, buff.length-2)
    [all...]
SSLSocketFunctionalTest.java 206 byte[] buff = new byte[client_message.length()];
207 int len = is.read(buff);
210 + len + ": '" + new String(buff, 0, len)+"'");
213 Arrays.equals(client_message.getBytes(), buff));
277 byte[] buff = new byte[server_message.length()];
278 int len = is.read(buff);
281 + len + ": '" + new String(buff, 0, len)+"'");
284 Arrays.equals(server_message.getBytes(), buff));
286 buff = (" "+client_message+" ").getBytes();
287 os.write(buff, 1, buff.length-2)
    [all...]
  /external/quake/quake/src/WinQuake/
net_udp.cpp 142 char buff[MAXHOSTNAMELEN]; local
153 gethostname(buff, MAXHOSTNAMELEN);
154 local = gethostbyname(buff);
158 Con_Printf("Could not gethostbyname(\"%s\")\n", buff);
167 buff[15] = 0;
168 Cvar_Set ("hostname", buff);
276 char buff[256]; local
284 buff[0] = '.';
285 b = buff;
286 strcpy(buff+1, in)
    [all...]
net_wins.cpp 94 char buff[MAXHOSTNAMELEN]; local
100 if (pgethostname(buff, MAXHOSTNAMELEN) == SOCKET_ERROR)
105 local = pgethostbyname(buff);
120 char buff[MAXHOSTNAMELEN]; local
181 if (pgethostname(buff, MAXHOSTNAMELEN) == SOCKET_ERROR)
193 for (p = buff; *p; p++)
201 if (buff[i] == '.')
203 buff[i] = 0;
205 Cvar_Set ("hostname", buff);
326 char buff[256]; local
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/cert/
X509CertFactoryImpl.java 515 byte[] buff = new byte[size];
522 buff[index++] = (byte) ch;
526 System.arraycopy(buff, 0, newbuff, 0, size);
527 buff = newbuff;
531 if (buff[index-1] != '\n') {
560 buff = Base64.decode(buff, index);
561 if (buff == null) {
564 return buff;
636 byte[] buff = readBytes(inStream, CERT_CACHE_SEED_LENGTH)
748 private final int[] buff = new int[BUFF_SIZE*2]; field in class:X509CertFactoryImpl.RestoringInputStream
    [all...]
  /device/generic/goldfish/camera/
JpegStub.cpp 59 extern "C" void JpegStub_getCompressedImage(JpegStub* stub, void* buff) {
62 stream->copyTo(buff);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_common.cc 102 uptr ReadFileToBuffer(const char *file_name, char **buff,
107 *buff = 0;
113 UnmapOrDie(*buff, *buff_size);
114 *buff = (char*)MmapOrDie(size, __FUNCTION__);
120 uptr just_read = internal_read(fd, *buff + read_len, PageSize);
199 InternalScopedBuffer<char> buff(kMaxSize);
200 internal_snprintf(buff.data(), kMaxSize, "%s: %s %s:%d %s",
203 __sanitizer_report_error_summary(buff.data());
sanitizer_symbolizer.cc 68 char *buff; local
69 const char *ret = ExtractToken(str, delims, &buff);
70 if (buff != 0) {
71 *result = (int)internal_atoll(buff);
73 InternalFree(buff);
79 char *buff; local
80 const char *ret = ExtractToken(str, delims, &buff);
81 if (buff != 0) {
82 *result = (uptr)internal_atoll(buff);
84 InternalFree(buff);
    [all...]
sanitizer_stacktrace.cc 68 InternalScopedBuffer<char> buff(GetPageSizeCached() * 2);
78 if (symbolize_callback((void*)pc, buff.data(), buff.size())) {
84 Printf(" %s\n", StripPathPrefix(buff.data(), strip_file_prefix));
116 buff.data(), buff.size(),
118 PrintModuleAndOffset(buff.data(), offset, strip_file_prefix);
  /external/speex/include/speex/
speex_bits.h 65 void speex_bits_init_buffer(SpeexBits *bits, void *buff, int buf_size);
68 void speex_bits_set_bit_buffer(SpeexBits *bits, void *buff, int buf_size);
  /external/zlib/src/contrib/minizip/
mztools.c 18 #define WRITE_8(buff, n) do { \
19 *((unsigned char*)(buff)) = (unsigned char) ((n) & 0xff); \
21 #define WRITE_16(buff, n) do { \
22 WRITE_8((unsigned char*)(buff), n); \
23 WRITE_8(((unsigned char*)(buff)) + 1, (n) >> 8); \
25 #define WRITE_32(buff, n) do { \
26 WRITE_16((unsigned char*)(buff), (n) & 0xffff); \
27 WRITE_16((unsigned char*)(buff) + 2, (n) >> 16); \
  /hardware/ril/reference-ril/
atchannel.h 29 extern void AT_DUMP(const char* prefix, const char* buff, int len);
31 #define AT_DUMP(prefix,buff,len) do{}while(0)
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/
RobolectricTest.java 35 private ByteArrayOutputStream buff; field in class:RobolectricTest
44 buff = new ByteArrayOutputStream();
45 PrintStream testOut = new PrintStream(buff);
64 String output = buff.toString();
66 buff.reset();
70 output = buff.toString();
78 String output = buff.toString();
  /frameworks/base/cmds/input/src/com/android/commands/input/
Input.java 144 StringBuffer buff = new StringBuffer(text); local
147 for (int i=0; i<buff.length(); i++) {
150 if (buff.charAt(i) == 's') {
151 buff.setCharAt(i, ' ');
152 buff.deleteCharAt(--i);
155 if (buff.charAt(i) == '%') {
160 char[] chars = buff.toString().toCharArray();
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
CheckedInputStreamTest.java 134 byte buff[] = new byte[50];
135 checkIn.read(buff, 10, 5);
138 checkIn.read(buff, 10, 5);
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
StreamGobbler.java 45 byte[] buff = new byte[8192];
51 int avail = is.read(buff);
90 System.arraycopy(buff, 0, buffer, write_pos, avail);
  /external/jmonkeyengine/engine/src/core/com/jme3/post/
FilterPostProcessor.java 167 * @param buff
170 private void renderProcessing(Renderer r, FrameBuffer buff, Material mat) {
171 if (buff == outputBuffer) {
177 fsQuad.setWidth(buff.getWidth());
178 fsQuad.setHeight(buff.getHeight());
179 filterCam.resize(buff.getWidth(), buff.getHeight(), true);
192 r.setFrameBuffer(buff);
221 FrameBuffer buff = sceneFb; local
251 filter.postFrame(renderManager, viewPort, buff, sceneFb);
    [all...]
  /external/kernel-headers/original/asm-mips/
checksum.h 19 * computes the checksum of a memory block at buff, length len,
28 * it's best to have buff aligned on a 32-bit boundary
30 __wsum csum_partial(const void *buff, int len, __wsum sum);
190 static inline __sum16 ip_compute_csum(const void *buff, int len)
192 return csum_fold(csum_partial(buff, len, 0));
  /external/openssl/crypto/evp/
evp_key.c 99 char buff[BUFSIZ]; local
108 buff,min,(len>=BUFSIZ)?BUFSIZ-1:len,buf);
111 OPENSSL_cleanse(buff,BUFSIZ);
  /external/stlport/test/unit/
istmit_test.cpp 57 const char* buff = "MyString"; local
58 istringstream istr(buff);
73 CPPUNIT_ASSERT(!strcmp(buffer, buff));

Completed in 330 milliseconds

1 2 34 5 6 7 8 91011>>