Lines Matching refs:buffer
43 char *ptr,buffer [80];
47 ptr=parse_word (command_line,buffer); /* Get the requested entry */
52 ptr=parse_word (ptr,buffer);
54 entry_num=atol (buffer);
66 strcpy (buffer,"show");dispatch (buffer); /* dispatch a show command */
79 char *ptr,buffer [80];
81 ptr=parse_word (command_line,buffer);
83 ptr=parse_word (ptr,buffer);
84 entry_offset=atol (buffer);
87 sprintf (buffer,"entry %ld",block_bitmap_info.entry_num+entry_offset);
88 dispatch (buffer);
95 char *ptr,buffer [80];
97 ptr=parse_word (command_line,buffer);
99 ptr=parse_word (ptr,buffer);
100 entry_offset=atol (buffer);
103 sprintf (buffer,"entry %ld",block_bitmap_info.entry_num-entry_offset);
104 dispatch (buffer);
119 char *ptr,buffer [80];
121 ptr=parse_word (command_line,buffer); /* Get the number of blocks to allocate */
123 ptr=parse_word (ptr,buffer);
124 num=atol (buffer);
148 char *ptr,buffer [80];
150 ptr=parse_word (command_line,buffer);
152 ptr=parse_word (ptr,buffer);
153 num=atol (buffer);
183 type_data.u.buffer [byte_offset] |= bit_mask; /* And apply it */
199 type_data.u.buffer [byte_offset] &= bit_mask;
216 ptr=type_data.u.buffer;
256 ptr=type_data.u.buffer+block_bitmap_info.entry_num/8;