/external/jemalloc/src/ |
D | base.c | 45 size_t csize, nsize; in base_chunk_alloc() local 52 csize = CHUNK_CEILING(minsize + nsize); in base_chunk_alloc() 53 addr = chunk_alloc_base(csize); in base_chunk_alloc() 59 base_mapped += csize; in base_chunk_alloc() 63 csize -= nsize; in base_chunk_alloc() 69 extent_node_init(node, NULL, addr, csize, true, true); in base_chunk_alloc() 82 size_t csize, usize; in base_alloc() local 90 csize = CACHELINE_CEILING(size); in base_alloc() 92 usize = s2u(csize); in base_alloc() 101 node = base_chunk_alloc(csize); in base_alloc() [all …]
|
D | arena.c | 895 size_t usize, size_t alignment, bool *zero, size_t csize) in arena_chunk_alloc_huge_hard() argument 900 ret = chunk_alloc_wrapper(arena, chunk_hooks, NULL, csize, alignment, in arena_chunk_alloc_huge_hard() 922 size_t csize = CHUNK_CEILING(usize); in arena_chunk_alloc_huge() local 933 ret = chunk_alloc_cache(arena, &chunk_hooks, NULL, csize, alignment, in arena_chunk_alloc_huge() 938 alignment, zero, csize); in arena_chunk_alloc_huge() 948 size_t csize; in arena_chunk_dalloc_huge() local 950 csize = CHUNK_CEILING(usize); in arena_chunk_dalloc_huge() 958 chunk_dalloc_cache(arena, &chunk_hooks, chunk, csize, true); in arena_chunk_dalloc_huge()
|
/external/bison/lib/ |
D | abitset.c | 209 bitset_windex size = src->b.csize; in abitset_list() 309 ABITSET_WORDS (dst)[dst->b.csize - 1] &= in abitset_unused_clear() 320 bytes = sizeof (bitset_word) * dst->b.csize; in abitset_ones() 333 bytes = sizeof (bitset_word) * dst->b.csize; in abitset_zero() 345 for (i = 0; i < dst->b.csize; i++) in abitset_empty_p() 358 bitset_windex size = dst->b.csize; in abitset_copy1() 372 bitset_windex size = dst->b.csize; in abitset_not() 386 bitset_windex size = dst->b.csize; in abitset_equal_p() 401 bitset_windex size = dst->b.csize; in abitset_subset_p() 416 bitset_windex size = dst->b.csize; in abitset_disjoint_p() [all …]
|
D | lbitset.c | 199 bset->b.csize = 0; in lbitset_elt_unlink() 230 bset->b.csize = 0; in lbitset_prune() 263 if (bset->b.csize) in lbitset_elt_link() 313 bset->b.csize = LBITSET_ELT_WORDS; in lbitset_elt_link() 325 if (bset->b.csize) in lbitset_elt_find() 329 if ((windex - bset->b.cindex) < bset->b.csize) in lbitset_elt_find() 358 bset->b.csize = LBITSET_ELT_WORDS; in lbitset_elt_find() 479 dst->b.csize = LBITSET_ELT_WORDS; in lbitset_copy() 1055 dst->b.csize = 0; in lbitset_op3_cmp()
|
D | bitset.h | 141 if (offset < bset->b.csize) in bitset_set() 155 if (offset < bset->b.csize) in bitset_reset() 169 if (offset < bset->b.csize) in bitset_test()
|
D | bitset_stats.c | 321 if (offset < bset->b.csize) in bitset_stats_set() 340 if (offset < bset->b.csize) in bitset_stats_reset() 367 if (offset < bset->b.csize) in bitset_stats_test() 686 bset->b.csize = 0; in bitset_stats_init()
|
D | bbitset.h | 91 bitset_windex csize; /* Cache size in words. */ member 109 #define BITSET_CSIZE_(SRC) (SRC)->b.csize
|
D | ebitset.c | 1340 bset->b.csize = EBITSET_ELT_WORDS; in ebitset_init()
|
D | vbitset.c | 47 #define VBITSET_SIZE(X) ((X)->b.csize)
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | brw_urb.c | 109 brw->urb.csize <= brw->urb.size; in check_urb_layout() 118 GLuint csize = brw->curbe.total_size; in recalculate_urb_fence() local 122 if (csize < limits[CS].min_entry_size) in recalculate_urb_fence() 123 csize = limits[CS].min_entry_size; in recalculate_urb_fence() 133 brw->urb.csize < csize || in recalculate_urb_fence() 136 brw->urb.csize > csize))) { in recalculate_urb_fence() 139 brw->urb.csize = csize; in recalculate_urb_fence()
|
D | brw_curbe.c | 159 if (brw->urb.csize == 0) { in brw_upload_cs_urb_state() 164 OUT_BATCH((brw->urb.csize - 1) << 4 | brw->urb.nr_cs_entries); in brw_upload_cs_urb_state()
|
D | brw_context.h | 818 GLuint csize; /* constant buffer size in urb registers */ member
|
/external/libedit/src/ |
D | chartype.c | 53 if (mincsize > conv->csize) { in ct_conv_buff_resize() 54 conv->csize = mincsize; in ct_conv_buff_resize() 55 p = el_realloc(conv->cbuff, conv->csize * sizeof(*conv->cbuff)); in ct_conv_buff_resize() 57 conv->csize = 0; in ct_conv_buff_resize() 92 used = (ssize_t)(conv->csize - (size_t)(dst - conv->cbuff)); in ct_encode_string() 95 ct_conv_buff_resize(conv, conv->csize + CT_BUFSIZ, in ct_encode_string()
|
D | chartype.h | 178 size_t csize; member
|
D | eln.c | 289 if (!el->el_lgcyconv.csize) in el_get()
|
/external/icu/icu4c/source/common/ |
D | locid.cpp | 289 int32_t csize = 0; in Locale() local 306 csize = (int32_t)uprv_strlen(newCountry); in Locale() 307 size += csize; in Locale() 337 else if ( csize > 0 ) in Locale() 371 if ( ( vsize != 0 ) || (csize != 0) ) // at least: __v in Locale() 376 if ( csize != 0 ) in Locale() 379 p += csize; in Locale()
|
/external/libvpx/libvpx/vp8/encoder/ |
D | bitstream.c | 366 signed char csize; in write_partition_size() local 368 csize = size & 0xff; in write_partition_size() 369 *cx_data = csize; in write_partition_size() 370 csize = (size >> 8) & 0xff; in write_partition_size() 371 *(cx_data + 1) = csize; in write_partition_size() 372 csize = (size >> 16) & 0xff; in write_partition_size() 373 *(cx_data + 2) = csize; in write_partition_size()
|
/external/llvm/test/CodeGen/Thumb2/ |
D | 2009-08-01-WrongLDRBOpc.ll | 3 @csize = external global [100 x [20 x [4 x i8]]] ; <[100 x [20 x [4 x i8]]]*> [#uses=1] 65 …%scevgep13.i.i.i = getelementptr [100 x [20 x [4 x i8]]], [100 x [20 x [4 x i8]]]* @csize, i32 0, …
|
/external/kernel-headers/original/uapi/linux/ |
D | jffs2.h | 156 jint32_t csize; /* (Compressed) data size */ member
|
/external/curl/lib/ |
D | tftp.c | 405 static size_t tftp_option_add(tftp_state_data_t *state, size_t csize, in tftp_option_add() argument 408 if(( strlen(option) + csize + 1) > (size_t)state->blksize) in tftp_option_add()
|
/external/llvm/bindings/go/llvm/ |
D | ir.go | 1798 csize := C.LLVMGetBufferSize(b.C) 1799 return C.GoBytes(unsafe.Pointer(cstart), C.int(csize))
|