Home
last modified time | relevance | path

Searched refs:next_qp (Results 1 – 4 of 4) sorted by relevance

/xnu-11417.121.6/osfmk/x86_64/
H A DWKdmCompress_new.s199 #define next_qp %r10 macro
214 movq tempQPosArray, next_qp // next_qp
327 mov next_qp, %rax // next_qp
338 cmpq %rcx, next_qp // next_qp vs endQPosArray
341 subq next_qp, %rax
345 0: movl $0, (next_qp)
346 addq $4, next_qp
351 movw $0, (next_qp)
352 addq $2, next_qp
355 movb $0, (next_qp)
[all …]
/xnu-11417.121.6/osfmk/arm64/
H A DWKdmCompress_4k.s194 #define next_qp x9 macro
263 add next_qp, scratch, #(1024*scale) // next_qp
378 sub rax, next_qp, tempQPosArray // eax = num_bytes_to_pack = next_qp - (char *) tempQPosArray;
386 cmp rcx, next_qp // endQPosArray vs next_qp
388 sub rax, rcx, next_qp
392 str edx, [next_qp], #4
395 strh edx, [next_qp], #2
398 strb edx, [next_qp], #1
488 strb w14, [next_qp], #1 // *next_qp = word offset (4-bit)
504 strb eax, [next_qp], #1 // update *next_qp++
[all …]
H A DWKdmCompress_16k.s196 #define next_qp x9 macro
265 add next_qp, scratch, #(1024*scale) // next_qp
380 sub rax, next_qp, tempQPosArray // eax = num_bytes_to_pack = next_qp - (char *) tempQPosArray;
388 cmp rcx, next_qp // endQPosArray vs next_qp
390 sub rax, rcx, next_qp
394 str edx, [next_qp], #4
397 strh edx, [next_qp], #2
400 strb edx, [next_qp], #1
490 strb w14, [next_qp], #1 // *next_qp = word offset (4-bit)
506 strb eax, [next_qp], #1 // update *next_qp++
[all …]
/xnu-11417.121.6/libkern/kxld/
H A DWKdmCompress.c121 char* next_qp = (char *) tempQPosArray; in WKdm_compress() local
176 next_qp - (char *) tempQPosArray); in WKdm_compress()
238 unsigned int num_bytes_to_pack = (unsigned int)(next_qp - (char *) tempQPosArray); in WKdm_compress()
246 next_qp < (char*)endQPosArray; in WKdm_compress()
247 next_qp++) { in WKdm_compress()
248 *next_qp = 0; in WKdm_compress()