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

1 2 3 4 5 6 7 8 91011>>

  /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_188.c 8 struct point { struct
13 struct point global = {
23 struct point local = {
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] */
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...]
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] */
d_c99_anon_struct.c 8 struct point { struct
15 struct point top_left;
16 struct point bottom_right;
msg_313.c 8 struct point { struct
msg_315.c 8 struct point { struct
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] */
  /src/tests/usr.bin/indent/
lsym_rbrace.c 58 struct point
61 return (struct point){
lsym_lbrace.c 55 struct point
58 return (struct 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);
  /src/external/gpl3/gdb/dist/sim/common/
sim-watch.c 145 sim_watch_point *point; local
147 for (point = watch->points; point != NULL; point = point->next)
150 point->ident,
151 watchpoint_type_to_str (sd, point->type),
152 interrupt_nr_to_str (sd, point->interrupt_nr));
153 if (point->is_periodic)
155 if (!point->is_within
207 sim_watch_point *point = (sim_watch_point *) data; local
230 sim_watch_point **point; local
351 sim_watch_point *point; local
    [all...]
  /src/external/gpl3/gdb.old/dist/sim/common/
sim-watch.c 145 sim_watch_point *point; local
147 for (point = watch->points; point != NULL; point = point->next)
150 point->ident,
151 watchpoint_type_to_str (sd, point->type),
152 interrupt_nr_to_str (sd, point->interrupt_nr));
153 if (point->is_periodic)
155 if (!point->is_within
207 sim_watch_point *point = (sim_watch_point *) data; local
230 sim_watch_point **point; local
351 sim_watch_point *point; local
    [all...]
  /src/external/bsd/ntp/dist/scripts/build/
VersionName 22 case "$repotype::$point" in
26 NAME="${NAME}p${point}"
35 NAME="${NAME}p${point}"
37 *) NAME="${NAME}.${point}"
43 *) echo "Unexpected value for 'point' <$point>! (repotype is <$repotype>)"
  /src/crypto/external/apache2/openssl/dist/crypto/ec/
ec_oct.c 24 int EC_POINT_set_compressed_coordinates(const EC_GROUP *group, EC_POINT *point,
32 if (!ec_point_is_compat(point, group)) {
38 return ossl_ec_GFp_simple_set_compressed_coordinates(group, point, x,
47 return ossl_ec_GF2m_simple_set_compressed_coordinates(group, point,
51 return group->meth->point_set_compressed_coordinates(group, point, x,
57 EC_POINT *point, const BIGNUM *x,
60 return EC_POINT_set_compressed_coordinates(group, point, x, y_bit, ctx);
65 EC_POINT *point, const BIGNUM *x,
68 return EC_POINT_set_compressed_coordinates(group, point, x, y_bit, ctx);
73 size_t EC_POINT_point2oct(const EC_GROUP *group, const EC_POINT *point,
    [all...]
  /src/crypto/external/bsd/openssl/dist/crypto/ec/
ec_oct.c 24 int EC_POINT_set_compressed_coordinates(const EC_GROUP *group, EC_POINT *point,
32 if (!ec_point_is_compat(point, group)) {
38 return ossl_ec_GFp_simple_set_compressed_coordinates(group, point, x,
47 return ossl_ec_GF2m_simple_set_compressed_coordinates(group, point,
51 return group->meth->point_set_compressed_coordinates(group, point, x,
57 EC_POINT *point, const BIGNUM *x,
60 return EC_POINT_set_compressed_coordinates(group, point, x, y_bit, ctx);
65 EC_POINT *point, const BIGNUM *x,
68 return EC_POINT_set_compressed_coordinates(group, point, x, y_bit, ctx);
73 size_t EC_POINT_point2oct(const EC_GROUP *group, const EC_POINT *point,
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/crypto/ec/
ec_oct.c 18 int EC_POINT_set_compressed_coordinates(const EC_GROUP *group, EC_POINT *point,
27 if (!ec_point_is_compat(point, group)) {
34 return ec_GFp_simple_set_compressed_coordinates(group, point, x,
44 return ec_GF2m_simple_set_compressed_coordinates(group, point, x,
48 return group->meth->point_set_compressed_coordinates(group, point, x,
54 EC_POINT *point, const BIGNUM *x,
57 return EC_POINT_set_compressed_coordinates(group, point, x, y_bit, ctx);
62 EC_POINT *point, const BIGNUM *x,
65 return EC_POINT_set_compressed_coordinates(group, point, x, y_bit, ctx);
70 size_t EC_POINT_point2oct(const EC_GROUP *group, const EC_POINT *point,
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/nouveau/dispnv50/
nouveau_dispnv50_cursc37a.c 39 nvif_wr32(&wndw->wimm.base.user, 0x0208, asyw->point.y << 16 |
40 asyw->point.x);
45 .point = cursc37a_point,
  /src/external/lgpl3/gmp/dist/tests/cxx/
t-locale.cc 78 static char point[] = { local
85 for (size_t i = 0; i < numberof (point); i++)
87 set_point (point[i]);
93 string str = string(data[j].str1)+point[i]+string(data[j].str2);
104 cout << " point " << point[i] << "\n"; local
106 cout << " localeconv point \""
117 cout << " point " << point[i] << "\n"; local
121 cout << " localeconv point \""
135 static char point[] = { local
155 cout << " point " << point[i] << "\\n"; local
    [all...]
  /src/external/gpl3/gdb/dist/readline/readline/
mbutil.c 155 int point; local
166 point = seed + _rl_adjust_point (string, seed, &ps);
169 if (point == seed - 1) /* invalid */
173 the beginning of a multibyte character. Correct the point and consume
175 if (seed < point)
180 len = strlen (string + point);
183 if (_rl_utf8locale && UTF8_SINGLEBYTE(string[point]))
186 wc = (WCHAR_T) string[point];
190 tmp = MBRTOWC (&wc, string+point, len, &ps);
194 point++
294 int prev, non_zero_prev, point, length; local
    [all...]
  /src/external/gpl3/gdb.old/dist/readline/readline/
mbutil.c 155 int point; local
166 point = seed + _rl_adjust_point (string, seed, &ps);
169 if (point == seed - 1) /* invalid */
173 the beginning of a multibyte character. Correct the point and consume
175 if (seed < point)
180 len = strlen (string + point);
183 if (_rl_utf8locale && UTF8_SINGLEBYTE(string[point]))
186 wc = (wchar_t) string[point];
190 tmp = mbrtowc (&wc, string+point, len, &ps);
194 point++
294 int prev, non_zero_prev, point, length; local
    [all...]

Completed in 37 milliseconds

1 2 3 4 5 6 7 8 91011>>