Home
last modified time | relevance | path

Searched full:adr (Results 1 – 25 of 169) sorted by relevance

1234567

/freebsd/usr.sbin/autofs/
H A Dautomountd.c171 handle_request(const struct autofs_daemon_request *adr, char *cmdline_options, in handle_request() argument
182 "key \"%s\", options \"%s\"", adr->adr_id, adr->adr_from, in handle_request()
183 adr->adr_path, adr->adr_prefix, adr->adr_key, adr->adr_options); in handle_request()
188 request_id = adr->adr_id; in handle_request()
191 if (strncmp(adr->adr_from, "map ", 4) != 0) { in handle_request()
193 adr->adr_from); in handle_request()
196 map = adr->adr_from + 4; /* 4 for strlen("map "); */ in handle_request()
198 if (adr->adr_prefix[0] == '\0' || strcmp(adr->adr_prefix, "/") == 0) { in handle_request()
205 key = checked_strdup(adr->adr_path); in handle_request()
210 parent = node_new_map(root, checked_strdup(adr->adr_prefix), in handle_request()
[all …]
/freebsd/sys/contrib/ncsw/Peripherals/FM/MAC/
H A Dfman_tgec.c37 void fman_tgec_set_mac_address(struct tgec_regs *regs, uint8_t *adr) in fman_tgec_set_mac_address() argument
41 tmp0 = (uint32_t)(adr[0] | in fman_tgec_set_mac_address()
42 adr[1] << 8 | in fman_tgec_set_mac_address()
43 adr[2] << 16 | in fman_tgec_set_mac_address()
44 adr[3] << 24); in fman_tgec_set_mac_address()
45 tmp1 = (uint32_t)(adr[4] | adr[5] << 8); in fman_tgec_set_mac_address()
255 void fman_tgec_add_addr_in_paddr(struct tgec_regs *regs, uint8_t *adr) in fman_tgec_add_addr_in_paddr() argument
259 tmp0 = (uint32_t)(adr[0] | in fman_tgec_add_addr_in_paddr()
260 adr[1] << 8 | in fman_tgec_add_addr_in_paddr()
261 adr[2] << 16 | in fman_tgec_add_addr_in_paddr()
[all …]
H A Dfman_memac.c79 uint8_t *adr, in fman_memac_add_addr_in_paddr() argument
84 tmp0 = (uint32_t)(adr[0] | in fman_memac_add_addr_in_paddr()
85 adr[1] << 8 | in fman_memac_add_addr_in_paddr()
86 adr[2] << 16 | in fman_memac_add_addr_in_paddr()
87 adr[3] << 24); in fman_memac_add_addr_in_paddr()
88 tmp1 = (uint32_t)(adr[4] | adr[5] << 8); in fman_memac_add_addr_in_paddr()
H A Dfman_dtsec.c352 void fman_dtsec_set_mac_address(struct dtsec_regs *regs, uint8_t *adr) in fman_dtsec_set_mac_address() argument
356 tmp = (uint32_t)((adr[5] << 24) | in fman_dtsec_set_mac_address()
357 (adr[4] << 16) | in fman_dtsec_set_mac_address()
358 (adr[3] << 8) | in fman_dtsec_set_mac_address()
359 adr[2]); in fman_dtsec_set_mac_address()
362 tmp = (uint32_t)((adr[1] << 24) | in fman_dtsec_set_mac_address()
363 (adr[0] << 16)); in fman_dtsec_set_mac_address()
/freebsd/sys/arm/arm/
H A Dfusu.S68 adr r4, .Lcasuwordfault
116 adr r3, .Lfusufault
147 adr r1, .Lfusufault
177 adr r1, .Lfusufault
205 adr r0, fusupcbfaulttext
232 adr r3, .Lfusufault
262 adr r3, .Lfusufault
292 adr r3, .Lfusufault
324 adr r3, .Lfusufault
H A Dlocore.S69 adr r1, hypmode_enabled ;\
78 adr lr, 2f ;\
83 adr r1, hypmode_enabled ;\
162 adr r0, Lpagetable
220 adr r4, Lpagetable /* load the pagetable address */
248 * adr r0, Lpagetable
483 adr r0, Lpagetable
488 adr r1, .Lstart+8 /* Get initstack pointer from */
502 adr r0, .Lmpreturned
H A Dbcopyinout.S56 adr r3, 1f
82 adr r3, 1f
108 adr r3, 1f
H A Dexception.S239 adr lr, exception_exit /* Return from handler via standard */
255 adr lr, exception_exit /* Exception exit routine */
271 adr lr, exception_exit /* Return from handler via standard */
311 adr lr, exception_exit /* Return from handler via standard */
325 adr r0, Laddr_exception_msg
338 adr r0, Lreset_panicmsg
H A Dcopystr.S82 adr r5, .Lcopystrfault
121 adr r0, Lcopystrpcbfaulttext
/freebsd/sys/dev/acpica/
H A Dacpi_video.c54 UINT32 adr; member
401 if ((vo->adr & DOD_DEVID_MASK_FULL) != DOD_DEVID_LCD && in acpi_video_resume()
402 (vo->adr & DOD_DEVID_MASK) != DOD_DEVID_INTDFP) in acpi_video_resume()
526 acpi_video_bind_outputs_subr(ACPI_HANDLE handle, UINT32 adr, void *context) in acpi_video_bind_outputs_subr() argument
535 if (vo->adr == adr) { in acpi_video_bind_outputs_subr()
540 vo = acpi_video_vo_init(adr); in acpi_video_bind_outputs_subr()
559 acpi_video_vo_init(UINT32 adr) in acpi_video_vo_init() argument
569 switch (adr & DOD_DEVID_MASK) { in acpi_video_vo_init()
571 if ((adr in acpi_video_vo_init()
1017 UINT32 adr, val; vid_enum_outputs_subr() local
[all...]
/freebsd/sys/arm64/arm64/
H A Dsupport.S63 adr x6, fsu_fault /* Load the fault handler */
86 adr x6, fsu_fault /* Load the fault handler */
109 adr x6, fsu_fault /* Load the fault handler */
132 adr x6, fsu_fault /* Load the fault handler */
155 adr x6, fsu_fault /* Load the fault handler */
175 adr x6, fsu_fault /* Load the fault handler */
195 adr x6, fsu_fault /* Load the fault handler */
215 adr x6, fsu_fault /* Load the fault handler */
231 adr x7, fsu_fault /* Load the fault handler */
/freebsd/sys/fs/autofs/
H A Dautofs.c545 autofs_ioctl_request(struct autofs_daemon_request *adr) in autofs_ioctl_request() argument
575 adr->adr_id = ar->ar_id; in autofs_ioctl_request()
576 strlcpy(adr->adr_from, ar->ar_from, sizeof(adr->adr_from)); in autofs_ioctl_request()
577 strlcpy(adr->adr_path, ar->ar_path, sizeof(adr->adr_path)); in autofs_ioctl_request()
578 strlcpy(adr->adr_prefix, ar->ar_prefix, sizeof(adr->adr_prefix)); in autofs_ioctl_request()
579 strlcpy(adr->adr_key, ar->ar_key, sizeof(adr->adr_key)); in autofs_ioctl_request()
580 strlcpy(adr->adr_options, ar->ar_options, sizeof(adr->adr_options)); in autofs_ioctl_request()
/freebsd/sys/arm64/linux/
H A Dlinux_support.S67 adr x9, futex_fault /* Load the fault handler */
89 adr x9, futex_fault
112 adr x9, futex_fault
135 adr x9, futex_fault
158 adr x9, futex_fault
/freebsd/sys/contrib/device-tree/Bindings/mips/cavium/
H A Dbootbus.txt32 - cavium,t-adr: A cell specifying the ADR timing (in nS).
88 cavium,t-adr = <20>;
108 cavium,t-adr = <5>;
/freebsd/contrib/blocklist/etc/
H A Dblacklistd.conf2 # adr/mask:port type proto owner name nfail disable
10 # adr/mask:port type proto owner name nfail disable
/freebsd/usr.sbin/blacklistd/
H A Dblacklistd.conf3 # adr/mask:port type proto owner name nfail disable
12 # adr/mask:port type proto owner name nfail disable
/freebsd/crypto/heimdal/lib/krb5/
H A Dstore.c1141 * @param adr the address block read from storage
1149 krb5_ret_address(krb5_storage *sp, krb5_address *adr) in krb5_ret_address() argument
1155 adr->addr_type = t; in krb5_ret_address()
1156 ret = krb5_ret_data(sp, &adr->address); in krb5_ret_address()
1189 * @param adr the addresses block read from storage
1197 krb5_ret_addrs(krb5_storage *sp, krb5_addresses *adr) in krb5_ret_addrs() argument
1205 ret = size_too_large_num(sp, tmp, sizeof(adr->val[0])); in krb5_ret_addrs()
1207 adr->len = tmp; in krb5_ret_addrs()
1208 ALLOC(adr->val, adr->len); in krb5_ret_addrs()
1209 if (adr->val == NULL && adr->len != 0) in krb5_ret_addrs()
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/arm/
H A Dumodsi3.S61 adr ip, LOCAL_LABEL(div0block) + 1
64 adr ip, LOCAL_LABEL(div0block)
73 adr ip, LOCAL_LABEL(div0block)
H A Dudivmodsi4.S62 adr ip, LOCAL_LABEL(div0block) + 1
65 adr ip, LOCAL_LABEL(div0block)
78 adr ip, LOCAL_LABEL(div0block)
/freebsd/crypto/heimdal/doc/doxyout/krb5/man/man3/
H A Dkrb5_storage.3127 …UNCTION krb5_error_code KRB5_LIB_CALL \fBkrb5_ret_address\fP (krb5_storage *sp, krb5_address *adr)"
133 …UNCTION krb5_error_code KRB5_LIB_CALL \fBkrb5_ret_addrs\fP (krb5_storage *sp, krb5_addresses *adr)"
174 …IB_FUNCTION krb5_error_code KRB5_LIB_CALL krb5_ret_address (krb5_storage * sp, krb5_address * adr)"
182 \fIadr\fP the address block read from storage
191 …IB_FUNCTION krb5_error_code KRB5_LIB_CALL krb5_ret_addrs (krb5_storage * sp, krb5_addresses * adr)"
199 \fIadr\fP the addresses block read from storage
/freebsd/sys/contrib/device-tree/src/mips/cavium-octeon/
H A Docteon_3xxx.dtsi131 cavium,t-adr = <20>;
148 cavium,t-adr = <320>;
165 cavium,t-adr = <5>;
182 cavium,t-adr = <5>;
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMFixupKinds.h44 // 12-bit PC relative relocation for the ADR instruction.
46 // 12-bit PC relative relocation for the ADR instruction.
/freebsd/sys/dev/vt/hw/ofwfb/
H A Dofwfb.c497 cell_t adr[2]; in ofwfb_init()
621 OF_getencprop(node, "address", adr, 4); in ofwfb_init()
622 fb_phys = adr[0]; in ofwfb_init()
625 OF_getencprop(node, "address", adr, 8); in ofwfb_init()
626 fb_phys = ((uint64_t)adr[0] << 32) | adr[1]; in ofwfb_init()
485 cell_t adr[2]; ofwfb_init() local
/freebsd/crypto/openssl/crypto/aes/asm/
H A Dvpaes-armv8.pl168 adr x10, .Lk_inv
196 adr x11, .Lk_mc_forward+16
283 adr x11, .Lk_mc_forward+16
386 adr x10, .Lk_inv
388 adr x11, .Lk_dipt
410 adr x10, .Lk_sr
413 adr x10, .Lk_mc_forward+48
521 adr x10, .Lk_sr
524 adr x10, .Lk_mc_forward+48
660 adr x10, .Lk_inv
[all …]
/freebsd/sys/crypto/openssl/aarch64/
H A Dvpaes-armv8.S105 adr x10, .Lk_inv
133 adr x11, .Lk_mc_forward+16
220 adr x11, .Lk_mc_forward+16
323 adr x10, .Lk_inv
325 adr x11, .Lk_dipt
347 adr x10, .Lk_sr
350 adr x10, .Lk_mc_forward+48
458 adr x10, .Lk_sr
461 adr x10, .Lk_mc_forward+48
590 adr x10, .Lk_inv
[all …]

1234567