Searched refs:origin (Results 76 - 100 of 113) sorted by relevance

12345

/freebsd-11-stable/contrib/llvm-project/compiler-rt/include/sanitizer/
H A Dlinux_syscall_hooks.h937 #define __sanitizer_syscall_pre_lseek(fd, offset, origin) \
938 __sanitizer_syscall_pre_impl_lseek((long)(fd), (long)(offset), (long)(origin))
939 #define __sanitizer_syscall_post_lseek(res, fd, offset, origin) \
941 (long)(origin))
943 origin) \
946 (long)(origin))
948 result, origin) \
951 (long)(origin))
2526 void __sanitizer_syscall_pre_impl_lseek(long fd, long offset, long origin);
2528 long origin);
[all...]
/freebsd-11-stable/contrib/llvm-project/lld/ELF/
H A DScriptParser.cpp1253 return [=] { return script->memoryRegions[name]->origin; };
1457 // MEMORY { name [(attr)] : ORIGIN = origin, LENGTH = len ... }
1475 uint64_t origin = readMemoryAssignment("ORIGIN", "org", "o");
1480 MemoryRegion *mr = make<MemoryRegion>(tok, origin, length, flags, negFlags);
H A DLinkerScript.cpp106 uint64_t newSize = memRegion->curPos - memRegion->origin;
1071 mr->curPos = mr->origin;
/freebsd-11-stable/contrib/binutils/bfd/
H A Darchive.c103 "ARFILENAMES/"). The origin of the latter format is uncertain.
510 filepos += archive->origin;
531 n_nfd->origin = bfd_tell (archive);
596 filestart = last_file->origin + size;
598 filestart -= archive->origin;
600 Note that last_file->origin can be odd in the case of
H A Dopncls.c83 nbfd->origin = 0;
852 abfd->origin = 0;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan.h53 {0x004200000000ULL, 0x006000000000ULL, MappingDesc::ORIGIN, "origin-2"},
57 {0x008200000000ULL, 0x00a000000000ULL, MappingDesc::ORIGIN, "origin-3"},
58 {0x00a000000000ULL, 0x00a200000000ULL, MappingDesc::ORIGIN, "origin-1"},
84 {0x02000000000ULL, 0x03000000000ULL, MappingDesc::ORIGIN, "origin-2"},
86 {0x04000000000ULL, 0x05000000000ULL, MappingDesc::ORIGIN, "origin-1"},
93 {0x0A000000000ULL, 0x0B000000000ULL, MappingDesc::ORIGIN, "origin-3"},
100 {0x18000000000ULL, 0x19000000000ULL, MappingDesc::ORIGIN, "origin-4"},
105 {0x27000000000ULL, 0x28000000000ULL, MappingDesc::ORIGIN, "origin-5"},
107 {0x29000000000ULL, 0x2A000000000ULL, MappingDesc::ORIGIN, "origin-7"},
111 {0x2D000000000ULL, 0x2E000000000ULL, MappingDesc::ORIGIN, "origin
[all...]
/freebsd-11-stable/contrib/unbound/util/
H A Dconfig_file.h1213 * @param origin: sock list with origin of trouble.
1218 void errinf_origin(struct module_qstate* qstate, struct sock_list *origin);
H A Dconfig_file.c2504 void errinf_origin(struct module_qstate* qstate, struct sock_list *origin) argument
2509 for(p=origin; p; p=p->next) {
2511 if(p == origin)
/freebsd-11-stable/contrib/gcc/
H A Dfunction.c3593 abstract origin duplicates of a source block. It really depends
3646 tree origin;
3648 origin = (BLOCK_FRAGMENT_ORIGIN (block)
3658 BLOCK_FRAGMENT_ORIGIN (new_block) = origin;
3660 = BLOCK_FRAGMENT_CHAIN (origin);
3661 BLOCK_FRAGMENT_CHAIN (origin) = new_block;
3674 if (block != origin)
3675 gcc_assert (BLOCK_SUPERCONTEXT (origin) == current_block);
3680 current_block = origin;
3629 tree origin; local
/freebsd-11-stable/contrib/binutils/ld/
H A Dldgram.y690 region->origin = exp_get_vma ($3, 0, "origin");
691 region->current = region->origin;
H A Dldlang.c1166 new->origin = 0;
1774 sprintf_vma (buf, m->origin);
4193 if ((region->current < region->origin
4194 || (region->current - region->origin > region->length))
4195 && ((region->current != region->origin + region->length)
4215 region->current = region->origin;
5559 p->current = p->origin;
H A Dldexp.c656 new_abs (mem->origin);
/freebsd-11-stable/sys/contrib/ngatm/netnatm/msg/
H A Dunistruct.h986 u_int origin; member in struct:uni_ie_mdcr
1145 enum uni_exqos_origin origin; member in struct:uni_ie_exqos
H A Duni_ie.c3862 uni_print_tbl("origin", ie->origin, origin_tbl, cx);
3876 if ((ie->origin != UNI_MDCR_ORIGIN_USER &&
3877 ie->origin != UNI_MDCR_ORIGIN_NET) ||
3888 APP_BYTE(msg, ie->origin);
3908 ie->origin = *msg->b_rptr++;
6976 uni_print_tbl("origin", ie->origin, tab, cx);
7025 switch(ie->origin) {
7066 APP_BYTE(msg, ie->origin);
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangASTSource.cpp903 ClangASTImporter::DeclOrigin origin = source.GetDeclOrigin(this->decl); local
904 if (!origin.Valid())
906 return DeclFromUser<D>(dyn_cast<D>(origin.decl));
1024 original_interface_decl, "at origin"))
1203 "CAS::FOPD[%d] trying origin "
1357 "CAS::FOPD[%d] couldn't find the property on origin "
1383 "CAS::FOPD[%d] trying origin "
/freebsd-11-stable/sys/netinet/
H A Dip_mroute.c379 * Find a route for a given origin IP address and multicast group address.
1155 struct in_addr origin; local
1159 origin = mfccp->mfcc_origin;
1163 ntohl(origin.s_addr), (u_long)ntohl(mcastgrp.s_addr));
1167 rt = mfc_find(&origin, &mcastgrp);
1279 * If we don't have a route for packet's origin,
1509 * Don't forward if it didn't arrive from the parent vif for its origin.
/freebsd-11-stable/sbin/bectl/tests/
H A Dbectl_test.sh158 # Test origin snapshot deletion when the snapshot to be destroyed
194 # demote the first BE at some point -- if we did, it's origin will no
200 atf_check -o inline:"-\n" zfs get -Ho value origin ${zpool}/ROOT/default
/freebsd-11-stable/contrib/unbound/services/
H A Dauthzone.c1607 if(z->namelen <= sizeof(state.origin)) {
1608 memcpy(state.origin, z->name, z->namelen);
4263 pstate->origin_len = sizeof(pstate->origin);
4265 pstate->origin, &pstate->origin_len);
4323 if(xfr->namelen < sizeof(pstate.origin)) {
4325 memmove(pstate.origin, xfr->name, xfr->namelen);
4335 pstate.origin_len?pstate.origin:NULL, pstate.origin_len,
4393 pstate->origin_len?pstate->origin:NULL, pstate->origin_len,
4808 if(xfr->namelen < sizeof(pstate.origin)) {
4810 memmove(pstate.origin, xf
[all...]
/freebsd-11-stable/sys/dev/usb/input/
H A Datp.c322 int16_t origin; /* zero when switching track finger */ member in struct:wsp_finger_sensor_data
1295 source_fingerp->origin = le16toh((uint16_t)source_fingerp->origin);
/freebsd-11-stable/contrib/subversion/subversion/libsvn_wc/
H A Dwc-checks.sql276 SELECT d.local_relpath, d.op_depth, 60, 'Moved here without origin'
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/
H A Ddmu.h290 int dmu_objset_clone(const char *name, const char *origin);
/freebsd-11-stable/contrib/ntp/ntpd/
H A Dntp_config.c4912 char origin[128]; local
4914 snprintf(origin, sizeof(origin), "remote config from %s",
4916 lex_init_stack(origin, NULL); /* no checking needed... */
/freebsd-11-stable/contrib/gdb/gdb/
H A Ddbxread.c642 #define STRING_TABLE_OFFSET (sym_bfd->origin + obj_str_filepos (sym_bfd))
643 #define SYMBOL_TABLE_OFFSET (sym_bfd->origin + obj_sym_filepos (sym_bfd))
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/zfs/
H A Dzfs_main.c278 "\treceive|recv [-vnsFu] [-o origin=<snapshot>] [-d | -e] "
1106 * because we must delete a clone before its origin.
3986 * case if they specify the origin.
3989 char origin[ZFS_MAX_DATASET_NAME_LEN]; local
3993 origin, sizeof (origin), &src, NULL, 0, B_FALSE);
3995 if (strcmp(origin, fromname) == 0) {
4110 if (strcmp(nvpair_name(nvp), "origin") != 0) {
4733 "\n\t\t\t\tability in the origin file system");
4754 " 'promote' ability in the origin fil
[all...]
/freebsd-11-stable/cddl/contrib/opensolaris/lib/libzfs/common/
H A Dlibzfs_dataset.c2354 const char *origin; member in struct:get_clones_arg
2371 if (strcmp(gca->buf, gca->origin) == 0) {
2406 gca.origin = zhp->zfs_name;

Completed in 336 milliseconds

12345