| /external/python/cpython2/Python/ | 
| strtod.c | 73     char buffer[64];                    /* 45-digit significant + */  local 80     dp = buffer;
 82     buforg = dp, buflim = buffer+48;
 116     /*  Now the contents of buffer are
 158     return atof(buffer)*sign;
 
 | 
| /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/res/ | 
| RawResourceLoaderTest.java | 45         char[] buffer = new char[1024];  local 49             while ((n = reader.read(buffer)) != -1) {
 50                 writer.write(buffer, 0, n);
 
 | 
| /external/skia/src/core/ | 
| SkDataTable.cpp | 99     void* buffer = sk_malloc_throw(bufferSize);  local 101     Dir* dir = (Dir*)buffer;
 110     return sk_sp<SkDataTable>(new SkDataTable(dir, count, malloc_freeproc, buffer));
 119     void* buffer = sk_malloc_throw(bufferSize);  local
 120     memcpy(buffer, array, bufferSize);
 122     return sk_sp<SkDataTable>(new SkDataTable(buffer, elemSize, count, malloc_freeproc, buffer));
 
 | 
| /external/skia/src/pdf/ | 
| SkDeflate.cpp | 103     const char* buffer = (const char*)void_buffer;  local 107         memcpy(fImpl->fInBuffer + fImpl->fInBufferIndex, buffer, tocopy);
 109         buffer += tocopy;
 113         // if the buffer isn't filled, don't call into zlib yet.
 
 | 
| SkPDFUtils.h | 75     char buffer[5];  local 76     size_t len = SkPDFUtils::ColorToDecimal(value, buffer);
 77     wStream->write(buffer, len);
 
 | 
| /external/skia/src/shaders/ | 
| SkBitmapProcShader.cpp | 66         uint32_t buffer[BUF_MAX];  variable 69         const int max = state.maxCountForBufferSize(sizeof(buffer[0]) * BUF_MAX);
 76             mproc(state, buffer, n, x, y);
 77             sproc(state, buffer, n, dstC);
 
 | 
| /external/skia/tools/bookmaker/ | 
| cataloger.cpp | 22     char* buffer = new char[sz];  local 23     memset(buffer, ' ', sz);
 24     SkAssertResult(sz == (int)fread(buffer, 1, sz, file));
 26     this->writeBlock(sz, buffer);
 
 | 
| /external/skqp/src/core/ | 
| SkDataTable.cpp | 99     void* buffer = sk_malloc_throw(bufferSize);  local 101     Dir* dir = (Dir*)buffer;
 110     return sk_sp<SkDataTable>(new SkDataTable(dir, count, malloc_freeproc, buffer));
 119     void* buffer = sk_malloc_throw(bufferSize);  local
 120     memcpy(buffer, array, bufferSize);
 122     return sk_sp<SkDataTable>(new SkDataTable(buffer, elemSize, count, malloc_freeproc, buffer));
 
 | 
| /external/skqp/src/pdf/ | 
| SkDeflate.cpp | 103     const char* buffer = (const char*)void_buffer;  local 107         memcpy(fImpl->fInBuffer + fImpl->fInBufferIndex, buffer, tocopy);
 109         buffer += tocopy;
 113         // if the buffer isn't filled, don't call into zlib yet.
 
 | 
| SkPDFUtils.h | 75     char buffer[5];  local 76     size_t len = SkPDFUtils::ColorToDecimal(value, buffer);
 77     wStream->write(buffer, len);
 
 | 
| /external/skqp/src/shaders/ | 
| SkBitmapProcShader.cpp | 66         uint32_t buffer[BUF_MAX];  variable 69         const int max = state.maxCountForBufferSize(sizeof(buffer[0]) * BUF_MAX);
 76             mproc(state, buffer, n, x, y);
 77             sproc(state, buffer, n, dstC);
 
 | 
| /external/skqp/tools/bookmaker/ | 
| cataloger.cpp | 22     char* buffer = new char[sz];  local 23     memset(buffer, ' ', sz);
 24     SkAssertResult(sz == (int)fread(buffer, 1, sz, file));
 26     this->writeBlock(sz, buffer);
 
 | 
| /external/smali/util/src/main/java/org/jf/util/ | 
| ConsoleUtil.java | 85         StringBuffer buffer = null;  local 95                 if (buffer == null) {
 96                     buffer = new StringBuffer();
 99                 buffer.append(line);
 102             if (buffer != null) {
 103                 return buffer.toString();
 
 | 
| /external/snakeyaml/src/test/java/org/yaml/snakeyaml/ | 
| Util.java | 44             StringBuilder buffer = new StringBuilder();  local 46                 buffer.append(lines[j]);
 47                 buffer.append("\n");
 49             return buffer.toString();
 
 | 
| /external/squashfs-tools/squashfs-tools/ | 
| gzip_wrapper.h | 67 	void *buffer;  member in struct:gzip_strategy 
 | 
| xz_wrapper.h | 55 	void		*buffer;  member in struct:filter 
 | 
| /external/syslinux/com32/elflink/ldlinux/ | 
| get_key.c | 147  * Attempt to decode the key sequence in 'buffer'. 149  * On success (the data in 'buffer' matches a key code) put the
 150  * corresponding key code in 'code' and return 0. Return 1 if 'buffer'
 152  * make an unambiguous match. Return -1 if the buffer does not contain
 155 int get_key_decode(char *buffer, int nc, int *code)
 162 	if (nc == kc->seqlen && !memcmp(buffer, kc->seq, nc)) {
 166 	} else if (nc < kc->seqlen && !memcmp(buffer, kc->seq, nc)) {
 196     char buffer[KEY_MAXLEN];  local
 215 		    return (unsigned char)buffer[0];	/* timeout */
 229 	buffer[nc++] = ch
 [all...]
 | 
