| /netbsd-src/tests/usr.bin/xlint/lint1/ |
| H A D | d_c99_compound_literal_comma.c | 13 struct point { struct 18 struct point argument 19 point_abs(struct point point) in point_abs() argument 22 if (point.x >= 0 && point.y >= 0) in point_abs() 23 return (struct point){ point.x, point.y }; in point_abs() 26 if (point.x >= 0) in point_abs() 27 return (struct point){ .x = point.x, .y = -point.y }; in point_abs() 30 if (point.y >= 0) in point_abs() 31 return (struct point){ point.x, point.y, }; in point_abs() 34 return (struct point){ .x = point.x, .y = -point.y, }; in point_abs()
|
| H A D | init_c99.c | 123 struct point { struct 128 struct point point = { variable 133 struct point point_with_designators = { 138 struct point point_with_mixed_designators = { 151 struct point origin = { 158 struct point pythagoras = { 3, 4 }; 177 struct point scalar_with_several_braces = { 183 struct point top_left; 184 struct point bottom_right; 199 struct point points[] = { [all …]
|
| H A D | msg_171.c | 41 struct point { in pointer_to_compound_literal() struct 45 struct point *p = &(struct point){ in pointer_to_compound_literal() 53 struct point p2 = { in pointer_to_compound_literal() 54 (int)sizeof(struct point){ in pointer_to_compound_literal() 55 (int)sizeof(struct point){ in pointer_to_compound_literal() 56 (int)sizeof(struct point){ in pointer_to_compound_literal() 57 (int)sizeof(struct point){ in pointer_to_compound_literal()
|
| H A D | init_c90.c | 12 struct point { struct 16 struct point point_c90 = { 0, 0 }; argument 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 }; in compound_literal()
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/analyzer/ |
| H A D | state-purge.cc | 98 const function_point &point, in gimple_op_visitor() argument 102 m_point (point), in gimple_op_visitor() 251 function_point point (function_point::before_stmt (snode, i)); in state_purge_map() local 252 gimple_op_visitor v (this, point, snode->get_function ()); in state_purge_map() 363 function_point point in state_purge_per_ssa_name() local 366 add_to_worklist (point, &worklist, in state_purge_per_ssa_name() 368 m_points_needing_name.add (point); in state_purge_per_ssa_name() 376 function_point point = before_use_stmt (map, use_stmt); in state_purge_per_ssa_name() local 377 add_to_worklist (point, &worklist, map.get_logger ()); in state_purge_per_ssa_name() 378 m_points_needing_name.add (point); in state_purge_per_ssa_name() [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/cp/ |
| H A D | cfns.gperf | 60 #fclose, 89 -- POSIX thread cancellation point 63 #fflush, 89 -- POSIX thread cancellation point 64 #fgetc, 89 -- POSIX thread cancellation point 65 #fgetpos, 89 -- POSIX thread cancellation point 66 #fgets, 89 -- POSIX thread cancellation point 67 #fgetwc, 89 -- POSIX thread cancellation point 68 #fgetws, 89 -- POSIX thread cancellation point 71 #fopen, 89 -- POSIX thread cancellation point 72 #fprintf, 89 -- POSIX thread cancellation point 73 #fputc, 89 -- POSIX thread cancellation point [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/cp/ |
| H A D | cfns.gperf | 60 #fclose, 89 -- POSIX thread cancellation point 63 #fflush, 89 -- POSIX thread cancellation point 64 #fgetc, 89 -- POSIX thread cancellation point 65 #fgetpos, 89 -- POSIX thread cancellation point 66 #fgets, 89 -- POSIX thread cancellation point 67 #fgetwc, 89 -- POSIX thread cancellation point 68 #fgetws, 89 -- POSIX thread cancellation point 71 #fopen, 89 -- POSIX thread cancellation point 72 #fprintf, 89 -- POSIX thread cancellation point 73 #fputc, 89 -- POSIX thread cancellation point [all …]
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/ec/ |
| H A D | ec_oct.c | 18 int EC_POINT_set_compressed_coordinates(const EC_GROUP *group, EC_POINT *point, in EC_POINT_set_compressed_coordinates() argument 27 if (!ec_point_is_compat(point, group)) { in EC_POINT_set_compressed_coordinates() 34 return ec_GFp_simple_set_compressed_coordinates(group, point, x, in EC_POINT_set_compressed_coordinates() 44 return ec_GF2m_simple_set_compressed_coordinates(group, point, x, in EC_POINT_set_compressed_coordinates() 48 return group->meth->point_set_compressed_coordinates(group, point, x, in EC_POINT_set_compressed_coordinates() 54 EC_POINT *point, const BIGNUM *x, in EC_POINT_set_compressed_coordinates_GFp() argument 57 return EC_POINT_set_compressed_coordinates(group, point, x, y_bit, ctx); in EC_POINT_set_compressed_coordinates_GFp() 62 EC_POINT *point, const BIGNUM *x, in EC_POINT_set_compressed_coordinates_GF2m() argument 65 return EC_POINT_set_compressed_coordinates(group, point, x, y_bit, ctx); in EC_POINT_set_compressed_coordinates_GF2m() 70 size_t EC_POINT_point2oct(const EC_GROUP *group, const EC_POINT *point, in EC_POINT_point2oct() argument [all …]
|
| H A D | ec2_smpl.c | 213 int ec_GF2m_simple_point_init(EC_POINT *point) in ec_GF2m_simple_point_init() argument 215 point->X = BN_new(); in ec_GF2m_simple_point_init() 216 point->Y = BN_new(); in ec_GF2m_simple_point_init() 217 point->Z = BN_new(); in ec_GF2m_simple_point_init() 219 if (point->X == NULL || point->Y == NULL || point->Z == NULL) { in ec_GF2m_simple_point_init() 220 BN_free(point->X); in ec_GF2m_simple_point_init() 221 BN_free(point->Y); in ec_GF2m_simple_point_init() 222 BN_free(point->Z); in ec_GF2m_simple_point_init() 229 void ec_GF2m_simple_point_finish(EC_POINT *point) in ec_GF2m_simple_point_finish() argument 231 BN_free(point->X); in ec_GF2m_simple_point_finish() [all …]
|
| H A D | ec_lib.c | 680 void EC_POINT_free(EC_POINT *point) in EC_POINT_free() argument 682 if (!point) in EC_POINT_free() 685 if (point->meth->point_finish != 0) in EC_POINT_free() 686 point->meth->point_finish(point); in EC_POINT_free() 687 OPENSSL_free(point); in EC_POINT_free() 690 void EC_POINT_clear_free(EC_POINT *point) in EC_POINT_clear_free() argument 692 if (!point) in EC_POINT_clear_free() 695 if (point->meth->point_clear_finish != 0) in EC_POINT_clear_free() 696 point->meth->point_clear_finish(point); in EC_POINT_clear_free() 697 else if (point->meth->point_finish != 0) in EC_POINT_clear_free() [all …]
|
| H A D | ecp_smpl.c | 315 int ec_GFp_simple_point_init(EC_POINT *point) in ec_GFp_simple_point_init() argument 317 point->X = BN_new(); in ec_GFp_simple_point_init() 318 point->Y = BN_new(); in ec_GFp_simple_point_init() 319 point->Z = BN_new(); in ec_GFp_simple_point_init() 320 point->Z_is_one = 0; in ec_GFp_simple_point_init() 322 if (point->X == NULL || point->Y == NULL || point->Z == NULL) { in ec_GFp_simple_point_init() 323 BN_free(point->X); in ec_GFp_simple_point_init() 324 BN_free(point->Y); in ec_GFp_simple_point_init() 325 BN_free(point->Z); in ec_GFp_simple_point_init() 331 void ec_GFp_simple_point_finish(EC_POINT *point) in ec_GFp_simple_point_finish() argument [all …]
|
| H A D | ec_print.c | 15 const EC_POINT *point, in EC_POINT_point2bn() argument 22 buf_len = EC_POINT_point2buf(group, point, form, &buf, ctx); in EC_POINT_point2bn() 35 const BIGNUM *bn, EC_POINT *point, BN_CTX *ctx) in EC_POINT_bn2point() argument 53 if (point == NULL) { in EC_POINT_bn2point() 59 ret = point; in EC_POINT_bn2point() 62 if (ret != point) in EC_POINT_bn2point() 76 const EC_POINT *point, in EC_POINT_point2hex() argument 83 buf_len = EC_POINT_point2buf(group, point, form, &buf, ctx); in EC_POINT_point2hex() 108 const char *buf, EC_POINT *point, BN_CTX *ctx) in EC_POINT_hex2point() argument 116 ret = EC_POINT_bn2point(group, tmp_bn, point, ctx); in EC_POINT_hex2point()
|
| /netbsd-src/crypto/external/bsd/openssl/dist/crypto/ec/ |
| H A D | ec_oct.c | 24 int EC_POINT_set_compressed_coordinates(const EC_GROUP *group, EC_POINT *point, in EC_POINT_set_compressed_coordinates() argument 32 if (!ec_point_is_compat(point, group)) { in EC_POINT_set_compressed_coordinates() 38 return ossl_ec_GFp_simple_set_compressed_coordinates(group, point, x, in EC_POINT_set_compressed_coordinates() 47 return ossl_ec_GF2m_simple_set_compressed_coordinates(group, point, in EC_POINT_set_compressed_coordinates() 51 return group->meth->point_set_compressed_coordinates(group, point, x, in EC_POINT_set_compressed_coordinates() 57 EC_POINT *point, const BIGNUM *x, in EC_POINT_set_compressed_coordinates_GFp() argument 60 return EC_POINT_set_compressed_coordinates(group, point, x, y_bit, ctx); in EC_POINT_set_compressed_coordinates_GFp() 65 EC_POINT *point, const BIGNUM *x, in EC_POINT_set_compressed_coordinates_GF2m() argument 68 return EC_POINT_set_compressed_coordinates(group, point, x, y_bit, ctx); in EC_POINT_set_compressed_coordinates_GF2m() 73 size_t EC_POINT_point2oct(const EC_GROUP *group, const EC_POINT *point, in EC_POINT_point2oct() argument [all …]
|
| H A D | ec2_smpl.c | 222 int ossl_ec_GF2m_simple_point_init(EC_POINT *point) in ossl_ec_GF2m_simple_point_init() argument 224 point->X = BN_new(); in ossl_ec_GF2m_simple_point_init() 225 point->Y = BN_new(); in ossl_ec_GF2m_simple_point_init() 226 point->Z = BN_new(); in ossl_ec_GF2m_simple_point_init() 228 if (point->X == NULL || point->Y == NULL || point->Z == NULL) { in ossl_ec_GF2m_simple_point_init() 229 BN_free(point->X); in ossl_ec_GF2m_simple_point_init() 230 BN_free(point->Y); in ossl_ec_GF2m_simple_point_init() 231 BN_free(point->Z); in ossl_ec_GF2m_simple_point_init() 238 void ossl_ec_GF2m_simple_point_finish(EC_POINT *point) in ossl_ec_GF2m_simple_point_finish() argument 240 BN_free(point->X); in ossl_ec_GF2m_simple_point_finish() [all …]
|
| H A D | ec_lib.c | 745 void EC_POINT_free(EC_POINT *point) in EC_POINT_free() argument 747 if (point == NULL) in EC_POINT_free() 750 if (point->meth->point_finish != 0) in EC_POINT_free() 751 point->meth->point_finish(point); in EC_POINT_free() 752 OPENSSL_free(point); in EC_POINT_free() 755 void EC_POINT_clear_free(EC_POINT *point) in EC_POINT_clear_free() argument 757 if (point == NULL) in EC_POINT_clear_free() 760 if (point->meth->point_clear_finish != 0) in EC_POINT_clear_free() 761 point->meth->point_clear_finish(point); in EC_POINT_clear_free() 762 else if (point->meth->point_finish != 0) in EC_POINT_clear_free() [all …]
|
| H A D | ecp_smpl.c | 322 int ossl_ec_GFp_simple_point_init(EC_POINT *point) in ossl_ec_GFp_simple_point_init() argument 324 point->X = BN_new(); in ossl_ec_GFp_simple_point_init() 325 point->Y = BN_new(); in ossl_ec_GFp_simple_point_init() 326 point->Z = BN_new(); in ossl_ec_GFp_simple_point_init() 327 point->Z_is_one = 0; in ossl_ec_GFp_simple_point_init() 329 if (point->X == NULL || point->Y == NULL || point->Z == NULL) { in ossl_ec_GFp_simple_point_init() 330 BN_free(point->X); in ossl_ec_GFp_simple_point_init() 331 BN_free(point->Y); in ossl_ec_GFp_simple_point_init() 332 BN_free(point->Z); in ossl_ec_GFp_simple_point_init() 338 void ossl_ec_GFp_simple_point_finish(EC_POINT *point) in ossl_ec_GFp_simple_point_finish() argument [all …]
|
| /netbsd-src/external/gpl2/texinfo/dist/info/ |
| H A D | makedoc.c | 353 long point = 0; in process_one_file() local 373 point = offset; in process_one_file() 378 if (!point) in process_one_file() 382 while (point < file_size) in process_one_file() 384 if (buffer[point] == '\n') in process_one_file() 387 line_start = point + 1; in process_one_file() 389 else if (buffer[point] == '(') in process_one_file() 392 point++; in process_one_file() 395 while (point++ < file_size) in process_one_file() 397 if (!whitespace_or_newline (buffer[point])) in process_one_file() [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/analyzer/ |
| H A D | state-purge.cc | 162 function_point point in state_purge_per_ssa_name() local 165 add_to_worklist (point, &worklist, in state_purge_per_ssa_name() 167 m_points_needing_name.add (point); in state_purge_per_ssa_name() 175 function_point point = before_use_stmt (map, use_stmt); in state_purge_per_ssa_name() local 176 add_to_worklist (point, &worklist, map.get_logger ()); in state_purge_per_ssa_name() 177 m_points_needing_name.add (point); in state_purge_per_ssa_name() 186 function_point point in state_purge_per_ssa_name() local 188 add_to_worklist (point, &worklist, map.get_logger ()); in state_purge_per_ssa_name() 189 m_points_needing_name.add (point); in state_purge_per_ssa_name() 203 function_point point = worklist.pop (); in state_purge_per_ssa_name() local [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/ |
| H A D | RISCVSchedule.td | 44 def WriteFMul16 : SchedWrite; // 16-bit floating point multiply 45 def WriteFMA16 : SchedWrite; // 16-bit floating point fused multiply-add 46 def WriteFMul32 : SchedWrite; // 32-bit floating point multiply 47 def WriteFMA32 : SchedWrite; // 32-bit floating point fused multiply-add 48 def WriteFMul64 : SchedWrite; // 64-bit floating point multiply 49 def WriteFMA64 : SchedWrite; // 64-bit floating point fused multiply-add 50 def WriteFDiv16 : SchedWrite; // 16-bit floating point divide 51 def WriteFDiv32 : SchedWrite; // 32-bit floating point divide 52 def WriteFDiv64 : SchedWrite; // 64-bit floating point divide 53 def WriteFSqrt16 : SchedWrite; // 16-bit floating point sqrt [all …]
|
| /netbsd-src/share/locale/ctype/ |
| H A D | gen_ctype_utf8.pl | 303 foreach my $point ( sort { $a <=> $b } keys %{$points} ) { 304 my $diff = $point - $points->{$point}; 308 ( defined $prev_point and $point - 1 != $prev_point ) ) 315 $first_point //= $point; 316 $adjustment //= $points->{$point}; 319 $prev_point = $point; 321 push @{ $map{$first_point}{$adjustment} }, $point; 326 foreach my $point ( keys %map ) { 327 foreach my $adjustment ( keys %{ $map{$point} } ) { 333 @{ squish_points( $map{$point}{$adjustment} ) } [all …]
|
| /netbsd-src/games/snake/snake/ |
| H A D | snake.c | 77 struct point { struct 99 #define pchar(point, c) mvaddch((point)->line + 1, (point)->col + 1, (c)) argument 103 static struct point you; 104 static struct point money; 105 static struct point finish; 106 static struct point snake[6]; 118 static void chase(struct point *, struct point *); 119 static int chk(const struct point *); 125 static struct point *point(struct point *, int, int); 130 static void snrand(struct point *); [all …]
|
| /netbsd-src/external/lgpl3/gmp/dist/tests/cxx/ |
| H A D | t-locale.cc | 78 static char point[] = { in check_input() local 85 for (size_t i = 0; i < numberof (point); i++) in check_input() 87 set_point (point[i]); in check_input() 93 string str = string(data[j].str1)+point[i]+string(data[j].str2); in check_input() 104 cout << " point " << point[i] << "\n"; in check_input() 117 cout << " point " << point[i] << "\n"; in check_input() 135 static char point[] = { in check_output() local 139 for (size_t i = 0; i < numberof (point); i++) in check_output() 141 set_point (point[i]); in check_output() 150 string want = string("1") + point[i] + string("5"); in check_output() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/ |
| H A D | X86Schedule.td | 23 // integer unit to the floating point unit. 212 // Floating point. This covers both scalar and vector operations. 237 defm WriteFAdd : X86SchedWritePair<ReadAfterVecLd>; // Floating point add/sub. 238 defm WriteFAddX : X86SchedWritePair<ReadAfterVecXLd>; // Floating point add/sub (XMM). 239 defm WriteFAddY : X86SchedWritePair<ReadAfterVecYLd>; // Floating point add/sub (YMM). 240 defm WriteFAddZ : X86SchedWritePair<ReadAfterVecYLd>; // Floating point add/sub (ZMM). 241 defm WriteFAdd64 : X86SchedWritePair<ReadAfterVecLd>; // Floating point double add/sub. 242 defm WriteFAdd64X : X86SchedWritePair<ReadAfterVecXLd>; // Floating point double add/sub (XMM). 243 defm WriteFAdd64Y : X86SchedWritePair<ReadAfterVecYLd>; // Floating point double add/sub (YMM). 244 defm WriteFAdd64Z : X86SchedWritePair<ReadAfterVecYLd>; // Floating point double add/sub (ZMM). [all …]
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/x509v3/ |
| H A D | v3_crld.c | 208 DIST_POINT *point = DIST_POINT_new(); in crldp_from_section() local 210 if (point == NULL) in crldp_from_section() 215 ret = set_dist_point_name(&point->distpoint, ctx, cnf); in crldp_from_section() 221 if (!set_reasons(&point->reasons, cnf->value)) in crldp_from_section() 224 point->CRLissuer = gnames_from_sectname(ctx, cnf->value); in crldp_from_section() 225 if (!point->CRLissuer) in crldp_from_section() 230 return point; in crldp_from_section() 233 DIST_POINT_free(point); in crldp_from_section() 251 DIST_POINT *point; in v2i_crld() local 259 point = crldp_from_section(ctx, dpsect); in v2i_crld() [all …]
|
| /netbsd-src/crypto/external/bsd/openssl/dist/crypto/x509/ |
| H A D | v3_crld.c | 212 DIST_POINT *point = DIST_POINT_new(); in crldp_from_section() local 214 if (point == NULL) in crldp_from_section() 219 ret = set_dist_point_name(&point->distpoint, ctx, cnf); in crldp_from_section() 225 if (!set_reasons(&point->reasons, cnf->value)) in crldp_from_section() 228 point->CRLissuer = gnames_from_sectname(ctx, cnf->value); in crldp_from_section() 229 if (point->CRLissuer == NULL) in crldp_from_section() 234 return point; in crldp_from_section() 237 DIST_POINT_free(point); in crldp_from_section() 255 DIST_POINT *point; in v2i_crld() local 263 point = crldp_from_section(ctx, dpsect); in v2i_crld() [all …]
|