Lines Matching refs:nByte
59 unsigned int nByte, in extendCksum() argument
77 while( nByte>0 ){ in extendCksum()
86 nByte -= 8; in extendCksum()
120 static unsigned char *getContent(i64 ofst, int nByte){ in getContent() argument
122 aData = malloc(nByte); in getContent()
125 read(fd, aData, nByte); in getContent()
134 int nByte, /* Number of bytes to print */ in print_byte_range() argument
141 if( ((printOfst+nByte)&~0xfff)==0 ){ in print_byte_range()
143 }else if( ((printOfst+nByte)&~0xffff)==0 ){ in print_byte_range()
145 }else if( ((printOfst+nByte)&~0xfffff)==0 ){ in print_byte_range()
147 }else if( ((printOfst+nByte)&~0xffffff)==0 ){ in print_byte_range()
153 for(i=0; i<nByte; i += perLine){ in print_byte_range()
156 if( i+j>nByte ){ in print_byte_range()
163 if( i+j>nByte ){ in print_byte_range()
177 int ofst, int nByte, /* Start and size of decode */ in print_decode_line() argument
187 if( j>=nByte ){ in print_decode_line()
568 int nByte, hdrSize; in main() local
573 nByte = pagesize-100; in main()
577 nByte = pagesize; in main()
580 a = getContent(ofst, nByte); in main()