| /external/syslinux/com32/hdt/ | 
| hdt-menu-memory.c | 36     char buffer[MENULEN + 1];  local 39     sprintf(buffer, " e820 information ");
 41     menu->menu = add_menu(buffer, -1);
 49     snprintf(buffer, sizeof buffer, "Detected Memory  - %lu MiB (%lu KiB)",
 54     add_item(buffer, statbuffer, OPT_INACTIVE, NULL, 0);
 59 	snprintf(buffer, sizeof buffer,
 65 	add_item(buffer, statbuffer, OPT_INACTIVE, NULL, 0);
 73     char buffer[MENULEN + 1]  local
 114  char buffer[MENULEN + 1];  local
 142  char buffer[MENULEN + 1];  local
 253  char buffer[MENULEN + 1];  local
 315  char buffer[MENULEN + 1];  local
 [all...]
 | 
| /external/syslinux/com32/lua/src/ | 
| lzio.h | 24   char *buffer;  member in struct:Mbuffer 29 #define luaZ_initbuffer(L, buff) ((buff)->buffer = NULL, (buff)->buffsize = 0)
 31 #define luaZ_buffer(buff)	((buff)->buffer)
 39 	(luaM_reallocvector(L, (buff)->buffer, (buff)->buffsize, size, char), \
 56   const char *p;		/* current position in buffer */
 
 | 
| /external/syslinux/gpxe/src/arch/i386/image/ | 
| com32.c | 97 			"pushl %2\n\t"                         /* Size of low memory bounce buffer */ 98 			"pushl %3\n\t"                         /* Pointer to low memory bounce buffer */
 200 	userptr_t buffer;  local
 205 	buffer = phys_to_user ( COM32_START_PHYS );
 206 	if ( ( rc = prep_segment ( buffer, filesz, memsz ) ) != 0 ) {
 213 	memcpy_user ( buffer, 0, image->data, 0, filesz );
 219  * Prepare COM32 low memory bounce buffer
 238 		DBGC ( image, "COM32 %p: could not prepare bounce buffer segment: %s\n",
 272 	/* Prepare bounce buffer segment */
 
 | 
| /external/tensorflow/tensorflow/compiler/xla/service/cpu/ | 
| xfeed_manager_test.cc | 68   void* buffer = __xla_cpu_runtime_AcquireInfeedBufferForDequeue(  local 70   __xla_cpu_runtime_ReleaseInfeedBufferAfterDequeue(length, buffer,
 78   void* buffer = __xla_cpu_runtime_AcquireOutfeedBufferForPopulation(  local
 81       length, buffer, bytes.data(), bytes.size());
 
 | 
| /external/tensorflow/tensorflow/compiler/xla/service/gpu/ | 
| gpu_transfer_manager.cc | 82         gpu::InfeedBuffer * buffer, 85     buffers.push_back(buffer);
 95   TF_ASSIGN_OR_RETURN(gpu::InfeedBuffer * buffer,
 97   return EnqueueBuffersToInfeed(executor, {buffer});
 141   gpu::InfeedBuffer* buffer = new gpu::InfeedBuffer(executor, size);  local
 142   stream->ThenMemcpy(buffer->device_memory(), source, size);
 146   return buffer;
 
 | 
| /external/tensorflow/tensorflow/compiler/xla/service/ | 
| shaped_buffer.h | 33 // Class which encapsulates a buffer or set of buffers containing data of a 58   // Return the root buffer of the shape (shape index {}).
 60     return buffer(/*index=*/{});
 63   // Returns the buffer at the given shape index where index is defined as in
 65   const perftools::gputools::DeviceMemoryBase& buffer(  function in class:xla::ShapedBuffer
 70   // Sets the device memory buffer at the given index.
 71   void set_buffer(const perftools::gputools::DeviceMemoryBase& buffer,
 73     *buffers_.mutable_element(index) = buffer;
 113 std::ostream& operator<<(std::ostream& out, const ShapedBuffer& buffer);
 121   // deallocation of the device memory held in the shaped buffer. All devic
 [all...]
 | 
| /external/tensorflow/tensorflow/contrib/lite/toco/graph_transformations/ | 
| identify_lstm_merge_inputs.cc | 80   auto& buffer = array.GetMutableBuffer<ArrayDataType::kFloat>();  local 81   buffer.data.resize(weights_dim1 * weights_dim2);
 85       buffer, weights_dim2,
 88       buffer, weights_dim2,
 91       buffer, weights_dim2,
 95       buffer, weights_dim2,
 99       buffer, weights_dim2,
 103       buffer, weights_dim2,
 107       buffer, weights_dim2,
 111       buffer, weights_dim2
 [all...]
 | 
| lstm_utils.cc | 25 void CopyArrayData(const Buffer<ArrayDataType::kFloat>& src_buffer, 27                    Buffer<ArrayDataType::kFloat>* dst_buffer, int dst_stride,
 41 Buffer<ArrayDataType::kFloat>* CreateFloatArrayBuffer(Model* model,
 48   Buffer<ArrayDataType::kFloat>* buffer =  local
 50   buffer->data.resize(RequiredBufferSizeForShape(shape));
 51   return buffer;
 58   // Determine whether it's bias or not, create shape, buffer.
 61   Buffer<ArrayDataType::kFloat>* buffer   local
 [all...]
 |