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

1 2 3 4 5 6

  /src/tests/usr.bin/xlint/lint1/
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_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_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_313.c 8 struct point { struct
msg_315.c 8 struct point { struct
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 = {
d_c99_anon_struct.c 8 struct point { struct
15 struct point top_left;
16 struct point bottom_right;
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
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...]
  /src/tests/usr.bin/indent/
lsym_period.c 22 struct point { struct
  /src/crypto/external/bsd/openssl.old/dist/crypto/ec/
ec_check.c 18 EC_POINT *point = NULL; local
49 if ((point = EC_POINT_new(group)) == NULL)
59 if (!EC_POINT_mul(group, point, order, NULL, NULL, ctx))
61 if (!EC_POINT_is_at_infinity(group, point)) {
70 EC_POINT_free(point);
  /src/external/gpl2/groff/dist/src/libs/libgroff/
iftoa.c 31 /* room for a -, INT_DIGITS digits, a decimal point, and a terminating '\0' */
34 int point = 0; local
41 if (++point == decimal_point)
43 } while (i != 0 || point < decimal_point);
49 if (++point == decimal_point)
51 } while (i != 0 || point < decimal_point);
  /src/external/lgpl3/gmp/dist/cxx/
osmpf.cc 56 char point[2]; local
57 point[0] = use_facet< numpunct<char> >(o.getloc()).decimal_point();
58 point[1] = '\0';
60 const char *point = GMP_DECIMAL_POINT; local
64 ret = __gmp_doprnt_mpf (&__gmp_asprintf_funs_noformat, &d, &param, point, f);
ismpf.cc 57 // C decimal point, as expected by mpf_set_str
60 // C++ decimal point
65 const char *point = lconv_point; local
66 char point_char = *point;
95 // look for the C++ radix point, but put the C one in for mpf_set_str
100 #else // lconv point can be multi-char
104 point++;
105 if (*point == '\0')
107 if (c != *point)
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.fortran/
oop_extend_type.f90 19 type :: point type in module:testmod
23 type, extends(point) :: waypoint
  /src/external/lgpl3/gmp/dist/mpf/
out_str.c 93 const char *point = GMP_DECIMAL_POINT; local
94 size_t pointlen = strlen (point);
96 fwrite (point, 1, pointlen, stream);
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.fortran/
oop_extend_type.f90 19 type :: point type in module:testmod
23 type, extends(point) :: waypoint
  /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
71 printf("func return %ld\n", func(&point));
  /src/external/apache2/llvm/dist/llvm/lib/Testing/Support/
Annotations.cpp 68 size_t Annotations::point(llvm::StringRef Name) const { function in class:Annotations
71 "expected exactly one point", Code);
  /src/external/gpl3/binutils/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
  /src/external/lgpl3/gmp/dist/tests/misc/
t-locale.c 82 static const char *point[] = { local
111 for (i = 0; i < numberof (point); i++)
113 decimal_point = (const char *) point[i];
130 printf (" point %s\n", decimal_point);
137 printf (" point %s\n", decimal_point);
149 printf (" point %s\n", decimal_point);
157 printf (" point %s\n", decimal_point);
  /src/external/gpl3/gdb/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
  /src/common/dist/zlib/examples/
zran.h 9 // Access point.
10 typedef struct point { struct
18 // Access point list.
31 // of the list, which is about 32K bytes per access point. The return value is

Completed in 45 milliseconds

1 2 3 4 5 6