HomeSort by: relevance | last modified time | path
    Searched defs:point (Results 1 - 25 of 56) sorted by relevancy

1 2 3

  /src/tests/usr.bin/xlint/lint1/
msg_101.c 8 struct point { struct
15 test(const struct point *ptr, const struct point pt)
22 /* expect+1: error: type 'pointer to const struct point' does not have member 'z' [101] */
24 /* expect+1: error: type 'const struct point' does not have member 'z' [101] */
28 /* expect+1: error: left operand of '.' must be struct or union, not 'pointer to const struct point' [103] */
30 /* expect+1: error: left operand of '->' must be pointer to struct or union, not 'struct point' [104] */
34 /* expect+1: error: type 'pointer to const struct point' does not have member 'z' [101] */
36 /* expect+1: error: type 'struct point' does not have member 'z' [101] */
msg_313.c 8 struct point { struct
msg_315.c 8 struct point { struct
d_c99_compound_literal_comma.c 13 struct point { struct
18 struct point
19 point_abs(struct point point)
22 if (point.x >= 0 && point.y >= 0)
23 return (struct point){ point.x, point.y };
26 if (point.x >= 0
    [all...]
msg_103.c 8 struct point { struct
13 test(struct point pt, struct point *ptr)
16 /* expect+1: error: left operand of '.' must be struct or union, not 'pointer to struct point' [103] */
msg_104.c 8 struct point { struct
14 test(struct point pt, struct point *ptr)
16 /* expect+1: error: left operand of '->' must be pointer to struct or union, not 'struct point' [104] */
msg_319.c 12 struct point { struct
15 } point = (struct point) { variable in typeref:struct:point
20 /* expect-2: error: {}-enclosed or constant initializer of type 'struct point' required [181] */
msg_101.c 8 struct point { struct
15 test(const struct point *ptr, const struct point pt)
22 /* expect+1: error: type 'pointer to const struct point' does not have member 'z' [101] */
24 /* expect+1: error: type 'const struct point' does not have member 'z' [101] */
28 /* expect+1: error: left operand of '.' must be struct or union, not 'pointer to const struct point' [103] */
30 /* expect+1: error: left operand of '->' must be pointer to struct or union, not 'struct point' [104] */
34 /* expect+1: error: type 'pointer to const struct point' does not have member 'z' [101] */
36 /* expect+1: error: type 'struct point' does not have member 'z' [101] */
msg_313.c 8 struct point { struct
msg_315.c 8 struct point { struct
d_c99_compound_literal_comma.c 13 struct point { struct
18 struct point
19 point_abs(struct point point)
22 if (point.x >= 0 && point.y >= 0)
23 return (struct point){ point.x, point.y };
26 if (point.x >= 0
    [all...]
msg_103.c 8 struct point { struct
13 test(struct point pt, struct point *ptr)
16 /* expect+1: error: left operand of '.' must be struct or union, not 'pointer to struct point' [103] */
msg_104.c 8 struct point { struct
14 test(struct point pt, struct point *ptr)
16 /* expect+1: error: left operand of '->' must be pointer to struct or union, not 'struct point' [104] */
msg_319.c 12 struct point { struct
15 } point = (struct point) { variable in typeref:struct:point
20 /* expect-2: error: {}-enclosed or constant initializer of type 'struct point' required [181] */
msg_188.c 8 struct point { struct
13 struct point global = {
23 struct point local = {
msg_188.c 8 struct point { struct
13 struct point global = {
23 struct point local = {
init_c90.c 12 struct point { struct
16 struct point point_c90 = { 0, 0 };
19 struct point point_c99 = { .x = 0, .y = 0 };
21 struct point points_c90[] = {{ 0, 0 }};
23 struct point points_c99[] = {[3] = { 0, 0 }};
26 struct point
29 return (struct point){ 0, 0 };
msg_171.c 36 * 'struct point' and 'pointer to struct point'.
41 struct point { struct in function:pointer_to_compound_literal
45 struct point *p = &(struct point){
53 struct point p2 = {
54 (int)sizeof(struct point){
55 (int)sizeof(struct point){
56 (int)sizeof(struct point){
57 (int)sizeof(struct point){
    [all...]
init_c90.c 12 struct point { struct
16 struct point point_c90 = { 0, 0 };
19 struct point point_c99 = { .x = 0, .y = 0 };
21 struct point points_c90[] = {{ 0, 0 }};
23 struct point points_c99[] = {[3] = { 0, 0 }};
26 struct point
29 return (struct point){ 0, 0 };
msg_171.c 36 * 'struct point' and 'pointer to struct point'.
41 struct point { struct in function:pointer_to_compound_literal
45 struct point *p = &(struct point){
53 struct point p2 = {
54 (int)sizeof(struct point){
55 (int)sizeof(struct point){
56 (int)sizeof(struct point){
57 (int)sizeof(struct point){
    [all...]
d_c99_anon_struct.c 8 struct point { struct
15 struct point top_left;
16 struct point bottom_right;
  /src/tests/usr.bin/indent/
lsym_period.c 22 struct point { struct
lsym_period.c 22 struct point { struct
  /src/sys/external/bsd/sljit/dist/doc/tutorial/
struct_access.c 14 typedef long (*point_func_t)(struct point_st *point);;
25 long func(struct point_st *point)
27 print_num(point->x);
28 print_num(point->y);
29 print_num(point->z);
30 print_num(point->d);
31 return point->x;
41 struct point_st point = { local in function:struct_access
71 printf("func return %ld\n", func(&point));
  /src/common/dist/zlib/examples/
zran.h 9 // Access point.
10 typedef struct point { struct
17 // Access point list.
29 // of the list, which is about 32K bytes per access point. The return value is

Completed in 344 milliseconds

1 2 3