Searched refs:dest (Results 226 - 250 of 3135) sorted by relevance

1234567891011>>

/netbsd-current/sys/arch/ia64/stand/efi/libefi/
H A Defiboot.h83 extern ssize_t efi_copyin(const void *src, vaddr_t dest, size_t len);
84 extern ssize_t efi_copyout(const vaddr_t src, void *dest, size_t len);
85 extern ssize_t efi_readin(const int fd, vaddr_t dest, size_t len);
/netbsd-current/external/gpl3/gdb.old/dist/sim/common/
H A Dhw-ports.h78 struct hw *dest,
85 struct hw *dest,
94 struct hw *dest,
/netbsd-current/external/gpl3/gdb/dist/sim/common/
H A Dhw-ports.h78 struct hw *dest,
85 struct hw *dest,
94 struct hw *dest,
/netbsd-current/external/gpl3/gdb.old/dist/gdb/
H A Dmacroexp.c589 append_tokens_without_splicing (struct macro_buffer *dest,
592 int original_dest_len = dest->len;
596 gdb_assert (dest->last_token != -1);
600 dest->appendmem (src->text, src->len);
604 if (dest->last_token == original_dest_len)
606 dest->last_token = original_dest_len + src->last_token;
612 dest_tail.set_shared (dest->text + dest->last_token,
613 dest->len - dest
586 append_tokens_without_splicing(struct macro_buffer *dest, struct macro_buffer *src) argument
656 stringify(struct macro_buffer *dest, const char *arg, int len) argument
955 substitute_args(struct macro_buffer *dest, struct macro_definition *def, int is_varargs, const struct macro_buffer *va_arg_name, const std::vector<struct macro_buffer> &argv, struct macro_name_list *no_loop, const macro_scope &scope) argument
1219 expand(const char *id, struct macro_definition *def, struct macro_buffer *dest, struct macro_buffer *src, struct macro_name_list *no_loop, const macro_scope &scope) argument
1339 maybe_expand(struct macro_buffer *dest, struct macro_buffer *src_first, struct macro_buffer *src_rest, struct macro_name_list *no_loop, const macro_scope &scope) argument
1378 scan(struct macro_buffer *dest, struct macro_buffer *src, struct macro_name_list *no_loop, const macro_scope &scope) argument
[all...]
/netbsd-current/external/public-domain/xz/dist/src/liblzma/simple/
H A Dia64.c60 uint32_t dest; local
62 dest = now_pos + (uint32_t)(i) + src;
64 dest = src - (now_pos + (uint32_t)(i));
66 dest >>= 4;
69 inst_norm |= (uint64_t)(dest & 0xFFFFF) << 13;
70 inst_norm |= (uint64_t)(dest & 0x100000)
/netbsd-current/external/gpl3/binutils.old/dist/zlib/
H A Dcompress.c22 int ZEXPORT compress2 (dest, destLen, source, sourceLen, level)
23 Bytef *dest;
44 stream.next_out = dest;
68 int ZEXPORT compress (dest, destLen, source, sourceLen)
69 Bytef *dest;
74 return compress2(dest, destLen, source, sourceLen, Z_DEFAULT_COMPRESSION);
/netbsd-current/external/apache2/llvm/dist/libcxx/utils/
H A Dsym_diff.py22 '--names-only', dest='names_only',
26 '--removed-only', dest='removed_only',
29 parser.add_argument('--only-stdlib-symbols', dest='only_stdlib',
32 parser.add_argument('--strict', dest='strict',
37 '-o', '--output', dest='output',
41 '--demangle', dest='demangle', action='store_true', default=False)
/netbsd-current/external/gpl3/binutils/dist/zlib/
H A Dcompress.c22 int ZEXPORT compress2 (dest, destLen, source, sourceLen, level)
23 Bytef *dest;
44 stream.next_out = dest;
68 int ZEXPORT compress (dest, destLen, source, sourceLen)
69 Bytef *dest;
74 return compress2(dest, destLen, source, sourceLen, Z_DEFAULT_COMPRESSION);
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/mt/
H A Drelocs.exp20 proc ld_test { objects ldflags dest test } {
21 set ld_output [target_link $objects $dest $ldflags]
26 proc objdump_test { exec flags dest test } {
28 verbose -log "$objcopy $flags $exec > $dest"
29 catch "exec $objcopy $flags $exec > $dest" objdump_output
/netbsd-current/external/gpl3/gdb.old/dist/zlib/
H A Dcompress.c22 int ZEXPORT compress2 (dest, destLen, source, sourceLen, level)
23 Bytef *dest;
44 stream.next_out = dest;
68 int ZEXPORT compress (dest, destLen, source, sourceLen)
69 Bytef *dest;
74 return compress2(dest, destLen, source, sourceLen, Z_DEFAULT_COMPRESSION);
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/boards/
H A Dlocal-remote-host.exp38 proc ${board}_file { dest op args } {
42 return [eval [list standard_file $dest $op] $args]
45 proc ${board}_download { board src dest } {
/netbsd-current/external/gpl3/gdb/dist/zlib/
H A Dcompress.c22 int ZEXPORT compress2 (dest, destLen, source, sourceLen, level)
23 Bytef *dest;
44 stream.next_out = dest;
68 int ZEXPORT compress (dest, destLen, source, sourceLen)
69 Bytef *dest;
74 return compress2(dest, destLen, source, sourceLen, Z_DEFAULT_COMPRESSION);
/netbsd-current/crypto/external/bsd/openssl/dist/crypto/asn1/
H A Dx_algor.c98 int X509_ALGOR_copy(X509_ALGOR *dest, const X509_ALGOR *src)
100 if (src == NULL || dest == NULL)
103 if (dest->algorithm)
104 ASN1_OBJECT_free(dest->algorithm);
105 dest->algorithm = NULL;
107 if (dest->parameter)
108 ASN1_TYPE_free(dest->parameter);
109 dest->parameter = NULL;
112 if ((dest->algorithm = OBJ_dup(src->algorithm)) == NULL)
116 dest
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/sim/ppc/
H A Dhw_opic.c527 opic_interrupt_destination *dest = &opic->interrupt_destination[i]; local
528 dest->bit = (1 << i);
529 dest->nr = i;
530 dest->init_port = (device_interrupt_decode(me, "init0", output_port)
532 dest->intr_port = (device_interrupt_decode(me, "intr0", output_port)
534 dest->base_priority = max_nr_task_priorities - 1;
604 opic_interrupt_destination *dest)
606 ASSERT(dest >= opic->interrupt_destination);
607 ASSERT(dest < opic->interrupt_destination + opic->nr_interrupt_destinations);
608 DTRACE(opic, ("assert interrupt - intr port %d\n", dest
602 assert_interrupt(device *me, hw_opic_device *opic, opic_interrupt_destination *dest) argument
614 negate_interrupt(device *me, hw_opic_device *opic, opic_interrupt_destination *dest) argument
626 can_deliver(device *me, opic_interrupt_source *source, opic_interrupt_destination *dest) argument
638 deliver_pending(device *me, hw_opic_device *opic, opic_interrupt_destination *dest) argument
663 find_interrupt_for_dest(device *me, hw_opic_device *opic, opic_interrupt_destination *dest, interrupt_class class) argument
701 opic_interrupt_destination *dest = &opic->interrupt_destination[i]; local
740 opic_interrupt_destination *dest = &opic->interrupt_destination[i]; local
812 opic_interrupt_destination *dest = find_lowest_dest(me, opic, src); local
832 opic_interrupt_destination *dest = &opic->interrupt_destination[dest_nr]; local
876 opic_interrupt_destination *dest = &opic->interrupt_destination[dest_nr]; local
1132 opic_interrupt_destination *dest = &opic->interrupt_destination[i]; local
1612 hw_opic_io_read_buffer(device *me, void *dest, int space, unsigned_word addr, unsigned nr_bytes, cpu *processor, unsigned_word cia) argument
[all...]
/netbsd-current/external/gpl3/gdb/dist/sim/ppc/
H A Dhw_opic.c523 opic_interrupt_destination *dest = &opic->interrupt_destination[i]; local
524 dest->bit = (1 << i);
525 dest->nr = i;
526 dest->init_port = (device_interrupt_decode(me, "init0", output_port)
528 dest->intr_port = (device_interrupt_decode(me, "intr0", output_port)
530 dest->base_priority = max_nr_task_priorities - 1;
600 opic_interrupt_destination *dest)
602 ASSERT(dest >= opic->interrupt_destination);
603 ASSERT(dest < opic->interrupt_destination + opic->nr_interrupt_destinations);
604 DTRACE(opic, ("assert interrupt - intr port %d\n", dest
598 assert_interrupt(device *me, hw_opic_device *opic, opic_interrupt_destination *dest) argument
610 negate_interrupt(device *me, hw_opic_device *opic, opic_interrupt_destination *dest) argument
622 can_deliver(device *me, opic_interrupt_source *source, opic_interrupt_destination *dest) argument
634 deliver_pending(device *me, hw_opic_device *opic, opic_interrupt_destination *dest) argument
659 find_interrupt_for_dest(device *me, hw_opic_device *opic, opic_interrupt_destination *dest, interrupt_class class) argument
697 opic_interrupt_destination *dest = &opic->interrupt_destination[i]; local
736 opic_interrupt_destination *dest = &opic->interrupt_destination[i]; local
808 opic_interrupt_destination *dest = find_lowest_dest(me, opic, src); local
828 opic_interrupt_destination *dest = &opic->interrupt_destination[dest_nr]; local
872 opic_interrupt_destination *dest = &opic->interrupt_destination[dest_nr]; local
1128 opic_interrupt_destination *dest = &opic->interrupt_destination[i]; local
1608 hw_opic_io_read_buffer(device *me, void *dest, int space, unsigned_word addr, unsigned nr_bytes, cpu *processor, unsigned_word cia) argument
[all...]
/netbsd-current/external/gpl2/grep/dist/intl/
H A DMakefile.in158 dest=$(DESTDIR)$(libdir)/charset.alias; \
162 $(INSTALL_DATA) $$temp $$dest; \
168 $(INSTALL_DATA) $$temp $$dest; \
177 dest=$(DESTDIR)$(localedir)/locale.alias; \
179 $(INSTALL_DATA) $$temp $$dest; \
245 dest=$(DESTDIR)$(libdir)/charset.alias; \
246 sed -f ref-del.sed $$dest > $$temp; \
248 rm -f $$dest; \
250 $(INSTALL_DATA) $$temp $$dest; \
256 dest
[all...]
/netbsd-current/external/gpl2/texinfo/dist/intl/
H A DMakefile.in288 dest=$(DESTDIR)$(libdir)/charset.alias; \
292 $(INSTALL_DATA) $$temp $$dest; \
298 $(INSTALL_DATA) $$temp $$dest; \
307 dest=$(DESTDIR)$(localedir)/locale.alias; \
309 $(INSTALL_DATA) $$temp $$dest; \
387 dest=$(DESTDIR)$(libdir)/charset.alias; \
388 sed -f ref-del.sed $$dest > $$temp; \
390 rm -f $$dest; \
392 $(INSTALL_DATA) $$temp $$dest; \
398 dest
[all...]
/netbsd-current/external/lgpl3/mpc/dist/tests/
H A Dtpl_gmp.c50 tpl_copy_mpz (mpz_ptr dest, mpz_srcptr src) argument
52 mpz_set (dest, src);
/netbsd-current/external/apache2/llvm/dist/clang/lib/Headers/
H A Dstdarg.h27 #define va_copy(dest, src) __builtin_va_copy(dest, src)
/netbsd-current/sys/arch/sparc/include/
H A Dasm.h78 #define PIC_PROLOGUE(dest,tmp) \
80 sethi %hi(_GLOBAL_OFFSET_TABLE_-4),dest; \
82 or dest,%lo(_GLOBAL_OFFSET_TABLE_+4),dest; \
84 add dest,%o7,dest; \
87 #define PIC_PROLOGUE(dest,tmp) \
89 sethi %hi(_C_LABEL(_GLOBAL_OFFSET_TABLE_)-(3b-.)),dest; \
90 or dest,%lo(_C_LABEL(_GLOBAL_OFFSET_TABLE_)-(3b-.)),dest; \
[all...]
/netbsd-current/games/warp/
H A Dutil.c33 movc3(int len, char *src, char *dest) argument
35 if (dest <= src) {
37 *dest++ = *src++;
41 dest += len;
44 *--dest = *--src;
103 char *dest = to; local
106 for (len--; len && (*dest++ = *from++); len--)
108 *dest = '\0';
/netbsd-current/external/apache2/llvm/dist/llvm/utils/lit/lit/
H A Dcl_arguments.py28 dest="workers",
34 dest="configPrefix",
38 dest="user_params",
56 dest="showOutput",
60 dest="echoAllCommands",
65 dest="showAllOutput",
73 dest="useProgressBar",
83 dest="shown_codes",
95 dest="useValgrind",
99 dest
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libgfortran/runtime/
H A Dstring.c49 fstrcpy (char *dest, gfc_charlen_type destlen, argument
55 memcpy (dest, src, destlen);
60 memcpy (dest, src, srclen);
62 memset (&dest[srclen], ' ', destlen - srclen);
72 cf_strcpy (char *dest, gfc_charlen_type dest_len, const char *src) argument
81 memcpy (dest, src, dest_len);
86 memcpy (dest, src, src_len);
88 memset (&dest[src_len], ' ', dest_len - src_len);
/netbsd-current/external/gpl3/gdb.old/dist/ld/testsuite/ld-avr/
H A Davr-prop-1.d9 00000020 T dest
H A Davr-prop-3.d9 00000008 T dest

Completed in 410 milliseconds

1234567891011>>