Home
last modified time | relevance | path

Searched refs:adr (Results 1 – 25 of 71) sorted by relevance

123

/freebsd/usr.sbin/autofs/
H A Dautomountd.c182 "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()
193 adr->adr_from); 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()
214 if (adr->adr_key[0] == '\0') in handle_request()
217 key = checked_strdup(adr->adr_key); in handle_request()
238 node = node_find(root, adr->adr_path); in handle_request()
283 tmp = concat(adr->adr_path, '/', key); 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()
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()
262 adr[3] << 24); 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 Dbcopyinout.S56 adr r3, 1f
82 adr r3, 1f
108 adr r3, 1f
H A Dlocore.S72 adr r1, hypmode_enabled ;\
81 adr lr, 2f ;\
86 adr r1, hypmode_enabled ;\
168 adr r0, Lpagetable
226 adr r4, Lpagetable /* load the pagetable address */
489 adr r0, Lpagetable
494 adr r1, .Lstart+8 /* Get initstack pointer from */
508 adr r0, .Lmpreturned
H A Dexception.S237 adr lr, exception_exit /* Return from handler via standard */
253 adr lr, exception_exit /* Exception exit routine */
269 adr lr, exception_exit /* Return from handler via standard */
313 adr lr, exception_exit /* Return from handler via standard */
341 adr r0, Laddr_exception_msg
354 adr r0, Lreset_panicmsg
H A Dcopystr.S82 adr r5, .Lcopystrfault
121 adr r0, Lcopystrpcbfaulttext
H A Dhypervisor-stub.S41 adr r0, hypervisor_stub_vect
/freebsd/sys/dev/acpica/
H A Dacpi_video.c54 UINT32 adr; member
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()
617 vo->adr = adr; in acpi_video_vo_init()
686 if (adr & DOD_BIOS) in acpi_video_vo_init()
688 if (adr & DOD_NONVGA) in acpi_video_vo_init()
743 switch (vo->adr & DOD_DEVID_MASK) { in acpi_video_vo_destroy()
1017 UINT32 adr, val; in vid_enum_outputs_subr() local
[all …]
H A Dacpivar.h140 #define ACPI_ADR_PCI_SLOT(adr) (((adr) & 0xffff0000) >> 16) argument
141 #define ACPI_ADR_PCI_FUNC(adr) ((adr) & 0xffff) argument
/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 */
H A Dcopyinout.S100 adr x6, copyio_fault /* Get the handler address */
147 adr x6, copyio_fault /* Get the handler address */
/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/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 Dudivsi3.S86 adr ip, LOCAL_LABEL(div0block) + 1
89 adr ip, LOCAL_LABEL(div0block)
108 adr r0, LOCAL_LABEL(div0block)
111 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/lib/krb5/
H A Dstore.c1149 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()
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()
1211 for(i = 0; i < adr->len; i++){ in krb5_ret_addrs()
1212 ret = krb5_ret_address(sp, &adr->val[i]); in krb5_ret_addrs()
H A Dcontext.c184 char **adr, **a; in init_context_from_config_file() local
187 adr = krb5_config_get_strings(context, NULL, in init_context_from_config_file()
192 for(a = adr; a && *a; a++) { in init_context_from_config_file()
199 krb5_config_free_strings(adr); in init_context_from_config_file()
202 adr = krb5_config_get_strings(context, NULL, in init_context_from_config_file()
207 for(a = adr; a && *a; a++) { in init_context_from_config_file()
214 krb5_config_free_strings(adr); in init_context_from_config_file()
/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/sys/dev/vt/hw/ofwfb/
H A Dofwfb.c485 cell_t adr[2]; in ofwfb_init() local
609 OF_getencprop(node, "address", adr, 4); in ofwfb_init()
610 fb_phys = adr[0]; in ofwfb_init()
613 OF_getencprop(node, "address", adr, 8); in ofwfb_init()
614 fb_phys = ((uint64_t)adr[0] << 32) | adr[1]; in ofwfb_init()
/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
458 adr x10, .Lk_sr
590 adr x10, .Lk_inv
592 adr x11, .Lk_sb1
595 adr x10, .Lk_dksd
[all …]
/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>;

123