Searched refs:chunks (Results 1 - 7 of 7) sorted by path

/bionic/libc/arch-mips/string/
H A Dmemcpy.S104 andi t8,a2,0x3f # any whole 64-byte chunks?
105 # t8 is the byte count after 64-byte chunks
107 beq a2,t8,.Lchk8w # if a2==t8, no 64-byte chunks
110 # Here a3 counts bytes in 16w chunks
111 addu a3,a0,a3 # Now a3 is the final dst after 64-byte chunks
214 andi a2,t8,0x3 # now a2 is the reminder past 1w chunks
216 subu a3,t8,a2 # a3 is count of bytes in 1w chunks
217 addu a3,a0,a3 # now a3 is the dst address past the 1w chunks
219 # copying in words (4-byte chunks)
259 andi t8,a2,0x3f # any whole 64-byte chunks
[all...]
H A Dmemset.S184 andi t8,a2,0x3f # any 64-byte chunks?
185 # t8 is the byte count past 64-byte chunks
186 beq a2,t8,.Lchk8w # when a2==t8, no 64-byte chunks
189 # Here a3 counts bytes in 16w chunks
190 addu a3,a0,a3 # Now a3 is the final dst after 64-byte chunks
192 # Find out, if there are any 64-byte chunks after which will be still at least
202 andi t6,t7,0x3f # t6 is past "64-byte safe chunks" reminder
204 # Here t5 counts bytes in 16w "safe" chunks
205 addu t4,a0,t5 # Now t4 is the dst after 64-byte "safe" chunks
246 beq a0,a3,.Lchk8w # maybe no more 64-byte chunks
[all...]
/bionic/libc/arch-mips64/string/
H A Dmemcpy.S104 andi t8,a2,0x3f # any whole 64-byte chunks?
105 # t8 is the byte count after 64-byte chunks
107 beq a2,t8,.Lchk8w # if a2==t8, no 64-byte chunks
110 # Here a3 counts bytes in 16w chunks
111 addu a3,a0,a3 # Now a3 is the final dst after 64-byte chunks
214 andi a2,t8,0x3 # now a2 is the reminder past 1w chunks
216 subu a3,t8,a2 # a3 is count of bytes in 1w chunks
217 addu a3,a0,a3 # now a3 is the dst address past the 1w chunks
219 # copying in words (4-byte chunks)
259 andi t8,a2,0x3f # any whole 64-byte chunks
[all...]
H A Dmemset.S184 andi t8,a2,0x3f # any 64-byte chunks?
185 # t8 is the byte count past 64-byte chunks
186 beq a2,t8,.Lchk8w # when a2==t8, no 64-byte chunks
189 # Here a3 counts bytes in 16w chunks
190 addu a3,a0,a3 # Now a3 is the final dst after 64-byte chunks
192 # Find out, if there are any 64-byte chunks after which will be still at least
202 andi t6,t7,0x3f # t6 is past "64-byte safe chunks" reminder
204 # Here t5 counts bytes in 16w "safe" chunks
205 addu t4,a0,t5 # Now t4 is the dst after 64-byte "safe" chunks
246 beq a0,a3,.Lchk8w # maybe no more 64-byte chunks
[all...]
/bionic/libc/kernel/uapi/drm/
H A Dradeon_drm.h885 uint64_t chunks; member in struct:drm_radeon_cs
/bionic/libc/upstream-dlmalloc/
H A Dmalloc.c70 ends of chunks) in code that calls malloc. This malloc
83 executions, so externally crafted fake chunks cannot be
161 possibly fragmenting memory used only for large chunks.)
249 Controls the minimum alignment for malloc'ed chunks. It must be a
289 information in the footers of allocated chunks. This adds
469 more large chunks) the value should be high enough so that your
475 program undergoes phases where several large chunks are allocated
477 mixed with phases where there are no such chunks at all. The trim
491 segregates relatively large chunks of memory so that they can be
499 `locked' between other chunks, a
4993 ialloc(mstate m, size_t n_elements, size_t* sizes, int opts, void* chunks[]) argument
5334 dlindependent_calloc(size_t n_elements, size_t elem_size, void* chunks[]) argument
5340 dlindependent_comalloc(size_t n_elements, size_t sizes[], void* chunks[]) argument
5854 mspace_independent_calloc(mspace msp, size_t n_elements, size_t elem_size, void* chunks[]) argument
5865 mspace_independent_comalloc(mspace msp, size_t n_elements, size_t sizes[], void* chunks[]) argument
[all...]
H A Dmalloc.h85 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...]

Completed in 333 milliseconds