Searched refs:next_tag (Results 1 - 8 of 8) sorted by relevance

/darwin-on-arm/xnu/iokit/Kernel/
H A DWKdmDecompress.c206 register char *next_tag = (char *) tempTagsArray; local
218 printf("next_tag is %u \n", next_tag);
229 while (next_tag < tags_area_end) {
231 char tag = next_tag[0];
271 next_tag++;
278 printf("next_tag is %p\n", next_tag);
H A DWKdm.h203 #define RECORD_ZERO { EMIT_BYTE(next_tag,ZERO_TAG); }
205 #define RECORD_EXACT(queue_posn) EMIT_BYTE(next_tag,EXACT_TAG); \
209 EMIT_BYTE(next_tag,PARTIAL_TAG); \
213 #define RECORD_MISS(word_pattern) EMIT_BYTE(next_tag,MISS_TAG); \
H A DWKdmCompress.c122 char* next_tag = (char *) tempTagsArray; local
182 next_tag - (char *) tempTagsArray);
221 next_tag - (char *) tempTagsArray);
235 (WK_word *) next_tag,
/darwin-on-arm/xnu/libkern/kxld/
H A DWKdmDecompress.c206 register char *next_tag = (char *) tempTagsArray; local
218 printf("next_tag is %u \n", next_tag);
229 while (next_tag < tags_area_end) {
231 char tag = next_tag[0];
271 next_tag++;
278 printf("next_tag is %p\n", next_tag);
H A DWKdmCompress.c122 char* next_tag = (char *) tempTagsArray; local
182 next_tag - (char *) tempTagsArray);
221 next_tag - (char *) tempTagsArray);
235 (WK_word *) ((void *) next_tag),
/darwin-on-arm/xnu/libkern/libkern/
H A DWKdm.h203 #define RECORD_ZERO { EMIT_BYTE(next_tag,ZERO_TAG); }
205 #define RECORD_EXACT(queue_posn) EMIT_BYTE(next_tag,EXACT_TAG); \
209 EMIT_BYTE(next_tag,PARTIAL_TAG); \
213 #define RECORD_MISS(word_pattern) EMIT_BYTE(next_tag,MISS_TAG); \
/darwin-on-arm/xnu/libkern/kxld/i386/
H A DWKdmCompress.s73 movl %ecx, -6272(%ebp) // a copy of char* next_tag = (char *) tempTagsArray;
111 leal -1111(%ebp), %esi // &next_tag[1]
118 #define next_tag %esi
124 movb $0, -1(next_tag) // *next_tag = ZERO;
127 incl next_tag // next_tag++
148 movb $2, -1(next_tag) // *next_tag = 2 for miss
158 movb $3, -1(next_tag) // *next_ta
[all...]
H A DWKdmDecompress.s144 #define next_tag %esi
147 movl tempTagsArray, next_tag // next_tag = tempTagsArray
171 incl next_tag // next_tag++
173 cmpl tag_area_end, next_tag // next_tag vs tag_area_end
174 jae L_done // if (next_tag>=tag_area_end)
176 movzbl (next_tag), %eax // tag = *next_tag
[all...]

Completed in 27 milliseconds