Searched refs:e1 (Results 51 - 75 of 101) sorted by relevance

12345

/freebsd-10.2-release/contrib/groff/src/preproc/refer/
H A Dref.cpp1099 const char *e1; local
1100 const char *s1 = r1.get_date(&e1);
1107 else if (e1 - s1 != e2 - s2)
1110 return memcmp(s1, s2, e1 - s1) == 0;
/freebsd-10.2-release/contrib/bsnmp/lib/
H A Dsnmpclient.c175 struct entry *e, *e1; local
324 e1 = TAILQ_FIRST(work->table);
326 while (e1 != NULL) {
329 e1 = TAILQ_NEXT(e1, link);
332 if (e1 == NULL) {
336 TAILQ_INSERT_BEFORE(e1, e, link);
/freebsd-10.2-release/contrib/gcc/cp/
H A Dtypeck.c2599 tree idx, delta, e1, e2, e3, vtbl, basetype;
2611 e1 = build_addr_func (PTRMEM_CST_MEMBER (function));
2612 e1 = convert (fntype, e1);
2613 return e1;
2635 e1 = cp_build_binary_op (BIT_AND_EXPR, idx, integer_one_node);
2640 e1 = cp_build_binary_op (BIT_AND_EXPR, delta, integer_one_node);
2690 e1 = build_conditional_expr (e1, e2, e3);
2695 e1
2593 tree idx, delta, e1, e2, e3, vtbl, basetype; local
3448 tree e1; local
[all...]
/freebsd-10.2-release/lib/libiconv_modules/HZ/
H A Dcitrus_hz.c121 escape_list e1; member in struct:__anon5973
127 #define E1SET(ei) (&(ei)->e1)
/freebsd-10.2-release/contrib/gcc/
H A Dcfghooks.c865 extract_cond_bb_edges (basic_block b, edge *e1, edge *e2) argument
868 cfg_hooks->extract_cond_bb_edges (b, e1, e2);
H A Dcfgloopmanip.c1258 edge e1; local
1271 e1 = make_edge (new_head, first_head, ir_type () ? EDGE_TRUE_VALUE : 0);
1276 lv_adjust_loop_header_phi (first_head, second_head, new_head, e1);
H A Dtree-vrp.c4192 bitmap e1, e2; local
4199 e1 = get_value_range (n1)->equiv;
4205 bitmap_set_bit (e1, SSA_NAME_VERSION (n1));
4210 if (bitmap_intersect_p (e1, e2))
4212 bitmap_clear_bit (e1, SSA_NAME_VERSION (n1));
4227 EXECUTE_IF_SET_IN_BITMAP (e1, 0, i1, bi1)
4263 bitmap_clear_bit (e1, SSA_NAME_VERSION (n1));
4278 bitmap_clear_bit (e1, SSA_NAME_VERSION (n1));
4288 bitmap_clear_bit (e1, SSA_NAME_VERSION (n1));
H A Dtree-cfg.c660 edge e1 = ((struct edge_to_cases_elt *)p1)->e; local
663 return e1 == e2;
1408 edge e0, e1; local
1413 e1 = EDGE_SUCC (bb, 1);
1415 return e1->dest;
1416 if (e1->flags & EDGE_COMPLEX)
/freebsd-10.2-release/sys/dev/bxe/
H A Decore_init.h634 uint32_t e1; /* 57710 */ member in struct:__anon8141::__anon8142
764 return ecore_blocks_parity_data[idx].reg_mask.e1;
/freebsd-10.2-release/contrib/libarchive/libarchive/
H A Darchive_read_support_format_zip.c335 const struct zip_entry *e1 = (const struct zip_entry *)n1; local
338 return ((int)(e2->local_header_offset - e1->local_header_offset));
354 const struct zip_entry *e1 = (const struct zip_entry *)n1; local
357 return (strcmp(e2->rsrcname.s, e1->rsrcname.s));
/freebsd-10.2-release/contrib/texinfo/util/
H A Dtexindex.c820 char *e1 = start1 + length1;
827 if (p1 == e1)
849 if (p1 == e1)
816 char *e1 = start1 + length1; local
/freebsd-10.2-release/contrib/binutils/gas/config/
H A Dtc-ia64.c3514 expressionS e1, e2; local
3521 sep = parse_operand (&e1, ',');
3527 reg1 = e1.X_add_number;
3529 if (e1.X_op != O_register)
3604 expressionS e1; local
3611 sep = parse_operand (&e1, ',');
3612 if (e1.X_op != O_register || e1.X_add_number != REG_GR + 12)
3924 expressionS e1, e2; local
3932 sep = parse_operand (&e1, ',');
4137 expressionS e1, e2; local
4365 expressionS e1, e2; local
[all...]
/freebsd-10.2-release/contrib/gcc/config/arm/
H A Darm.c15549 rtx e1;
15552 e1 = XEXP (p, 1);
15563 if (IS_VFP_REGNUM (REGNO (e1)))
15565 (REGNO (e1) - FIRST_VFP_REGNUM) / 2);
15567 asm_fprintf(asm_out_file, "{%r}\n", REGNO (e1));
15574 if (GET_CODE (e1) != PLUS
15575 || GET_CODE (XEXP (e1, 0)) != REG
15576 || REGNO (XEXP (e1, 0)) != SP_REGNUM
15577 || GET_CODE (XEXP (e1, 1)) != CONST_INT)
15581 -INTVAL (XEXP (e1,
15527 rtx e1; local
[all...]
/freebsd-10.2-release/contrib/gcclibs/libcpp/
H A Dfiles.c179 static int pchf_save_compare (const void *e1, const void *e2);
1525 pchf_save_compare (const void *e1, const void *e2)
1527 return memcmp (e1, e2, sizeof (struct pchf_entry));
1524 pchf_save_compare(const void *e1, const void *e2) argument
/freebsd-10.2-release/usr.sbin/nscd/
H A Dcachelib.c168 entries_qsort_cmp_func(const void *e1, const void *e2) argument
171 assert(e1 != NULL);
174 return (strcmp((*(struct cache_entry_ const **)e1)->name,
/freebsd-10.2-release/contrib/binutils/bfd/
H A Delfxx-mips.c1998 const struct mips_got_entry *e1 = (struct mips_got_entry *)entry1;
2002 if ((e1->tls_type ^ e2->tls_type) & GOT_TLS_LDM)
2005 return e1->abfd == e2->abfd && e1->symndx == e2->symndx
2006 && (! e1->abfd ? e1->d.address == e2->d.address
2007 : e1->symndx >= 0 ? e1->d.addend == e2->d.addend
2008 : e1->d.h == e2->d.h);
2035 const struct mips_got_entry *e1
1986 const struct mips_got_entry *e1 = (struct mips_got_entry *)entry1; local
2023 const struct mips_got_entry *e1 = (struct mips_got_entry *)entry1; local
2966 const struct mips_elf_bfd2got_hash *e1 local
[all...]
H A Delf32-score.c907 const struct score_got_entry *e1 = (struct score_got_entry *)entry1; local
910 return e1->abfd == e2->abfd && e1->symndx == e2->symndx
911 && (! e1->abfd ? e1->d.address == e2->d.address
912 : e1->symndx >= 0 ? e1->d.addend == e2->d.addend
913 : e1->d.h == e2->d.h);
H A Delf-eh-frame.c215 cie_eq (const void *e1, const void *e2) argument
217 const struct cie *c1 = e1;
/freebsd-10.2-release/contrib/llvm/lib/CodeGen/
H A DLiveVariables.cpp650 for (unsigned i = 0, e1 = VirtRegInfo.size(); i != e1; ++i) {
/freebsd-10.2-release/contrib/ntp/sntp/libevent/
H A Devmap.c101 /* Helper used by the event_io_map hashtable code; returns true iff e1 and e2
104 eqsocket(struct event_map_entry *e1, struct event_map_entry *e2) argument
106 return e1->fd == e2->fd;
/freebsd-10.2-release/contrib/ntp/sntp/libevent/test/
H A Dregress.c2173 struct event e1, e2; local
2177 event_set(&e1, pair[0], EV_READ, test_multiple_cb, NULL);
2178 event_add(&e1, NULL);
2189 event_del(&e1);
3157 int e1,e2,e3,e4; local
3176 e1 = e2 = e3 = e4 = 0;
3177 ev1 = event_new(base, data->pair[0], EV_READ, tabf_cb, &e1);
3210 tt_int_op(e1, ==, 0);
/freebsd-10.2-release/contrib/texinfo/info/
H A Decho-area.c1295 REFERENCE **e1 = (REFERENCE **) entry1;
1298 return (strcasecmp ((*e1)->label, (*e2)->label));
1292 REFERENCE **e1 = (REFERENCE **) entry1; local
/freebsd-10.2-release/sys/contrib/ngatm/netnatm/sig/
H A Dsig_call.c2678 struct uni_ierr *e1; local
2692 FOREACH_ERR(e1, c->uni) {
2693 if (e1->err == UNI_IERR_MIS) {
2699 FOREACH_ERR(e1, c->uni) {
2700 if (e1->man && e1->ie != UNI_IE_EPREF &&
2701 e1->act == UNI_IEACT_DEFAULT) {
/freebsd-10.2-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/
H A Dzio.h578 extern int zio_worst_error(int e1, int e2);
/freebsd-10.2-release/sys/dev/sound/pci/
H A Dds1.c372 u_int32_t e1[] = {0, 0, 0, 0, 0}; local
419 pb->Effect1Gain = pb->Effect1GainEnd = e1[ch] * 0x40000000;

Completed in 609 milliseconds

12345