| /external/icu/icu4c/source/test/intltest/ |
| dcfmtest.h | 37 virtual const char *getPath(char buffer[2048], const char *filename);
|
| textfile.h | 63 char* buffer; member in class:TextFile
|
| /external/icu/icu4c/source/tools/toolutil/ |
| writesrc.c | 30 char buffer[1024]; local 40 uprv_strcpy(buffer, path); 41 q=buffer+uprv_strlen(buffer); 42 if(q>buffer && (c=*(q-1))!=U_FILE_SEP_CHAR && c!=U_FILE_ALT_SEP_CHAR) { 46 p=buffer; 59 strftime(buffer, sizeof(buffer), "%Y-%m-%d", lt); 60 fprintf(f, header, year, filename, buffer);
|
| /external/jpeg/ |
| example.c | 57 * pointer to our image buffer. In particular, let's say that the image is 93 int row_stride; /* physical row width in image buffer */ 219 * buffer, but to send it line-by-line someplace else. We need a one- 220 * scanline-high JSAMPLE array as a work buffer, and we will let the JPEG 222 * because we don't need to remember to deallocate the buffer separately: it 242 * longjmp(). But we need to make the setjmp buffer accessible to the 297 JSAMPARRAY buffer; /* Output row buffer */ local 298 int row_stride; /* physical row width in output buffer */ 358 * In this example, we need to make an output work buffer of the right size [all...] |
| /external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/ |
| BufferedResourceLoader.java | 39 protected Reader buffer(Reader reader) { method in class:BufferedResourceLoader
|
| /external/libnfc-nxp/Linux_x86/ |
| phDal4Nfc_uart.c | 245 /* returns length of buffer after errors */ 246 static int apply_errors(uint8_t *buffer, int length) { 255 memcpy(&buffer[i], &buffer[i+1], length-i); 259 buffer[i] = (uint8_t)rand(); 421 char buffer[2]; local 425 if (snprintf(buffer, sizeof(buffer), "%u", (unsigned int)level) != 1) { 436 sz = write(fd, &buffer, sizeof(buffer) - 1) [all...] |
| /external/libvorbis/test/ |
| write_read.c | 89 /* expose the buffer to submit data */ 90 float **buffer = vorbis_analysis_buffer (&vd,count); local 94 memcpy (buffer [i], data, count * sizeof (float)) ; 146 char *buffer; local 162 buffer = ogg_sync_buffer (&oy,8192); 163 bytes = fread (buffer,1,8192,file); 219 buffer = ogg_sync_buffer (&oy,4096); 220 bytes = fread (buffer,1,4096,file); 277 buffer = ogg_sync_buffer (&oy,4096); 278 bytes = fread (buffer,1,4096,file) [all...] |
| /external/libvpx/libvpx/vp8/encoder/ |
| boolhuff.c | 49 br->buffer = source;
|
| /external/lldb/include/lldb/Core/ |
| Connection.h | 104 /// A destination buffer that must be at least \a dst_len bytes 135 /// A source buffer that must be at least \a src_len bytes 151 Write (const void *buffer, size_t length, lldb::ConnectionStatus &status, Error *error_ptr) = 0;
|
| /external/llvm/lib/Support/Windows/ |
| WindowsSupport.h | 45 char *buffer = NULL; local 48 NULL, GetLastError(), 0, (LPSTR)&buffer, 1, NULL); 50 *ErrMsg = prefix + buffer; 54 LocalFree(buffer);
|
| /external/llvm/unittests/ADT/ |
| ImmutableSetTest.cpp | 19 static char buffer[10]; member in class:__anon5998::ImmutableSetTest 25 MyIter() : counter(0), ptr(buffer) { 26 for (unsigned i=0; i<sizeof(buffer);++i) buffer[i]='\0'; 34 char ImmutableSetTest::buffer[10]; member in class:__anon5998::ImmutableSetTest 149 ASSERT_STREQ("aeiou", buffer); 161 ASSERT_STREQ("bcdfgh", buffer); 166 ASSERT_STREQ("bcd", buffer); 171 ASSERT_STREQ("", buffer);
|
| /external/llvm/utils/unittest/googletest/include/gtest/internal/ |
| gtest-string.h | 186 // "<buffer exceeded>" is returned. 205 // buffer. E.g. String("hello", 3) creates the string "hel", 208 String(const char* buffer, size_t a_length) { 209 ConstructNonNull(buffer, a_length); 302 void ConstructNonNull(const char* buffer, size_t a_length) { 304 memcpy(str, buffer, a_length); 332 // Gets the content of the stringstream's buffer as a String. Each '\0' 333 // character in the buffer is replaced with "\\0".
|
| /external/lzma/C/ |
| LzFind.h | 17 Byte *buffer;
member in struct:_CMatchFinder 53 #define Inline_MatchFinder_GetPointerToCurrentPos(p) ((p)->buffer)
54 #define Inline_MatchFinder_GetIndexByte(p, index) ((p)->buffer[(Int32)(index)])
76 UInt32 * GetMatchesSpec1(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *buffer, CLzRef *son,
|
| /external/mdnsresponder/mDNSPosix/ |
| Identify.c | 81 unsigned char buffer[512]; local 84 length = mDNS_vsnprintf((char *)buffer, sizeof(buffer), format, ptr); 86 printf("%s", buffer); 279 char buffer[256]; local 311 mDNS_snprintf(buffer, sizeof(buffer), "%d.%d.%d.%d.in-addr.arpa.", p[3], p[2], p[1], p[0]); 312 printf("%s\n", buffer); 315 DoQuery(&q, buffer, kDNSType_PTR, &target, NameCallback); 326 buffer[i * 4 ] = hexValues[p[15-i] & 0x0F] [all...] |
| /external/mesa3d/src/gallium/state_trackers/egl/common/ |
| egl_g3d_image.h | 36 EGLenum target, EGLClientBuffer buffer,
|
| /external/mesa3d/src/gtest/include/gtest/internal/ |
| gtest-string.h | 186 // "<buffer exceeded>" is returned. 205 // buffer. E.g. String("hello", 3) creates the string "hel", 208 String(const char* buffer, size_t a_length) { 209 ConstructNonNull(buffer, a_length); 302 void ConstructNonNull(const char* buffer, size_t a_length) { 304 memcpy(str, buffer, a_length); 332 // Gets the content of the stringstream's buffer as a String. Each '\0' 333 // character in the buffer is replaced with "\\0".
|
| /external/mesa3d/src/mesa/state_tracker/ |
| st_atom_constbuf.c | 52 * constant buffer. 75 /* We always need to get a new buffer, to keep the drivers simple and 77 * Let's use a user buffer to avoid an unnecessary copy. 80 cb.buffer = NULL; 83 params->ParameterValues, &cb.buffer_offset, &cb.buffer); 86 cb.buffer = NULL; 100 pipe_resource_reference(&cb.buffer, NULL);
|
| /external/mtpd/ |
| l2tp.c | 118 uint8_t buffer[MAX_PACKET_LENGTH] __attribute__((aligned(4))); member in struct:packet 130 uint16_t *p = (uint16_t *)outgoing.buffer; 148 struct attribute *p = (struct attribute *)&outgoing.buffer[outgoing.length]; 168 uint16_t *p = (uint16_t *)outgoing.buffer; 170 send(the_socket, outgoing.buffer, outgoing.length, 0); 176 uint16_t buffer[6] = { local 180 send(the_socket, buffer, ACK_SIZE, 0); 185 uint16_t *p = (uint16_t *)incoming.buffer; 187 incoming.length = recv(the_socket, incoming.buffer, MAX_PACKET_LENGTH, 0); 242 struct attribute *p = (struct attribute *)&incoming.buffer[offset] 273 uint8_t buffer[MAX_ATTRIBUTE_SIZE]; local [all...] |
| /external/nist-sip/java/gov/nist/core/ |
| Host.java | 123 public StringBuffer encode(StringBuffer buffer) { 125 buffer.append('[').append(hostname).append(']'); 127 buffer.append(hostname); 129 return buffer;
|
| /external/nist-sip/java/gov/nist/javax/sip/header/ |
| Via.java | 259 protected StringBuffer encodeBody(StringBuffer buffer) { 260 sentProtocol.encode(buffer); 261 buffer.append(SP); 262 sentBy.encode(buffer); 264 buffer.append(SEMICOLON); 265 parameters.encode(buffer); 268 buffer.append(SP).append(LPAREN).append(comment).append(RPAREN); 270 if (rPortFlag) buffer.append(";rport"); 271 return buffer;
|
| /external/okhttp/okcurl/src/test/java/com/squareup/okhttp/curl/ |
| MainTest.java | 88 OkBuffer buffer = new OkBuffer(); local 89 body.writeTo(buffer); 90 return new String(buffer.readByteString(buffer.size()).toByteArray(),
|
| /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/ |
| NameValueBlockReader.java | 19 * buffer. We need to put all compressed bytes into that buffer -- but no other 61 @Override public int inflate(byte[] buffer, int offset, int count) 63 int result = super.inflate(buffer, offset, count); 66 result = super.inflate(buffer, offset, count); 73 this.source = Okio.buffer(inflaterSource);
|
| /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/ |
| RequestTest.java | 77 OkBuffer buffer = new OkBuffer(); local 78 body.writeTo(buffer); 79 return buffer.readByteString(buffer.size()).hex();
|
| /external/okhttp/okio/src/main/java/okio/ |
| BufferedSource.java | 22 * A source that keeps a buffer internally so that callers can do small reads 27 /** Returns this source's internal buffer. */ 28 OkBuffer buffer(); method in interface:BufferedSource 37 * Returns when the buffer contains at least {@code byteCount} bytes. Throws 106 * Returns the index of {@code b} in the buffer, refilling it if necessary 107 * until it is found. This reads an unbounded number of bytes into the buffer.
|
| /external/openssl/crypto/buffer/ |
| buf_err.c | 1 /* crypto/buffer/buf_err.c */ 63 #include <openssl/buffer.h>
|