Searched defs:startpos (Results 1 - 5 of 5) sorted by relevance

/illumos-gate/usr/src/uts/common/io/fibre-channel/fca/qlge/
H A Dqlge_flash.c81 qlge_dump_fcode(qlge_t *qlge, uint8_t *dp, uint32_t size, uint32_t startpos) argument
87 __func__, qlge->instance, startpos, size));
89 /* make sure startpos+size doesn't exceed flash */
90 if (size + startpos > qlge->fdesc.flash_size) {
93 size, startpos, qlge->fdesc.flash_size);
98 if ((startpos & 0x3) != 0) {
105 addr = startpos / 4;
108 cnt = startpos;
109 size += startpos;
/illumos-gate/usr/src/grub/grub-0.97/stage2/
H A Dfsys_jfs.c233 int toread, startpos, endpos; local
235 startpos = filepos;
269 return filepos - startpos;
H A Dfsys_xfs.c492 int toread, startpos, endpos; local
500 startpos = filepos;
533 return filepos - startpos;
/illumos-gate/usr/src/cmd/sdiff/
H A Dsdiff.c522 getlen(int startpos, char *buffer) argument
535 tlen = startpos;
/illumos-gate/usr/src/uts/common/io/fibre-channel/fca/qlc/
H A Dql_xioctl.c5214 * startpos: starting position in flash (byte address).
5225 uint32_t startpos)
5234 /* make sure startpos+size doesn't exceed flash */
5235 if (size + startpos > ha->xioctl->fdesc.flash_size) {
5237 size, startpos, ha->xioctl->fdesc.flash_size);
5243 if ((startpos & 0x3) != 0) {
5245 ha->flash_data_addr | startpos >> 2, &data);
5254 while (size && startpos & 0x3) {
5255 *dp++ = bp[startpos & 0x3];
5256 startpos
5224 ql_dump_fcode(ql_adapter_state_t *ha, uint8_t *dp, uint32_t size, uint32_t startpos) argument
[all...]

Completed in 71 milliseconds