Symbol: point
common/dist/zlib/examples/zran.c
350
point_t *point = index->list;
common/dist/zlib/examples/zran.c
353
if (offset < point[mid].out)
common/dist/zlib/examples/zran.c
358
point += lo;
common/dist/zlib/examples/zran.c
361
int ret = fseeko(in, point->in - (point->bits ? 1 : 0), SEEK_SET);
common/dist/zlib/examples/zran.c
365
if (point->bits && (ch = getc(in)) == EOF)
common/dist/zlib/examples/zran.c
371
if (point->bits)
common/dist/zlib/examples/zran.c
372
INFLATEPRIME(&index->strm, point->bits, ch >> (8 - point->bits));
common/dist/zlib/examples/zran.c
373
inflateSetDictionary(&index->strm, point->window, point->dict);
common/dist/zlib/examples/zran.c
378
offset -= point->out; // number of bytes to skip to get to offset
games/snake/snake/snake.c
103
static struct point you;
games/snake/snake/snake.c
104
static struct point money;
games/snake/snake/snake.c
105
static struct point finish;
games/snake/snake/snake.c
106
static struct point snake[6];
games/snake/snake/snake.c
118
static void chase(struct point *, struct point *);
games/snake/snake/snake.c
119
static int chk(const struct point *);
games/snake/snake/snake.c
125
static struct point *point(struct point *, int, int);
games/snake/snake/snake.c
130
static void snrand(struct point *);
games/snake/snake/snake.c
133
static int stretch(const struct point *);
games/snake/snake/snake.c
134
static void surround(struct point *);
games/snake/snake/snake.c
136
static void win(const struct point *);
games/snake/snake/snake.c
250
static struct point *
games/snake/snake/snake.c
251
point(struct point *ps, int x, int y)
games/snake/snake/snake.c
481
snrand(struct point *sp)
games/snake/snake/snake.c
483
struct point p;
games/snake/snake/snake.c
601
chase(struct point *np, struct point *sp)
games/snake/snake/snake.c
604
struct point d;
games/snake/snake/snake.c
607
point(&d, you.col - sp->col, you.line - sp->line);
games/snake/snake/snake.c
624
point(&d, sp->col + mx[i], sp->line + my[i]);
games/snake/snake/snake.c
658
point(np, sp->col + mx[w], sp->line + my[w]);
games/snake/snake/snake.c
664
struct point p;
games/snake/snake/snake.c
669
point(&p, COLS / 2 - 8, LINES / 2 - 1);
games/snake/snake/snake.c
698
struct point p;
games/snake/snake/snake.c
722
point(&p, you.col, 0);
games/snake/snake/snake.c
726
point(&p, you.col, lcnt - 1);
games/snake/snake/snake.c
730
point(&p, 0, you.line);
games/snake/snake/snake.c
734
point(&p, ccnt - 1, you.line);
games/snake/snake/snake.c
742
stretch(const struct point *ps)
games/snake/snake/snake.c
744
struct point p;
games/snake/snake/snake.c
746
point(&p, you.col, you.line);
games/snake/snake/snake.c
789
surround(struct point *ps)
games/snake/snake/snake.c
832
win(const struct point *ps)
games/snake/snake/snake.c
834
struct point x;
games/snake/snake/snake.c
839
point(&x, ps->col, ps->line);
games/snake/snake/snake.c
868
struct point tmp;
games/snake/snake/snake.c
922
chk(const struct point *sp)
games/snake/snake/snake.c
99
#define pchar(point, c) mvaddch((point)->line + 1, (point)->col + 1, (c))
lib/libedit/filecomplete.c
665
int *completion_type, int *over, int *point, int *end,
lib/libedit/filecomplete.c
697
if (point != NULL)
lib/libedit/filecomplete.c
698
*point = (int)(li->cursor - li->buffer);
lib/libedit/filecomplete.c
835
int *completion_type, int *over, int *point, int *end)
lib/libedit/filecomplete.c
839
completion_type, over, point, end,
sys/arch/amiga/dev/grfabs_reg.h
40
typedef struct point point_t;
sys/arch/atari/dev/grfabs_reg.h
40
typedef struct point point_t;
sys/arch/m68k/fpsp/l_fpsp.h
109
* into the fpcr and do a single floating point operation so that
sys/dev/scsipi/cd.c
2913
uint8_t track_sessionnr, sessionnr, adr, tno, point;
sys/dev/scsipi/cd.c
2988
point = rawtoc->point;
sys/dev/scsipi/cd.c
2998
if (point == trackinfo->tracknr) {
sys/dev/scsipi/cd.c
3002
if (point == trackinfo->tracknr + 1) {
sys/dev/scsipi/cd.c
3007
if (point == 0xa2) {
sys/dev/scsipi/cd.c
3010
if (point <= 0x63) {
sys/dev/scsipi/scsipi_cd.h
138
uint8_t point;
tests/usr.bin/indent/fmt_expr.c
19
x = ((struct point){0, 0}).x;
tests/usr.bin/indent/lsym_lbrace.c
55
struct point
tests/usr.bin/indent/lsym_lbrace.c
58
return (struct point){
tests/usr.bin/indent/lsym_lparen_or_lbracket.c
174
origin = (struct point){0,0};
tests/usr.bin/indent/lsym_lparen_or_lbracket.c
197
origin = (struct point){0, 0};
tests/usr.bin/indent/lsym_lparen_or_lbracket.c
211
return (struct point){0, 0};
tests/usr.bin/indent/lsym_lparen_or_lbracket.c
212
return (struct point){
tests/usr.bin/indent/lsym_lparen_or_lbracket.c
215
return (struct point){.x = 0, .y = 0};
tests/usr.bin/indent/lsym_lparen_or_lbracket.c
216
return (struct point){
tests/usr.bin/indent/lsym_rbrace.c
58
struct point
tests/usr.bin/indent/lsym_rbrace.c
61
return (struct point){
tests/usr.bin/xlint/lint1/d_c99_anon_struct.c
15
struct point top_left;
tests/usr.bin/xlint/lint1/d_c99_anon_struct.c
16
struct point bottom_right;
tests/usr.bin/xlint/lint1/d_c99_compound_literal_comma.c
18
struct point
tests/usr.bin/xlint/lint1/d_c99_compound_literal_comma.c
19
point_abs(struct point point)
tests/usr.bin/xlint/lint1/d_c99_compound_literal_comma.c
22
if (point.x >= 0 && point.y >= 0)
tests/usr.bin/xlint/lint1/d_c99_compound_literal_comma.c
23
return (struct point){ point.x, point.y };
tests/usr.bin/xlint/lint1/d_c99_compound_literal_comma.c
26
if (point.x >= 0)
tests/usr.bin/xlint/lint1/d_c99_compound_literal_comma.c
27
return (struct point){ .x = point.x, .y = -point.y };
tests/usr.bin/xlint/lint1/d_c99_compound_literal_comma.c
30
if (point.y >= 0)
tests/usr.bin/xlint/lint1/d_c99_compound_literal_comma.c
31
return (struct point){ point.x, point.y, };
tests/usr.bin/xlint/lint1/d_c99_compound_literal_comma.c
34
return (struct point){ .x = point.x, .y = -point.y, };
tests/usr.bin/xlint/lint1/expr_binary.c
147
static struct point
tests/usr.bin/xlint/lint1/expr_binary.c
150
return (struct point){ 0, 0 };
tests/usr.bin/xlint/lint1/init_c90.c
16
struct point point_c90 = { 0, 0 };
tests/usr.bin/xlint/lint1/init_c90.c
19
struct point point_c99 = { .x = 0, .y = 0 };
tests/usr.bin/xlint/lint1/init_c90.c
21
struct point points_c90[] = {{ 0, 0 }};
tests/usr.bin/xlint/lint1/init_c90.c
23
struct point points_c99[] = {[3] = { 0, 0 }};
tests/usr.bin/xlint/lint1/init_c90.c
26
struct point
tests/usr.bin/xlint/lint1/init_c90.c
29
return (struct point){ 0, 0 };
tests/usr.bin/xlint/lint1/init_c99.c
128
struct point point = {
tests/usr.bin/xlint/lint1/init_c99.c
133
struct point point_with_designators = {
tests/usr.bin/xlint/lint1/init_c99.c
138
struct point point_with_mixed_designators = {
tests/usr.bin/xlint/lint1/init_c99.c
151
struct point origin = {
tests/usr.bin/xlint/lint1/init_c99.c
158
struct point pythagoras = { 3, 4 };
tests/usr.bin/xlint/lint1/init_c99.c
177
struct point scalar_with_several_braces = {
tests/usr.bin/xlint/lint1/init_c99.c
183
struct point top_left;
tests/usr.bin/xlint/lint1/init_c99.c
184
struct point bottom_right;
tests/usr.bin/xlint/lint1/init_c99.c
199
struct point points[] = {
tests/usr.bin/xlint/lint1/init_c99.c
217
struct point points[3];
tests/usr.bin/xlint/lint1/init_c99.c
221
struct point points[5];
tests/usr.bin/xlint/lint1/init_c99.c
227
struct point points[3][5][2];
tests/usr.bin/xlint/lint1/init_c99.c
420
struct point unknown_member_name_beginning = {
tests/usr.bin/xlint/lint1/init_c99.c
427
struct point unknown_member_name_middle = {
tests/usr.bin/xlint/lint1/init_c99.c
434
struct point unknown_member_name_end = {
tests/usr.bin/xlint/lint1/init_c99.c
458
struct point subscript_designator_on_struct = {
tests/usr.bin/xlint/lint1/init_c99.c
463
struct point unknown_member_on_struct = {
tests/usr.bin/xlint/lint1/init_c99.c
468
struct point unknown_member_on_scalar = {
tests/usr.bin/xlint/lint1/init_c99.c
494
struct point member_designator_for_scalar_in_struct = {
tests/usr.bin/xlint/lint1/init_c99.c
498
struct point subscript_designator_for_scalar_in_struct = {
tests/usr.bin/xlint/lint1/msg_101.c
15
test(const struct point *ptr, const struct point pt)
tests/usr.bin/xlint/lint1/msg_103.c
13
test(struct point pt, struct point *ptr)
tests/usr.bin/xlint/lint1/msg_104.c
14
test(struct point pt, struct point *ptr)
tests/usr.bin/xlint/lint1/msg_171.c
45
struct point *p = &(struct point){
tests/usr.bin/xlint/lint1/msg_171.c
53
struct point p2 = {
tests/usr.bin/xlint/lint1/msg_171.c
54
(int)sizeof(struct point){
tests/usr.bin/xlint/lint1/msg_171.c
55
(int)sizeof(struct point){
tests/usr.bin/xlint/lint1/msg_171.c
56
(int)sizeof(struct point){
tests/usr.bin/xlint/lint1/msg_171.c
57
(int)sizeof(struct point){
tests/usr.bin/xlint/lint1/msg_188.c
13
struct point global = {
tests/usr.bin/xlint/lint1/msg_188.c
23
struct point local = {
tests/usr.bin/xlint/lint1/msg_319.c
15
} point = (struct point) {