| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.python/ |
| compare-enum-type-a.c | 22 enum e e1; variable in typeref:enum:e 27 return e1 + func ();
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.python/ |
| compare-enum-type-a.c | 22 enum e e1; variable in typeref:enum:e 27 return e1 + func ();
|
| /src/external/bsd/jemalloc/dist/test/integration/ |
| thread_tcache_enabled.c | 5 bool e0, e1; local 11 e1 = false; 13 (void *)&e1, sz), 0, "Unexpected mallctl() error"); 17 e1 = true; 19 (void *)&e1, sz), 0, "Unexpected mallctl() error"); 22 e1 = true; 24 (void *)&e1, sz), 0, "Unexpected mallctl() error"); 27 e1 = false; 29 (void *)&e1, sz), 0, "Unexpected mallctl() error"); 32 e1 = false [all...] |
| /src/external/bsd/jemalloc.old/dist/test/integration/ |
| thread_tcache_enabled.c | 5 bool e0, e1; local 11 e1 = false; 13 (void *)&e1, sz), 0, "Unexpected mallctl() error"); 17 e1 = true; 19 (void *)&e1, sz), 0, "Unexpected mallctl() error"); 22 e1 = true; 24 (void *)&e1, sz), 0, "Unexpected mallctl() error"); 27 e1 = false; 29 (void *)&e1, sz), 0, "Unexpected mallctl() error"); 32 e1 = false [all...] |
| /src/usr.bin/chpass/ |
| table.c | 45 char e1[] = ": "; variable 49 { "login", p_login, 1, 5, e1, NULL }, 50 { "password", p_passwd, 1, 8, e1, NULL }, 51 { "uid", p_uid, 1, 3, e1, NULL }, 52 { "gid", p_gid, 1, 3, e1, NULL }, 53 { "class", p_class, 1, 5, e1, NULL }, 60 { "home directory", p_hdir, 1, 14, e1, NULL }, 61 { "shell", p_shell, 0, 5, e1, NULL },
|
| /src/tests/usr.bin/xlint/lint1/ |
| msg_333.c | 14 } e1; variable in typeref:enum:tagged_color 32 if (e1)
|
| /src/external/bsd/jemalloc/dist/test/unit/ |
| background_thread.c | 7 bool e0, e1; local 10 e1 = new_val; 12 &e1, sz), 0, "Unexpected mallctl() failure"); 13 expect_b_eq(e0, !e1, 14 "background_thread should be %d before.\n", !e1); 15 if (e1) { 26 bool e0, e1; local 29 e1 = before; 31 &e1, sz), 0, "Unexpected mallctl() failure"); 34 if (e1) { 46 bool e0, e1; local [all...] |
| /src/external/bsd/jemalloc.old/dist/test/unit/ |
| background_thread.c | 7 bool e0, e1; local 10 e1 = new_val; 12 &e1, sz), 0, "Unexpected mallctl() failure"); 13 assert_b_eq(e0, !e1, 14 "background_thread should be %d before.\n", !e1); 15 if (e1) { 26 bool e0, e1; local 29 e1 = before; 31 &e1, sz), 0, "Unexpected mallctl() failure"); 34 if (e1) { 46 bool e0, e1; local [all...] |
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/ |
| formatted-ref.cc | 36 Enum1 e1 = Val11; variable 41 f1 (s1, e1, i1);
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/ |
| formatted-ref.cc | 36 Enum1 e1 = Val11; variable 41 f1 (s1, e1, i1);
|
| /src/external/mpl/bind/dist/tests/isc/ |
| heap_test.c | 42 struct e *e1 = p1; local 45 return e1->value < e2->value; 58 struct e e1 = { 100, 0 }; local 65 isc_heap_insert(heap, &e1); 66 assert_int_equal(e1.index, 1); 68 isc_heap_delete(heap, e1.index); 69 assert_int_equal(e1.index, 0);
|
| /src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
| constfold.d | 88 UnionExp Neg(Type type, Expression e1) 91 Loc loc = e1.loc; 92 if (e1.type.isreal()) 94 emplaceExp!(RealExp)(&ue, loc, -e1.toReal(), type); 96 else if (e1.type.isimaginary()) 98 emplaceExp!(RealExp)(&ue, loc, -e1.toImaginary(), type); 100 else if (e1.type.iscomplex()) 102 emplaceExp!(ComplexExp)(&ue, loc, -e1.toComplex(), type); 106 emplaceExp!(IntegerExp)(&ue, loc, -e1.toInteger(), type); 111 UnionExp Com(Type type, Expression e1) [all...] |
| optimize.d | 168 e.loc = e1.loc; 178 private Expression fromConstInitializer(int result, Expression e1) 180 //printf("fromConstInitializer(result = %x, %s)\n", result, e1.toChars()); 182 Expression e = e1; 183 if (auto ve = e1.isVarExp()) 192 if (e.op == EXP.comma && e.isCommaExp().e1.isDeclarationExp()) 193 e = e1; 194 else if (e.type != e1.type && e1.type && e1.type.ty != Tident [all...] |
| expressionsem.d | 181 Expression e1 = Expression.extractLast(ue.e1, e0); 183 // Extract the side effect part if ue.e1 is comma. 185 if ((sc.flags & SCOPE.ctfe) ? hasSideEffect(e1) : !isTrivialExp(e1)) // match logic in extractSideEffect() 187 /* Even if opDollar is needed, 'e1' should be evaluate only once. So 189 * e1.opIndex( ... use of $ ... ) 190 * e1.opSlice( ... use of $ ... ) 192 * (ref __dop = e1, __dop).opIndex( ... __dop.opDollar ...) 193 * (ref __dop = e1, __dop).opSlice( ... __dop.opDollar ... [all...] |
| opover.d | 211 /* Rewrite (e1 op e2) as: 212 * (e1.aliasthis op e2) 214 if (isRecursiveAliasThis(e.att1, e.e1.type)) 216 //printf("att %s e1 = %s\n", Token.toChars(e.op), e.e1.type.toChars()); 219 // because 'e1 = e2' could mean 'e1(e2)' or 'e1() = e2' 221 be.e1 = resolveAliasThis(sc, e.e1, true, findOnly) [all...] |
| /src/external/lgpl3/mpfr/dist/src/ |
| swap.c | 32 mpfr_exp_t e1, e2; local 45 e1 = MPFR_EXP(u); 47 MPFR_EXP(v) = e1;
|
| /src/external/gpl3/gcc/dist/gcc/ |
| sort.cc | 76 placing E0 to C->OUT, E1 to C->OUT + C->SIZE, and so on. */ 79 reorder23 (sort_ctx *c, char *e0, char *e1, char *e2) 85 memcpy (&t1, e1 + OFFSET, sizeof (TYPE)); \ 110 reorder45 (sort_ctx *c, char *e0, char *e1, char *e2, char *e3, char *e4) 116 memcpy (&t1, e1 + OFFSET, sizeof (TYPE)); \ 142 /* Helper for netsort. Invoke comparator CMP on E0 and E1. 143 Return E0^E1 if E0 compares less than E1, zero otherwise. 148 cmp1 (char *e0, char *e1, sort_ctx *c) 150 intptr_t x = (intptr_t)e0 ^ (intptr_t)e1; 167 char *e0 = in, *e1 = e0 + c->size, *e2 = e1 + c->size; local [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/ |
| sort.cc | 78 placing E0 to C->OUT, E1 to C->OUT + C->SIZE, and so on. */ 81 reorder23 (sort_ctx *c, char *e0, char *e1, char *e2) 87 memcpy (&t1, e1 + OFFSET, sizeof (TYPE)); \ 112 reorder45 (sort_ctx *c, char *e0, char *e1, char *e2, char *e3, char *e4) 118 memcpy (&t1, e1 + OFFSET, sizeof (TYPE)); \ 144 /* Helper for netsort. Invoke comparator CMP on E0 and E1. 145 Return E0^E1 if E0 compares less than E1, zero otherwise. 150 cmp1 (char *e0, char *e1, sort_ctx *c) 152 intptr_t x = (intptr_t)e0 ^ (intptr_t)e1; 169 char *e0 = in, *e1 = e0 + c->size, *e2 = e1 + c->size; local [all...] |
| /src/external/gpl3/binutils/dist/libiberty/ |
| partition.c | 78 struct partition_elem *e1; local 99 e1 = &(elements[elem1]); 113 old_next = e1->next; 114 e1->next = e2->next; 126 int e1 = * (const int *) elem1; local 128 if (e1 < e2) 130 else if (e1 > e2)
|
| /src/external/gpl3/binutils.old/dist/libiberty/ |
| partition.c | 78 struct partition_elem *e1; local 99 e1 = &(elements[elem1]); 113 old_next = e1->next; 114 e1->next = e2->next; 126 int e1 = * (const int *) elem1; local 128 if (e1 < e2) 130 else if (e1 > e2)
|
| /src/external/gpl3/gcc/dist/libiberty/ |
| partition.c | 78 struct partition_elem *e1; local 99 e1 = &(elements[elem1]); 113 old_next = e1->next; 114 e1->next = e2->next; 126 int e1 = * (const int *) elem1; local 128 if (e1 < e2) 130 else if (e1 > e2)
|
| /src/external/gpl3/gcc.old/dist/libiberty/ |
| partition.c | 78 struct partition_elem *e1; local 99 e1 = &(elements[elem1]); 113 old_next = e1->next; 114 e1->next = e2->next; 126 int e1 = * (const int *) elem1; local 128 if (e1 < e2) 130 else if (e1 > e2)
|
| /src/external/gpl3/gdb/dist/libiberty/ |
| partition.c | 78 struct partition_elem *e1; local 99 e1 = &(elements[elem1]); 113 old_next = e1->next; 114 e1->next = e2->next; 126 int e1 = * (const int *) elem1; local 128 if (e1 < e2) 130 else if (e1 > e2)
|
| /src/external/gpl3/gdb.old/dist/libiberty/ |
| partition.c | 78 struct partition_elem *e1; local 99 e1 = &(elements[elem1]); 113 old_next = e1->next; 114 e1->next = e2->next; 126 int e1 = * (const int *) elem1; local 128 if (e1 < e2) 130 else if (e1 > e2)
|
| /src/external/bsd/nvi/dist/ex/ |
| ex_mkexrc.c | 85 goto e1; 87 goto e1; 89 goto e1; 91 goto e1; 100 e1: sverrno = errno;
|