Searched refs:new (Results 1 - 25 of 3164) sorted by relevance

1234567891011>>

/netbsd-current/external/gpl3/gcc/dist/libphobos/testsuite/libphobos.exceptions/
H A Dinvalid_memory_operation.d7 new int;
13 new S;
H A Dstderr_msg.d5 throw new Exception("stderr_msg msg");
H A Dmessage_with_null.d7 throw new Exception("hello\0 world!");
/netbsd-current/external/gpl3/gcc.old/dist/libphobos/testsuite/libphobos.exceptions/
H A Dinvalid_memory_operation.d7 new int;
13 new S;
H A Dstderr_msg.d5 throw new Exception("stderr_msg msg");
/netbsd-current/external/gpl3/gcc.old/dist/libgcc/config/rs6000/
H A Don_exit.c36 struct exit_function *new = __new_exitfn (&__exit_funcs); local
38 if (new == NULL)
44 new->func.on.fn = func;
45 new->func.on.arg = arg;
47 new->flavor = ef_on;
/netbsd-current/external/gpl3/gcc/dist/libgcc/config/rs6000/
H A Don_exit.c36 struct exit_function *new = __new_exitfn (&__exit_funcs); local
38 if (new == NULL)
44 new->func.on.fn = func;
45 new->func.on.arg = arg;
47 new->flavor = ef_on;
/netbsd-current/sys/ufs/ext2fs/
H A Dext2fs_bswap.c44 e2fs_sb_bswap(struct ext2fs *old, struct ext2fs *new) argument
48 memcpy(new, old, sizeof(struct ext2fs));
49 new->e2fs_icount = bswap32(old->e2fs_icount);
50 new->e2fs_bcount = bswap32(old->e2fs_bcount);
51 new->e2fs_rbcount = bswap32(old->e2fs_rbcount);
52 new->e2fs_fbcount = bswap32(old->e2fs_fbcount);
53 new->e2fs_ficount = bswap32(old->e2fs_ficount);
54 new->e2fs_first_dblock = bswap32(old->e2fs_first_dblock);
55 new->e2fs_log_bsize = bswap32(old->e2fs_log_bsize);
56 new
86 e2fs_i_bswap(struct ext2fs_dinode *old, struct ext2fs_dinode *new, size_t isize) argument
[all...]
/netbsd-current/external/bsd/kyua-atf-compat/
H A DMakefile.inc12 ${SRCDIR}/$${src} >$${dst}.new && \
13 chmod +x $${dst}.new && \
14 mv $${dst}.new $${dst}
/netbsd-current/lib/libc/arch/mips/gen/
H A Dfpsetsticky.c25 fp_except new; local
29 new = old & ~(0x1f << 2);
30 new |= (sticky & 0x1f) << 2;
32 __asm(".set push; .set noat; ctc1 %0,$31; .set pop" : : "r" (new));
H A Dfpsetmask.c25 fp_except new; local
29 new = old & ~(0x1f << 7);
30 new |= ((mask & 0x1f) << 7);
32 __asm(".set push; .set noat; ctc1 %0,$31; .set pop" : : "r" (new));
H A Dfpsetround.c25 fp_rnd new; local
29 new = old & ~0x03;
30 new |= rnd_dir & 0x03;
32 __asm(".set push; .set noat; ctc1 %0,$31; .set pop" : : "r" (new));
/netbsd-current/common/lib/libc/atomic/
H A Datomic_add_16_cas.c44 uint16_t old, new; local
48 new = old + val;
49 } while (atomic_cas_16(addr, old, new) != old);
56 uint16_t old, new; local
60 new = old + val;
61 } while (atomic_cas_16(addr, old, new) != old);
62 return new;
H A Datomic_add_8_cas.c44 uint8_t old, new; local
48 new = old + val;
49 } while (atomic_cas_8(addr, old, new) != old);
56 uint8_t old, new; local
60 new = old + val;
61 } while (atomic_cas_8(addr, old, new) != old);
62 return new;
H A Datomic_nand_64_cas.c44 uint64_t old, new; local
48 new = ~(old & val);
49 } while (atomic_cas_64(addr, old, new) != old);
56 uint64_t old, new; local
60 new = ~(old & val);
61 } while (atomic_cas_64(addr, old, new) != old);
62 return new;
H A Datomic_sub_16_cas.c44 uint16_t old, new; local
48 new = old - val;
49 } while (atomic_cas_16(addr, old, new) != old);
56 uint16_t old, new; local
60 new = old - val;
61 } while (atomic_cas_16(addr, old, new) != old);
62 return new;
H A Datomic_sub_32_cas.c42 uint32_t old, new; local
46 new = old - val;
47 } while (atomic_cas_32(addr, old, new) != old);
54 uint32_t old, new; local
58 new = old - val;
59 } while (atomic_cas_32(addr, old, new) != old);
60 return new;
H A Datomic_sub_64_cas.c44 uint64_t old, new; local
48 new = old - val;
49 } while (atomic_cas_64(addr, old, new) != old);
56 uint64_t old, new; local
60 new = old - val;
61 } while (atomic_cas_64(addr, old, new) != old);
62 return new;
H A Datomic_sub_8_cas.c44 uint8_t old, new; local
48 new = old - val;
49 } while (atomic_cas_8(addr, old, new) != old);
56 uint8_t old, new; local
60 new = old - val;
61 } while (atomic_cas_8(addr, old, new) != old);
62 return new;
H A Datomic_xor_16_cas.c44 uint16_t old, new; local
48 new = old ^ val;
49 } while (atomic_cas_16(addr, old, new) != old);
56 uint16_t old, new; local
60 new = old ^ val;
61 } while (atomic_cas_16(addr, old, new) != old);
62 return new;
H A Datomic_xor_32_cas.c42 uint32_t old, new; local
46 new = old ^ val;
47 } while (atomic_cas_32(addr, old, new) != old);
54 uint32_t old, new; local
58 new = old ^ val;
59 } while (atomic_cas_32(addr, old, new) != old);
60 return new;
H A Datomic_xor_64_cas.c44 uint64_t old, new; local
48 new = old ^ val;
49 } while (atomic_cas_64(addr, old, new) != old);
56 uint64_t old, new; local
60 new = old ^ val;
61 } while (atomic_cas_64(addr, old, new) != old);
62 return new;
H A Datomic_xor_8_cas.c44 uint8_t old, new; local
48 new = old ^ val;
49 } while (atomic_cas_8(addr, old, new) != old);
56 uint8_t old, new; local
60 new = old ^ val;
61 } while (atomic_cas_8(addr, old, new) != old);
62 return new;
H A Datomic_or_16_cas.c44 uint16_t old, new; local
48 new = old | val;
49 } while (atomic_cas_16(addr, old, new) != old);
56 uint16_t old, new; local
60 new = old | val;
61 } while (atomic_cas_16(addr, old, new) != old);
62 return new;
H A Datomic_or_8_cas.c44 uint8_t old, new; local
48 new = old | val;
49 } while (atomic_cas_8(addr, old, new) != old);
56 uint8_t old, new; local
60 new = old | val;
61 } while (atomic_cas_8(addr, old, new) != old);
62 return new;

Completed in 219 milliseconds

1234567891011>>