| /src/external/gpl3/gcc/dist/contrib/ |
| check-MAINTAINERS.py | 91 chunk = list(takewhile(is_empty, lines)) variable 92 check_group(needle, chunk) 98 chunk = list(takewhile(is_empty, lines)) variable 99 check_group(needle, chunk) 105 chunk = list(takewhile(is_empty, lines)) variable 106 check_group(needle, chunk)
|
| /src/external/gpl3/gcc.old/dist/contrib/ |
| check-MAINTAINERS.py | 91 chunk = list(takewhile(is_empty, lines)) variable 92 check_group(needle, chunk) 98 chunk = list(takewhile(is_empty, lines)) variable 99 check_group(needle, chunk) 105 chunk = list(takewhile(is_empty, lines)) variable 106 check_group(needle, chunk)
|
| /src/sys/dev/acpi/ |
| apei_mapreg.c | 158 uint64_t chunk; local 184 chunk = chunk32; 190 chunk = *((volatile const uint8_t *)map + i); 193 chunk = *((volatile const uint16_t *)map + i); 196 chunk = *((volatile const uint32_t *)map + i); 199 chunk = *((volatile const uint64_t *)map + i); 208 v |= chunk << (i*chunkbits); 229 uint64_t chunk = v >> (i*chunkbits); local 250 rv = AcpiOsWritePort(addr, chunk, 259 *((volatile uint8_t *)map + i) = chunk; [all...] |
| /src/sys/external/bsd/compiler_rt/dist/lib/asan/ |
| asan_debugging.cc | 52 AsanChunkView chunk = FindHeapChunkByAddress(addr); local 53 if (!chunk.IsValid()) return 0; 57 if (chunk.AllocTid() == kInvalidTid) return 0; 58 stack = chunk.GetAllocStack(); 59 if (thread_id) *thread_id = chunk.AllocTid(); 61 if (chunk.FreeTid() == kInvalidTid) return 0; 62 stack = chunk.GetFreeStack(); 63 if (thread_id) *thread_id = chunk.FreeTid();
|
| /src/sys/rump/net/lib/libshmif/ |
| shmif_busops.c | 66 size_t chunk; local 69 chunk = MIN(len, BUSMEM_DATASIZE - off); 70 memcpy(dest, busmem->shm_data + off, chunk); 71 len -= chunk; 73 if (off + chunk == BUSMEM_DATASIZE) 77 return (off + chunk) % BUSMEM_DATASIZE; 81 memcpy((uint8_t *)dest + chunk, busmem->shm_data, len); 101 size_t chunk; local 106 chunk = MIN(len, BUSMEM_DATASIZE - off); 107 len -= chunk; [all...] |
| /src/crypto/external/apache2/openssl/dist/providers/implementations/ciphers/ |
| ciphercommon_hw.c | 148 size_t chunk = MAXCHUNK; local 150 if (inl < chunk) 151 chunk = inl; 152 while (inl > 0 && inl >= chunk) { 154 inl -= chunk; 155 in += chunk; 156 out += chunk; 157 if (inl < chunk) 158 chunk = inl; 166 size_t chunk = MAXCHUNK local [all...] |
| /src/crypto/external/bsd/openssl/dist/providers/implementations/ciphers/ |
| ciphercommon_hw.c | 149 size_t chunk = MAXCHUNK; local 151 if (inl < chunk) 152 chunk = inl; 153 while (inl > 0 && inl >= chunk) { 155 inl -= chunk; 156 in += chunk; 157 out += chunk; 158 if (inl < chunk) 159 chunk = inl; 167 size_t chunk = MAXCHUNK local [all...] |
| /src/external/gpl3/gcc/dist/libsanitizer/asan/ |
| asan_debugging.cpp | 52 AsanChunkView chunk = FindHeapChunkByAddress(addr); local 53 if (!chunk.IsValid()) return 0; 57 if (chunk.AllocTid() == kInvalidTid) return 0; 58 stack = StackDepotGet(chunk.GetAllocStackId()); 59 if (thread_id) *thread_id = chunk.AllocTid(); 61 if (chunk.FreeTid() == kInvalidTid) return 0; 62 stack = StackDepotGet(chunk.GetFreeStackId()); 63 if (thread_id) *thread_id = chunk.FreeTid();
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/asan/ |
| asan_debugging.cpp | 52 AsanChunkView chunk = FindHeapChunkByAddress(addr); local 53 if (!chunk.IsValid()) return 0; 57 if (chunk.AllocTid() == kInvalidTid) return 0; 58 stack = StackDepotGet(chunk.GetAllocStackId()); 59 if (thread_id) *thread_id = chunk.AllocTid(); 61 if (chunk.FreeTid() == kInvalidTid) return 0; 62 stack = StackDepotGet(chunk.GetFreeStackId()); 63 if (thread_id) *thread_id = chunk.FreeTid();
|
| /src/external/gpl3/gdb.old/dist/gdb/ |
| linux-nat-trad.c | 54 /* Read the register contents from the inferior a chunk at a time. */ 57 size_t chunk = std::min (sizeof (PTRACE_TYPE_RET), size - i); local 66 store_unsigned_integer (buf + i, chunk, byte_order, val); 113 /* Write the register contents into the inferior a chunk at a time. */ 117 size_t chunk = std::min (sizeof (PTRACE_TYPE_RET), size - i); local 120 val = extract_unsigned_integer (buf + i, chunk, byte_order);
|
| /src/external/lgpl2/userspace-rcu/dist/src/ |
| rculfhash-mm-chunk.c | 6 * Chunk based memory management for Lock-Free RCU Hash Table 54 unsigned long chunk, offset; local 56 chunk = index >> ht->min_alloc_buckets_order; 58 return &ht->tbl_chunk[chunk][offset];
|
| /src/external/gpl3/gdb/dist/gdb/ |
| linux-nat-trad.c | 54 /* Read the register contents from the inferior a chunk at a time. */ 57 size_t chunk = std::min (sizeof (PTRACE_TYPE_RET), size - i); local 66 store_unsigned_integer (buf + i, chunk, byte_order, val); 113 /* Write the register contents into the inferior a chunk at a time. */ 117 size_t chunk = std::min (sizeof (PTRACE_TYPE_RET), size - i); local 120 val = extract_unsigned_integer (buf + i, chunk, byte_order);
|
| /src/sys/arch/ia64/stand/common/ |
| misc.c | 106 size_t chunk, resid; local 111 chunk = min(sizeof(buf), resid); 112 archsw.arch_copyin(buf, dest, chunk); 113 resid -= chunk; 114 dest += chunk;
|
| /src/sys/external/bsd/drm2/dist/drm/vboxvideo/ |
| vbva_base.c | 43 /* Chunk will not cross buffer boundary. */ 46 /* Chunk crosses buffer boundary. */ 83 u32 chunk = len; local 85 if (chunk >= available) { 90 if (chunk >= available) { 95 chunk = available - vbva->partial_write_tresh; 98 vbva_buffer_place_data_at(vbva_ctx, p, chunk, 101 vbva->free_offset = (vbva->free_offset + chunk) % 103 record->len_and_flags += chunk; 104 available -= chunk; [all...] |
| /src/crypto/external/apache2/openssl/dist/crypto/whrlpool/ |
| wp_dgst.c | 74 * Well, largest suitable chunk size actually is 78 size_t chunk = ((size_t)1) << (sizeof(size_t) * 8 - 4); local 81 while (bytes >= chunk) { 82 WHIRLPOOL_BitUpdate(c, inp, chunk * 8); 83 bytes -= chunk; 84 inp += chunk;
|
| /src/crypto/external/bsd/openssl/dist/crypto/whrlpool/ |
| wp_dgst.c | 74 * Well, largest suitable chunk size actually is 78 size_t chunk = ((size_t)1) << (sizeof(size_t) * 8 - 4); local 81 while (bytes >= chunk) { 82 WHIRLPOOL_BitUpdate(c, inp, chunk * 8); 83 bytes -= chunk; 84 inp += chunk;
|
| /src/crypto/external/bsd/openssl.old/dist/crypto/whrlpool/ |
| wp_dgst.c | 68 * Well, largest suitable chunk size actually is 72 size_t chunk = ((size_t)1) << (sizeof(size_t) * 8 - 4); local 75 while (bytes >= chunk) { 76 WHIRLPOOL_BitUpdate(c, inp, chunk * 8); 77 bytes -= chunk; 78 inp += chunk;
|
| /src/external/gpl3/binutils/dist/libiberty/ |
| objalloc.c | 56 /* This structure appears at the start of each chunk. */ 60 /* Next chunk. */ 62 /* If this chunk contains large objects, this is the value of 63 current_ptr when this chunk was allocated. If this chunk 74 /* We ask for this much memory each time we create a chunk which is to 89 struct objalloc_chunk *chunk; local 102 chunk = (struct objalloc_chunk *) ret->chunks; 103 chunk->next = NULL; 104 chunk->current_ptr = NULL 141 struct objalloc_chunk *chunk; local 157 struct objalloc_chunk *chunk; local [all...] |
| /src/external/gpl3/binutils.old/dist/libiberty/ |
| objalloc.c | 56 /* This structure appears at the start of each chunk. */ 60 /* Next chunk. */ 62 /* If this chunk contains large objects, this is the value of 63 current_ptr when this chunk was allocated. If this chunk 74 /* We ask for this much memory each time we create a chunk which is to 89 struct objalloc_chunk *chunk; local 102 chunk = (struct objalloc_chunk *) ret->chunks; 103 chunk->next = NULL; 104 chunk->current_ptr = NULL 141 struct objalloc_chunk *chunk; local 157 struct objalloc_chunk *chunk; local [all...] |
| /src/external/gpl3/gcc/dist/libiberty/ |
| objalloc.c | 56 /* This structure appears at the start of each chunk. */ 60 /* Next chunk. */ 62 /* If this chunk contains large objects, this is the value of 63 current_ptr when this chunk was allocated. If this chunk 74 /* We ask for this much memory each time we create a chunk which is to 89 struct objalloc_chunk *chunk; local 102 chunk = (struct objalloc_chunk *) ret->chunks; 103 chunk->next = NULL; 104 chunk->current_ptr = NULL 141 struct objalloc_chunk *chunk; local 157 struct objalloc_chunk *chunk; local [all...] |
| /src/external/gpl3/gcc.old/dist/libiberty/ |
| objalloc.c | 56 /* This structure appears at the start of each chunk. */ 60 /* Next chunk. */ 62 /* If this chunk contains large objects, this is the value of 63 current_ptr when this chunk was allocated. If this chunk 74 /* We ask for this much memory each time we create a chunk which is to 89 struct objalloc_chunk *chunk; local 102 chunk = (struct objalloc_chunk *) ret->chunks; 103 chunk->next = NULL; 104 chunk->current_ptr = NULL 141 struct objalloc_chunk *chunk; local 157 struct objalloc_chunk *chunk; local [all...] |
| /src/external/gpl3/gdb.old/dist/libiberty/ |
| objalloc.c | 56 /* This structure appears at the start of each chunk. */ 60 /* Next chunk. */ 62 /* If this chunk contains large objects, this is the value of 63 current_ptr when this chunk was allocated. If this chunk 74 /* We ask for this much memory each time we create a chunk which is to 89 struct objalloc_chunk *chunk; local 102 chunk = (struct objalloc_chunk *) ret->chunks; 103 chunk->next = NULL; 104 chunk->current_ptr = NULL 141 struct objalloc_chunk *chunk; local 157 struct objalloc_chunk *chunk; local [all...] |
| /src/external/lgpl3/gmp/dist/ |
| tal-notreent.c | 66 void *chunk; local 71 /* Allocate a chunk that makes the total current allocation somewhat 91 chunk = (*__gmp_allocate_func) (chunk_size); 92 header = (tmp_stack *) chunk; 93 header->end = (char *) chunk + chunk_size; 94 header->alloc_point = (char *) chunk + HSIZ;
|
| /src/external/gpl3/gdb/dist/libiberty/ |
| objalloc.c | 56 /* This structure appears at the start of each chunk. */ 60 /* Next chunk. */ 62 /* If this chunk contains large objects, this is the value of 63 current_ptr when this chunk was allocated. If this chunk 74 /* We ask for this much memory each time we create a chunk which is to 89 struct objalloc_chunk *chunk; local 102 chunk = (struct objalloc_chunk *) ret->chunks; 103 chunk->next = NULL; 104 chunk->current_ptr = NULL 141 struct objalloc_chunk *chunk; local 157 struct objalloc_chunk *chunk; local [all...] |
| /src/sys/arch/arm/at91/ |
| at91spi.c | 268 struct spi_chunk *chunk; local 289 if ((chunk = sc->sc_rchunk) != NULL) { 290 if ((len = chunk->chunk_rresid) > HALF_BUF_SIZE) 292 if (chunk->chunk_rptr && len > 0) { 293 memcpy(chunk->chunk_rptr, (const uint8_t *)sc->sc_dmapage + offs, len); 294 chunk->chunk_rptr += len; 296 if ((chunk->chunk_rresid -= len) <= 0) { 297 // done with this chunk, get next 298 sc->sc_rchunk = chunk->chunk_next; 303 /* start transmitting next chunk: * [all...] |