Home
last modified time | relevance | path

Searched refs:ass (Results 1 – 25 of 37) sorted by relevance

12

/netbsd/src/usr.bin/login/
Dcommon.c169 struct sockaddr_storage ass; in update_db() local
176 alen = sizeof(ass); in update_db()
177 if (getpeername(STDIN_FILENO, (struct sockaddr *)&ass, &alen) != -1) { in update_db()
179 sizeof(assbuf), "%A (%a)", (void *)&ass); in update_db()
184 if (memcmp(&ass, &ss, alen) != 0) in update_db()
190 ss = ass; in update_db()
/netbsd/src/external/gpl3/gcc/dist/gcc/
Dloop-doloop.cc532 rtx ass = copy_rtx (desc->noloop_assumptions); in doloop_modify() local
546 for (; ass; ass = XEXP (ass, 1)) in doloop_modify()
547 if (!add_test (XEXP (ass, 0), &te, set_zero)) in doloop_modify()
550 if (ass) in doloop_modify()
Dgimple-range-fold.h50 if (const gassign *ass = dyn_cast<const gassign *> (s)) in gimple_range_handler() local
51 return range_op_handler (gimple_assign_rhs_code (ass), in gimple_range_handler()
52 TREE_TYPE (gimple_assign_lhs (ass))); in gimple_range_handler()
Dgimple.h2604 const gassign *ass = GIMPLE_CHECK2<const gassign *> (gs);
2605 return gimple_assign_lhs (ass);
2620 gassign *ass = GIMPLE_CHECK2<gassign *> (gs);
2621 return gimple_assign_lhs_ptr (ass);
2639 gassign *ass = GIMPLE_CHECK2<gassign *> (gs);
2640 gimple_assign_set_lhs (ass, lhs);
2655 const gassign *ass = GIMPLE_CHECK2<const gassign *> (gs);
2656 return gimple_assign_rhs1 (ass);
2672 gassign *ass = GIMPLE_CHECK2<gassign *> (gs);
2673 return gimple_assign_rhs1_ptr (ass);
[all …]
Dtree-ssa-uninit.cc582 if (gassign *ass = dyn_cast <gassign *> (use_stmt)) in maybe_warn_operand() local
584 if (gimple_assign_rhs_code (ass) == BIT_INSERT_EXPR in maybe_warn_operand()
585 && luse_p->use == gimple_assign_rhs1_ptr (ass)) in maybe_warn_operand()
1033 if (gassign *ass = dyn_cast <gassign *> (stmt)) in warn_uninitialized_vars() local
1035 if (gimple_assign_rhs_code (ass) == BIT_INSERT_EXPR in warn_uninitialized_vars()
1036 && use_p->use == gimple_assign_rhs1_ptr (ass)) in warn_uninitialized_vars()
Dtree-scalar-evolution.cc2292 if (gassign *ass = dyn_cast <gassign *> (def)) in instantiate_scev_name() local
2294 switch (gimple_assign_rhs_class (ass)) in instantiate_scev_name()
2299 inner_loop, gimple_assign_rhs1 (ass), in instantiate_scev_name()
2303 res = fold_build1 (gimple_assign_rhs_code (ass), in instantiate_scev_name()
2310 inner_loop, gimple_assign_rhs1 (ass), in instantiate_scev_name()
2315 inner_loop, gimple_assign_rhs2 (ass), in instantiate_scev_name()
2319 res = fold_build2 (gimple_assign_rhs_code (ass), in instantiate_scev_name()
3605 gassign *ass = gimple_build_assign (rslt, def); in final_value_replacement_loop() local
3606 gimple_set_location (ass, in final_value_replacement_loop()
3608 gsi_insert_before (&gsi, ass, GSI_SAME_STMT); in final_value_replacement_loop()
[all …]
Dgraphite-isl-ast-to-gimple.cc1257 gassign *ass = gimple_build_assign (NULL_TREE, new_phi_def); in copy_bb_and_scalar_dependences() local
1258 create_new_def_for (res, ass, NULL); in copy_bb_and_scalar_dependences()
1259 gsi_insert_after (&gsi_tgt, ass, GSI_NEW_STMT); in copy_bb_and_scalar_dependences()
1309 gassign *ass = gimple_build_assign (new_phi_def, arg); in copy_bb_and_scalar_dependences() local
1310 gsi_insert_after (&gsi_tgt, ass, GSI_NEW_STMT); in copy_bb_and_scalar_dependences()
1448 gassign *ass = gimple_build_assign (new_phi_def, in generate_entry_out_of_ssa_copies() local
1451 gsi_insert_after (&gsi_tgt, ass, GSI_NEW_STMT); in generate_entry_out_of_ssa_copies()
Dtree-ssa-sccvn.cc5084 gassign *ass = dyn_cast <gassign *> (SSA_NAME_DEF_STMT (rhs1)); in visit_nary_op() local
5085 if (ass in visit_nary_op()
5086 && !gimple_has_volatile_ops (ass) in visit_nary_op()
5087 && vn_get_stmt_kind (ass) == VN_REFERENCE) in visit_nary_op()
5089 tree last_vuse = gimple_vuse (ass); in visit_nary_op()
5090 tree op = gimple_assign_rhs1 (ass); in visit_nary_op()
5091 tree result = vn_reference_lookup (op, gimple_vuse (ass), in visit_nary_op()
5731 else if (gassign *ass = dyn_cast <gassign *> (stmt)) in visit_stmt() local
5733 enum tree_code code = gimple_assign_rhs_code (ass); in visit_stmt()
5734 tree lhs = gimple_assign_lhs (ass); in visit_stmt()
[all …]
Domp-expand.cc1704 gassign *ass = gimple_build_assign (v, expr); in expand_oacc_collapse_vars() local
1705 gsi_insert_before (gsi, ass, GSI_SAME_STMT); in expand_oacc_collapse_vars()
7622 gassign *ass; in expand_oacc_for() local
7658 ass = gimple_build_assign (fd->loop.n2, total); in expand_oacc_for()
7659 gsi_insert_before (&gsi, ass, GSI_SAME_STMT); in expand_oacc_for()
7695 ass = gimple_build_assign (tile_size, expr); in expand_oacc_for()
7696 gsi_insert_before (&gsi, ass, GSI_SAME_STMT); in expand_oacc_for()
7699 ass = gimple_build_assign (element_s, s); in expand_oacc_for()
7700 gsi_insert_before (&gsi, ass, GSI_SAME_STMT); in expand_oacc_for()
7727 ass = gimple_build_assign (chunk_no, expr); in expand_oacc_for()
[all …]
Dgimple-loop-interchange.cc511 if (gassign *ass = dyn_cast <gassign *> (single_use)) in analyze_iloop_reduction_var() local
513 enum tree_code code = gimple_assign_rhs_code (ass); in analyze_iloop_reduction_var()
516 && use_p->use == gimple_assign_rhs1_ptr (ass))) in analyze_iloop_reduction_var()
Dtree-vrp.cc1469 if (gassign *ass = dyn_cast <gassign *> (def_stmt)) in register_edge_assert_for_2() local
1471 if (CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (ass)) in register_edge_assert_for_2()
1472 && ! TYPE_UNSIGNED (TREE_TYPE (gimple_assign_rhs1 (ass))) in register_edge_assert_for_2()
1473 && (TYPE_PRECISION (TREE_TYPE (gimple_assign_lhs (ass))) in register_edge_assert_for_2()
1474 == TYPE_PRECISION (TREE_TYPE (gimple_assign_rhs1 (ass))))) in register_edge_assert_for_2()
1475 name3 = gimple_assign_rhs1 (ass); in register_edge_assert_for_2()
Domp-offload.cc2309 gimple *ass = gimple_build_assign (gimple_call_lhs (call), in execute_oacc_device_lower() local
2311 gsi_replace (&gsi, ass, false); in execute_oacc_device_lower()
Dtree-vect-stmts.cc11925 if (gassign *ass = dyn_cast <gassign *> (stmt->stmt)) in vect_is_simple_use() local
11927 if (gimple_assign_rhs_code (ass) == COND_EXPR in vect_is_simple_use()
11928 && COMPARISON_CLASS_P (gimple_assign_rhs1 (ass))) in vect_is_simple_use()
11931 *op = TREE_OPERAND (gimple_assign_rhs1 (ass), operand); in vect_is_simple_use()
11933 *op = gimple_op (ass, operand); in vect_is_simple_use()
11935 else if (gimple_assign_rhs_code (ass) == VIEW_CONVERT_EXPR) in vect_is_simple_use()
11936 *op = TREE_OPERAND (gimple_assign_rhs1 (ass), 0); in vect_is_simple_use()
11938 *op = gimple_op (ass, operand + 1); in vect_is_simple_use()
Dtree-ssa-reassoc.cc707 if (gassign *ass = dyn_cast <gassign *> (stmt)) in gimple_nop_conversion_p() local
709 if (CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (ass)) in gimple_nop_conversion_p()
710 && tree_nop_conversion_p (TREE_TYPE (gimple_assign_lhs (ass)), in gimple_nop_conversion_p()
711 TREE_TYPE (gimple_assign_rhs1 (ass)))) in gimple_nop_conversion_p()
Dtree-ssa-loop-ivopts.cc7316 gassign *ass; in rewrite_use_nonlinear_expr() local
7447 ass = gimple_build_assign (tgt, comp); in rewrite_use_nonlinear_expr()
7448 gsi_insert_before (&bsi, ass, GSI_SAME_STMT); in rewrite_use_nonlinear_expr()
/netbsd/src/share/misc/
Dacronyms-o.real6 BAMF bad-ass motherfucker
41 LMFAO laughing my fucking ass off
73 YMA yo momma's ass
Dacronyms162 EWAG experienced wild-ass guess
329 KITA kick in the ass
346 LMAO laughing my ass off
457 PITA pain in the ass
505 ROFLMAO rolling on floor laughing my ass off
626 WAG wild-ass guess
/netbsd/src/usr.bin/config/
Dmkmakefile.c215 emitmkoption(FILE *fp, const char *ass, const struct nvlist *nv) in emitmkoption() argument
219 fprintf(fp, "%s%s", nv->nv_name, ass); in emitmkoption()
/netbsd/src/games/fortune/datfiles/
Dlimerick-o.real131 He plugged up his ass
193 A nice piece of ass
304 And part of her ass in Brazil.
417 Had an ass of extreme sensitivity
436 In a month, his ass
630 By letting the prof pat your ass."
653 Who showed him her ass --
1350 For I cannot live up to your ass."
1360 Her figurehead They filled his ass,
1475 Once painted his ass like a Dahlia.
[all …]
Dfarber292 He has his ass on the wrong end of his head.
356 He'll grease any palm that will pat his ass.
447 He's running around like a chicken with his ass cut off.
672 I'd better get my horse on its ass.
1010 It's a typical case of alligator mouth and hummingbird ass.
1052 It's going to fall on its ass from within.
Dfortunes-o.real2 69 with two fingers up your ass.
445 $50.00 shoved up your ass, a nickel at a time.
649 I think every good Christian ought to kick Falwell right in the ass.
761 If you think sex is a pain in the ass, try different position.
897 with his head stuck up his ass.
1046 Woman: "No, thanks, I've already got one ass-hole in there now."
1509 you say `ass' and I'll say `hell'".
1515 "I dunno," quavers the six-year-old, "but you can bet your ass
Dfortunes2-o.real86 Donkey, my ass! said Mommy with some sentience. Do you think I don't
115 So the bear wiped his ass with the rabbit.
391 like to, but I don't think my ass can take another hard roll!"
500 "Gee, Dad, my ass is getting really sore."
758 your ass, you ugly cunt."
1243 ass?"
1942 `ass' and I'll say `hell'".
1948 "I dunno," quavers the six-year-old, "but you can bet your ass
2287 69 with two fingers up your ass.
2519 "Well," the man replied, "It's simple. You say 'Tickle your ass
[all …]
/netbsd/src/crypto/external/bsd/heimdal/dist/lib/hx509/data/
Dnist-data3 # p(ass) f(ail)
/netbsd/src/crypto/external/bsd/openssh/dist/
Dsftp.c940 struct stat ass, bss; in sglob_comp() local
941 const struct stat *as = &ass; in sglob_comp()
948 if (stat(ap, &ass) == -1 || stat(bp, &bss) == -1) in sglob_comp()
/netbsd/src/external/gpl3/binutils/dist/ld/
Dldlang.c1869 lang_assignment_statement_type *ass; in insert_os_after() local
1871 ass = &(*where)->assignment_statement; in insert_os_after()
1872 if (ass->exp->type.node_class != etree_assert in insert_os_after()
1873 && ass->exp->assign.dst[0] == '.' in insert_os_after()
1874 && ass->exp->assign.dst[1] == 0) in insert_os_after()

12