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

1 2 34 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/
iobase.c 804 PyObject *chunks = PyList_New(0); local
807 if (chunks == NULL)
814 Py_DECREF(chunks);
818 if (PyList_GET_SIZE(chunks) == 0) {
819 Py_DECREF(chunks);
826 Py_DECREF(chunks);
836 r = PyList_Append(chunks, data);
839 Py_DECREF(chunks);
843 result = _PyBytes_Join(_PyIO_empty_bytes, chunks);
844 Py_DECREF(chunks);
    [all...]
bufferedio.c 908 PyObject *chunks = NULL; local
945 chunks = PyList_New(0);
946 if (chunks == NULL)
952 if (PyList_Append(chunks, res) < 0) {
990 if (PyList_Append(chunks, res) < 0) {
1000 if (res != NULL && PyList_Append(chunks, res) < 0) {
1005 res = _PyBytes_Join(_PyIO_empty_bytes, chunks);
1010 Py_XDECREF(chunks);
1330 PyObject *chunks = PyList_New(0); local
    [all...]
textio.c 1454 PyObject *result = NULL, *chunks = NULL; local
1650 PyObject *line = NULL, *chunks = NULL, *remaining = NULL; local
    [all...]
  /prebuilts/go/darwin-x86/src/net/
writev_test.go 101 func testBuffer_writeTo(t *testing.T, chunks int, useCopy bool) {
114 for i := 0; i < chunks; i++ {
119 buffers := make(Buffers, chunks)
157 v := chunks
184 t.Skipf("skipping the test: windows does not have problem sending large chunks of data")
  /prebuilts/go/darwin-x86/src/runtime/
mapspeed_test.go 38 // a bunch of chunks, each with a different alignment mod 16
39 var chunks [size]chunk
42 chunks[i][0] = byte(i)
46 for i, c := range chunks {
52 if m[chunks[idx]] != idx {
malloc_test.go 108 chunks := make(map[uintptr]bool, N)
110 chunks[uintptr(p)&^7] = true
113 if len(chunks) == N {
  /prebuilts/go/linux-x86/src/net/
writev_test.go 101 func testBuffer_writeTo(t *testing.T, chunks int, useCopy bool) {
114 for i := 0; i < chunks; i++ {
119 buffers := make(Buffers, chunks)
157 v := chunks
184 t.Skipf("skipping the test: windows does not have problem sending large chunks of data")
  /prebuilts/go/linux-x86/src/runtime/
mapspeed_test.go 38 // a bunch of chunks, each with a different alignment mod 16
39 var chunks [size]chunk
42 chunks[i][0] = byte(i)
46 for i, c := range chunks {
52 if m[chunks[idx]] != idx {
  /external/valgrind/memcheck/
mc_leakcheck.c 66 // "chunks" are used interchangeably below.
185 // - Find all the blocks (a.k.a. chunks) to check. Mempool chunks require
245 /*--- Getting the initial chunks, and searching them. ---*/
262 MC_Chunk** chunks,
271 a_lo = chunks[i]->data;
272 a_hi = ((Addr)chunks[i]->data) + chunks[i]->szB;
281 // chunks[i]. Return -1 if none found. This assumes that chunks[]
338 MC_Chunk **mallocs, **chunks, *mc; local
1984 MC_Chunk** chunks; local
    [all...]
  /external/pdfium/third_party/lcms2-2.6/src/
cmsplugin.c 702 ptr = ctx ->chunks[mc];
709 return globalContext.chunks[mc];
767 fakeContext.chunks[UserPtr] = UserData;
768 fakeContext.chunks[MemPlugin] = &fakeContext.DefaultMemoryManager;
787 ctx ->chunks[UserPtr] = UserData;
788 ctx ->chunks[MemPlugin] = &ctx->DefaultMemoryManager;
832 void* userData = (NewUserData != NULL) ? NewUserData : src -> chunks[UserPtr];
848 ctx ->chunks[UserPtr] = userData;
849 ctx ->chunks[MemPlugin] = &ctx->DefaultMemoryManager;
858 // Allocate all required chunks
    [all...]
  /external/dlmalloc/
malloc.h 85 MALLINFO_FIELD_TYPE ordblks; /* number of free chunks */
282 purposes. Traversal does not include include chunks that have been
291 For example, to count the number of in-use chunks with size greater
311 ordblks: the number of free chunks
333 independent_calloc(size_t n_elements, size_t element_size, void* chunks[]);
344 The "chunks" argument is optional (i.e., may be null, which is
347 no longer needed. Otherwise, the chunks array must be of at least
349 chunks.
352 null if the allocation failed. If n_elements is zero and "chunks"
384 independent_comalloc(size_t n_elements, size_t sizes[], void* chunks[]);
    [all...]
  /prebuilts/go/darwin-x86/test/
init1.go 42 println("allocated 1000 chunks of", MB, "and used ", sys1-sys, "memory")
  /prebuilts/go/linux-x86/test/
init1.go 42 println("allocated 1000 chunks of", MB, "and used ", sys1-sys, "memory")
  /external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/rdtypes/IN/
IPSECKEY.py 86 chunks = []
93 chunks.append(t.value)
94 b64 = ''.join(chunks)
  /external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/rdtypes/
sigbase.py 110 chunks = []
117 chunks.append(t.value)
118 b64 = ''.join(chunks)
  /external/zopfli/src/zopflipng/lodepng/
lodepng_util.cpp 43 // Listing chunks is based on the original file, not the decoded png info.
63 std::vector<std::vector<unsigned char> > chunks[3],
96 chunks[location].push_back(std::vector<unsigned char>(chunk, next));
106 const std::vector<std::vector<unsigned char> > chunks[3])
144 for(size_t i = 0; i < chunks[0].size(); i++) result.insert(result.end(), chunks[0][i].begin(), chunks[0][i].end());
146 for(size_t i = 0; i < chunks[1].size(); i++) result.insert(result.end(), chunks[1][i].begin(), chunks[1][i].end())
    [all...]
  /external/iptables/extensions/
libxt_sctp.c 158 const char *chunks)
166 buffer = strdup(chunks);
229 const char *chunks)
231 DEBUGP("Match type: %s Chunks: %s\n", match_type, chunks);
244 parse_sctp_chunk(einfo, chunks);
  /external/ltp/tools/genload/
genload.c 85 int hogvm(long long forks, long long chunks, long long bytes);
173 } else if (strcmp(arg, "--vm-chunks") == 0) {
174 assert_arg("--vm-chunks");
238 "dispatching %lli hogvm forks, each %lli chunks of %lli bytes\n",
348 " --vm-chunks c malloc c chunks (default is 1)\n"
349 " --vm-bytes b malloc chunks of b bytes (default is 256MB)\n"
617 int hogvm(long long forks, long long chunks, long long bytes)
645 ptr = (char **)malloc(chunks * 2);
646 for (j = 0; chunks == 0 || j < chunks; j++)
    [all...]
stress.c 85 int hogvm(long long forks, long long chunks, long long bytes);
173 } else if (strcmp(arg, "--vm-chunks") == 0) {
174 assert_arg("--vm-chunks");
238 "dispatching %lli hogvm forks, each %lli chunks of %lli bytes\n",
348 " --vm-chunks c malloc c chunks (default is 1)\n"
349 " --vm-bytes b malloc chunks of b bytes (default is 256MB)\n"
617 int hogvm(long long forks, long long chunks, long long bytes)
645 ptr = (char **)malloc(chunks * 2);
646 for (j = 0; chunks == 0 || j < chunks; j++)
    [all...]
  /system/core/fastboot/
udp_test.cpp 433 std::string chunks[] = {data.substr(0, max_data_size), local
438 mock_socket_->ExpectSend(FastbootPacket(1, chunks[0], kFlagContinuation));
440 mock_socket_->ExpectSend(FastbootPacket(2, chunks[1], kFlagContinuation));
442 mock_socket_->ExpectSend(FastbootPacket(3, chunks[2]));
448 mock_socket_->AddReceive(FastbootPacket(4, chunks[0], kFlagContinuation));
450 mock_socket_->AddReceive(FastbootPacket(5, chunks[1], kFlagContinuation));
452 mock_socket_->AddReceive(FastbootPacket(6, chunks[2]));
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/
bufferedio.c 934 PyObject *chunks = NULL; local
965 chunks = PyList_New(0);
966 if (chunks == NULL)
972 if (PyList_Append(chunks, res) < 0) {
1017 if (PyList_Append(chunks, res) < 0) {
1027 if (res != NULL && PyList_Append(chunks, res) < 0) {
1032 res = _PyBytes_Join(_PyIO_empty_bytes, chunks);
1037 Py_XDECREF(chunks);
1348 PyObject *chunks = PyList_New(0); local
    [all...]
textio.c 1488 PyObject *result = NULL, *chunks = NULL; local
1690 PyObject *line = NULL, *chunks = NULL, *remaining = NULL; local
    [all...]
  /prebuilts/go/darwin-x86/src/compress/flate/
inflate.go 105 chunks [huffmanNumChunks]uint32 // chunks as described above
182 if sanity && h.chunks[reverse] != 0 {
185 h.chunks[reverse] = uint32(off<<huffmanValueShift | (huffmanChunkBits + 1))
200 for off := reverse; off < len(h.chunks); off += 1 << uint(n) {
206 if sanity && h.chunks[off] != 0 {
209 h.chunks[off] = chunk
213 if sanity && h.chunks[j]&huffmanCountMask != huffmanChunkBits+1 {
218 value := h.chunks[j] >> huffmanValueShift
234 for i, chunk := range h.chunks {
    [all...]
  /prebuilts/go/linux-x86/src/compress/flate/
inflate.go 105 chunks [huffmanNumChunks]uint32 // chunks as described above
182 if sanity && h.chunks[reverse] != 0 {
185 h.chunks[reverse] = uint32(off<<huffmanValueShift | (huffmanChunkBits + 1))
200 for off := reverse; off < len(h.chunks); off += 1 << uint(n) {
206 if sanity && h.chunks[off] != 0 {
209 h.chunks[off] = chunk
213 if sanity && h.chunks[j]&huffmanCountMask != huffmanChunkBits+1 {
218 value := h.chunks[j] >> huffmanValueShift
234 for i, chunk := range h.chunks {
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
CodeGenerator.java 531 List chunks = translateAction(ruleName,actionAST); local
532 scopeActions.put(name, chunks); // replace with translation
897 List chunks = translator.translateToChunks(); local
921 List chunks = translator.translateToChunks(); local
    [all...]

Completed in 698 milliseconds

1 2 34 5 6 7 8 91011>>