/external/chromium_org/third_party/libxml/src/ |
testC14N.c | 178 * Macro used to grow the current buffer. 182 buffer = (xmlChar **) \ 183 xmlRealloc(buffer, buffer_size * sizeof(xmlChar*)); \ 184 if (buffer == NULL) { \ 192 xmlChar **buffer; local 207 * allocate an translation buffer. 210 buffer = (xmlChar **) xmlMalloc(buffer_size * sizeof(xmlChar*)); 211 if (buffer == NULL) { 215 out = buffer; 218 if (out - buffer > buffer_size - 10) [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/ |
i915_screen.c | 59 static char buffer[128]; local 98 util_snprintf(buffer, sizeof(buffer), "i915 (chipset: %s)", chipset); 99 return buffer;
|
/external/chromium_org/third_party/mesa/src/src/gallium/winsys/svga/drm/ |
vmw_screen.h | 66 uint32_t *buffer; member in struct:vmw_winsys_screen::__anon14971
|
/external/chromium_org/third_party/openssl/openssl/crypto/md4/ |
md4s.cpp | 38 void md4_block_x86(MD4_CTX *ctx, unsigned char *buffer,int num); 43 unsigned char buffer[64*256]; local 65 md4_block_x86(&ctx,buffer,numm); 67 md4_block_x86(&ctx,buffer,numm); 70 md4_block_x86(&ctx,buffer,num); 72 md4_block_x86(&ctx,buffer,num);
|
/external/chromium_org/third_party/openssl/openssl/crypto/md5/ |
md5s.cpp | 38 void md5_block_x86(MD5_CTX *ctx, unsigned char *buffer,int num); 43 unsigned char buffer[64*256]; local 65 md5_block_x86(&ctx,buffer,numm); 67 md5_block_x86(&ctx,buffer,numm); 70 md5_block_x86(&ctx,buffer,num); 72 md5_block_x86(&ctx,buffer,num);
|
/external/chromium_org/third_party/openssl/openssl/crypto/rc4/ |
rc4s.cpp | 39 unsigned char buffer[1024]; local 59 RC4(&ctx,numm,buffer,buffer); 61 RC4(&ctx,numm,buffer,buffer); 64 RC4(&ctx,num,buffer,buffer); 66 RC4(&ctx,num,buffer,buffer);
|
/external/chromium_org/third_party/openssl/openssl/crypto/ripemd/asm/ |
rips.cpp | 40 void ripemd160_block_x86(RIPEMD160_CTX *ctx, unsigned char *buffer,int num); 45 unsigned char buffer[64*256]; local 69 ripemd160_block_x86(&ctx,buffer,numm); 71 ripemd160_block_x86(&ctx,buffer,numm); 74 ripemd160_block_x86(&ctx,buffer,num); 76 ripemd160_block_x86(&ctx,buffer,num);
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/ |
lite_unittest.cc | 163 string buffer; local 164 generator.SerializeToString(&buffer); 166 parsing_merge.ParseFromString(buffer);
|
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/ |
frag_unittest.cc | 89 char* buffer = new char[kBufSize]; local 90 MallocExtension::instance()->GetStats(buffer, kBufSize); 91 VLOG(1, "%s", buffer); 92 delete[] buffer;
|
memalign_unittest.cc | 110 // Fill a buffer of the specified size with a predetermined pattern 112 unsigned char* buffer = reinterpret_cast<unsigned char*>(p); local 114 buffer[i] = ((seed + i) & 0xff); 118 // Check that the specified buffer has the predetermined pattern 121 const unsigned char* buffer = reinterpret_cast<const unsigned char*>(p); local 123 if (buffer[i] != ((seed + i) & 0xff)) {
|
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/ |
frag_unittest.cc | 89 char* buffer = new char[kBufSize]; local 90 MallocExtension::instance()->GetStats(buffer, kBufSize); 91 VLOG(1, "%s", buffer); 92 delete[] buffer;
|
memalign_unittest.cc | 110 // Fill a buffer of the specified size with a predetermined pattern 112 unsigned char* buffer = reinterpret_cast<unsigned char*>(p); local 114 buffer[i] = ((seed + i) & 0xff); 118 // Check that the specified buffer has the predetermined pattern 121 const unsigned char* buffer = reinterpret_cast<const unsigned char*>(p); local 123 if (buffer[i] != ((seed + i) & 0xff)) {
|
/external/chromium_org/ui/gl/ |
gl_context_osmesa.cc | 111 void* buffer = NULL; local 112 OSMesaGetColorBuffer(context_, &width, &height, &format, &buffer); 113 if (buffer != surface->GetHandle())
|
/external/chromium_org/v8/test/cctest/ |
test-code-stubs-x64.cc | 49 byte* buffer = static_cast<byte*>(OS::Allocate(Assembler::kMinimalBufferSize, local 52 CHECK(buffer); 54 MacroAssembler assm(isolate, buffer, static_cast<int>(actual_size)); 114 reinterpret_cast<intptr_t>(buffer));
|
test-disasm-x64.cc | 52 v8::internal::byte buffer[2048]; local 53 Assembler assm(Isolate::Current(), buffer, sizeof buffer); local
|
test-hashing.cc | 158 v8::internal::byte buffer[2048]; local 159 MacroAssembler masm(isolate, buffer, sizeof buffer); 195 v8::internal::byte buffer[2048]; local 196 MacroAssembler masm(Isolate::Current(), buffer, sizeof buffer); local
|
/external/clang/test/Sema/ |
warn-cast-align.c | 32 char buffer[16]; member in struct:A
|
/external/compiler-rt/BlocksRuntime/tests/ |
fail.c | 22 bool readfile(char *buffer, const char *from) { 25 int count = read(fd, buffer, 512); 27 buffer[count] = 0; // zap newline 49 char buffer[512]; local 52 sprintf(buffer, "/tmp/errorfile_%d", getpid()); 54 int fd = creat(buffer, 0777); 56 fprintf(stderr, "didn't open custom error file %s as 1, got %d\n", buffer, fd); 79 sprintf(buffer, "/tmp/errorfile_%d", child); 85 bool gotOutput = readfile(got, buffer); 94 printf("didn't find contents of %s in %s\n", errorfile, buffer); [all...] |
/external/e2fsprogs/ext2ed/ |
blockbitmap_com.c | 43 char *ptr,buffer [80]; local 47 ptr=parse_word (command_line,buffer); /* Get the requested entry */ 52 ptr=parse_word (ptr,buffer); 54 entry_num=atol (buffer); 66 strcpy (buffer,"show");dispatch (buffer); /* dispatch a show command */ 79 char *ptr,buffer [80]; local 81 ptr=parse_word (command_line,buffer); 83 ptr=parse_word (ptr,buffer); 84 entry_offset=atol (buffer); 95 char *ptr,buffer [80]; local 119 char *ptr,buffer [80]; local 148 char *ptr,buffer [80]; local [all...] |
group_com.c | 25 char *ptr,buffer [80]; local 27 ptr=parse_word (command_line,buffer); 29 ptr=parse_word (ptr,buffer); 30 entry_offset=atol (buffer); 33 sprintf (buffer,"entry %ld",group_info.group_num+entry_offset); 34 dispatch (buffer); 41 char *ptr,buffer [80]; local 43 ptr=parse_word (command_line,buffer); 45 ptr=parse_word (ptr,buffer); 46 entry_offset=atol (buffer); 57 char *ptr,buffer [80]; local 83 char *ptr,buffer [80]; local 138 char buffer [80]; local 149 char buffer [80]; local 163 char buffer [80]; local [all...] |
inodebitmap_com.c | 30 char *ptr,buffer [80]; local 32 ptr=parse_word (command_line,buffer); 36 ptr=parse_word (ptr,buffer); 38 entry_num=atol (buffer); 45 strcpy (buffer,"show");dispatch (buffer); 52 char *ptr,buffer [80]; local 54 ptr=parse_word (command_line,buffer); 56 ptr=parse_word (ptr,buffer); 57 entry_offset=atol (buffer); 68 char *ptr,buffer [80]; local 84 char *ptr,buffer [80]; local 110 char *ptr,buffer [80]; local [all...] |
/external/e2fsprogs/lib/ext2fs/ |
namei.c | 32 char *buffer = 0; local 51 retval = ext2fs_get_mem(fs->blocksize, &buffer); 54 retval = io_channel_read_blk(fs->io, ei.i_block[0], 1, buffer); 56 ext2fs_free_mem(&buffer); 59 pathname = buffer; 64 if (buffer) 65 ext2fs_free_mem(&buffer);
|
/external/e2fsprogs/lib/ss/ |
help.c | 44 char *buffer; local 62 buffer = malloc(80+2*strlen(request_name)); 63 if (!buffer) { 68 sprintf(buffer, "usage:\n\t%s [topic|command]\nor\t%s\n", 70 ss_perror(sci_idx, 0, buffer); 71 free(buffer); 84 buffer = malloc(strlen (info->info_dirs[idx]) + 1 + 86 if (!buffer) { 91 (void) strcpy(buffer, info->info_dirs[idx]); 92 (void) strcat(buffer, "/"); [all...] |
/external/eigen/demos/mandelbrot/ |
mandelbrot.h | 42 unsigned char *buffer; member in class:MandelbrotWidget 56 size(0), buffer(0), draft(16) 65 if(buffer) delete[]buffer;
|
/external/harfbuzz_ng/src/ |
test.cc | 100 hb_buffer_t *buffer = hb_buffer_create (); local 102 hb_buffer_add_utf8 (buffer, "\xe0\xa4\x95\xe0\xa5\x8d\xe0\xa4\xb0\xe0\xa5\x8d\xe0\xa4\x95", -1, 0, -1); 104 hb_shape (font, buffer, NULL, 0); 106 unsigned int count = hb_buffer_get_length (buffer); 107 hb_glyph_info_t *infos = hb_buffer_get_glyph_infos (buffer, NULL); 108 hb_glyph_position_t *positions = hb_buffer_get_glyph_positions (buffer, NULL); 125 hb_buffer_destroy (buffer);
|