Searched refs:line_ptr (Results 1 - 10 of 10) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/coreutils/
H A Duudecode.c23 char *line_ptr = line; local
28 length = ((*line_ptr - 0x20) & 0x3f)* 4 / 3;
38 line_ptr++;
40 if (strlen(line_ptr) < (size_t)length) {
46 fputc(((line_ptr[0] - 0x20) & 077) << 2 | ((line_ptr[1] - 0x20) & 077) >> 4, dst_stream);
47 line_ptr++;
53 fputc(((line_ptr[0] - 0x20) & 077) << 4 | ((line_ptr[1] - 0x20) & 077) >> 2, dst_stream);
54 line_ptr
146 char *line_ptr; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/networking/
H A Dnameif.c96 char *line_ptr; local
99 line_ptr = line + strspn(line, " \t");
100 if ((line_ptr[0] == '#') || (line_ptr[0] == '\n')) {
104 name_length = strcspn(line_ptr, " \t");
106 ch->ifname = xstrndup(line_ptr, name_length);
110 line_ptr += name_length;
111 line_ptr += strspn(line_ptr, " \t");
112 name_length = strspn(line_ptr, "012345678
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Ddfa.c192 uint8_t *line_ptr; local
206 line_ptr = frame;
210 if (frame - line_ptr <= bytestream2_peek_byte(gb))
212 line_ptr += bytestream2_get_byte(gb);
215 if (frame - line_ptr < count)
217 if (bytestream2_get_buffer(gb, line_ptr, count) != count)
221 if (frame - line_ptr < count)
223 memset(line_ptr, bytestream2_get_byte(gb), count);
225 line_ptr += count;
235 uint8_t *line_ptr; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Ddfa.c195 uint8_t *line_ptr; local
209 line_ptr = frame;
213 if (frame - line_ptr <= bytestream2_peek_byte(gb))
215 line_ptr += bytestream2_get_byte(gb);
218 if (frame - line_ptr < count)
220 if (bytestream2_get_buffer(gb, line_ptr, count) != count)
224 if (frame - line_ptr < count)
226 memset(line_ptr, bytestream2_get_byte(gb), count);
228 line_ptr += count;
238 uint8_t *line_ptr; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/editors/
H A Dpatch.c137 char *line_ptr; local
139 line_ptr = strrchr(new_filename, '/');
140 if (line_ptr) {
141 *line_ptr = '\0';
143 *line_ptr = '/';
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/util-linux/
H A Dfdisk.c235 char *line_ptr; member in struct:globals
248 #define line_ptr (G.line_ptr) macro
299 line_ptr = line_buffer;
300 while (*line_ptr && !isgraph(*line_ptr))
301 line_ptr++;
302 return *line_ptr;
393 return *line_ptr;
400 line_ptr
[all...]
H A Dfdisk_osf.c648 } while (!isdigit(*line_ptr));
649 def = atoi(line_ptr);
734 dkbasename = line_ptr;
H A Dfdisk_sgi.c629 if (strcmp(line_ptr, "YES\n") != 0)
H A Dfdisk_sun.c603 if (strcmp (line_ptr, "YES\n"))
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/demos/poem/
H A Dwxpoem.cpp157 wxChar *line_ptr; local
262 line_ptr = line+3;
264 m_title = line_ptr;
267 dc->GetTextExtent(line_ptr, &xx, &yy);
277 dc->DrawText(line_ptr, x, y);
281 dc->DrawText(line_ptr, x-SHADOW_OFFSET, y-SHADOW_OFFSET);
287 line_ptr = line+3;
290 dc->GetTextExtent(line_ptr, &xx, &yy);
297 dc->DrawText(line_ptr, x, y);

Completed in 105 milliseconds