Searched refs:bsp (Results 1 - 19 of 19) sorted by relevance

/freebsd-current/usr.sbin/bhyve/
H A Dbhyverun.h78 void bhyve_start_vcpu(struct vcpu *vcpu, bool bsp);
79 int bhyve_init_platform(struct vmctx *ctx, struct vcpu *bsp);
80 int bhyve_init_platform_late(struct vmctx *ctx, struct vcpu *bsp);
H A Dbhyverun.c659 struct vcpu *bsp; local
724 bsp = vm_vcpu_open(ctx, BSP);
725 max_vcpus = num_vcpus_allowed(ctx, bsp);
732 bhyve_init_vcpu(bsp);
740 vcpu_info[vcpuid].vcpu = bsp;
759 if (bhyve_init_platform(ctx, bsp) != 0)
837 if (bhyve_init_platform_late(ctx, bsp) != 0)
873 vm_resume_cpu(bsp);
/freebsd-current/contrib/sendmail/include/sm/
H A Dsendmail.h26 # define quote_internal_chars(ibp, obp, bsp, rpool) quote_internal_chars_tagged(ibp, obp, bsp, rpool, "quote_internal_chars:" __FILE__, __LINE__, SmHeapGroup)
29 # define quote_internal_chars_tagged(ibp, obp, bsp, rpool, file, line, group) quote_internal_chars(ibp, obp, bsp, rpool)
/freebsd-current/contrib/sendmail/libsm/
H A Dutil.c134 ** bsp -- pointer to the length of the output buffer
139 ** if it is different, *bsp will updated to the size of
152 (ibp, obp, bsp, rpool
159 int *bsp;
178 SM_REQUIRE(NULL != bsp);
180 *bsp = 0;
194 if (olen > *bsp)
198 *bsp = olen;
213 bufused = sm_strlcpy(obp, ibp, *bsp);
223 *bsp
[all...]
/freebsd-current/sys/compat/linux/
H A Dlinux_ipc.c197 linux_to_bsd_semid_ds(struct l_semid64_ds *lsp, struct semid_ds *bsp) argument
200 linux_to_bsd_ipc_perm(&lsp->sem_perm, &bsp->sem_perm);
201 bsp->sem_otime = lsp->sem_otime;
202 bsp->sem_ctime = lsp->sem_ctime;
203 bsp->sem_nsems = lsp->sem_nsems;
207 bsd_to_linux_semid_ds(struct semid_ds *bsp, struct l_semid64_ds *lsp) argument
210 bsd_to_linux_ipc_perm(&bsp->sem_perm, &lsp->sem_perm);
211 lsp->sem_otime = bsp->sem_otime;
212 lsp->sem_ctime = bsp->sem_ctime;
213 lsp->sem_nsems = bsp
217 linux_to_bsd_shmid_ds(struct l_shmid64_ds *lsp, struct shmid_ds *bsp) argument
231 bsd_to_linux_shmid_ds(struct shmid_ds *bsp, struct l_shmid64_ds *lsp) argument
245 linux_to_bsd_msqid_ds(struct l_msqid64_ds *lsp, struct msqid_ds *bsp) argument
260 bsd_to_linux_msqid_ds(struct msqid_ds *bsp, struct l_msqid64_ds *lsp) argument
[all...]
/freebsd-current/contrib/netbsd-tests/lib/csu/arch/ia64/
H A Dh_initfini_align.S17 /* ar.bsp has an 8-byte alignment requirement */
18 mov loc1 = ar.bsp
/freebsd-current/usr.sbin/makefs/msdos/
H A Dmsdosfs_vfsops.c78 union bootsector *bsp; local
90 bsp = (union bootsector *)bp->b_data;
91 b33 = (struct byte_bpb33 *)bsp->bs33.bsBPB;
92 b50 = (struct byte_bpb50 *)bsp->bs50.bsBPB;
93 b710 = (struct byte_bpb710 *)bsp->bs710.bsBPB;
95 if (bsp->bs50.bsBootSectSig0 != BOOTSIG0 ||
96 bsp->bs50.bsBootSectSig1 != BOOTSIG1) {
98 bsp->bs50.bsBootSectSig0,
99 bsp->bs50.bsBootSectSig1));
/freebsd-current/usr.sbin/bhyve/amd64/
H A Dbhyverun_machdep.c289 bhyve_start_vcpu(struct vcpu *vcpu, bool bsp) argument
293 if (bsp) {
320 bhyve_init_platform(struct vmctx *ctx, struct vcpu *bsp __unused)
342 bhyve_init_platform_late(struct vmctx *ctx, struct vcpu *bsp __unused)
/freebsd-current/usr.sbin/bhyve/aarch64/
H A Dbhyverun_machdep.c192 bhyve_start_vcpu(struct vcpu *vcpu, bool bsp __unused)
359 bhyve_init_platform(struct vmctx *ctx, struct vcpu *bsp) argument
372 error = vm_set_register(bsp, VM_REG_GUEST_PC, elr);
403 bhyve_init_platform_late(struct vmctx *ctx, struct vcpu *bsp __unused)
409 error = vm_set_register(bsp, VM_REG_GUEST_X0, fdt_gpa(ctx));
/freebsd-current/sys/powerpc/powerpc/
H A Dmp_machdep.c146 struct cpuref bsp, cpu; local
150 error = platform_smp_get_bsp(&bsp);
171 if (cpu.cr_cpuid != bsp.cr_cpuid) {
181 pc->pc_cpuid = bsp.cr_cpuid;
H A Dmachdep.c263 struct cpuref bsp; local
449 if (platform_smp_get_bsp(&bsp) != 0)
450 bsp.cr_cpuid = 0;
451 pc = &__pcpu[bsp.cr_cpuid];
453 pcpu_init(pc, bsp.cr_cpuid, sizeof(struct pcpu));
455 thread0.td_oncpu = bsp.cr_cpuid;
456 pc->pc_cpuid = bsp.cr_cpuid;
457 pc->pc_hwref = bsp.cr_hwref;
/freebsd-current/sys/i386/include/
H A Dnpx.h58 void npxinit(bool bsp);
/freebsd-current/sys/powerpc/pseries/
H A Dplatform_chrp.c401 int a, bsp, res, res2, tmp_cpuref_cnt; local
452 bsp = -1;
464 bsp = tmp_cpuref_cnt;
475 if (bsp == -1)
479 for (a = bsp; a < tmp_cpuref_cnt; a++) {
484 for (a = 0; a < bsp; a++) {
/freebsd-current/sys/powerpc/powermac/
H A Dplatform_powermac.c326 phandle_t bsp, chosen; local
337 bsp = OF_instance_to_package(inst);
338 return (powermac_smp_fill_cpuref(cpuref, bsp));
/freebsd-current/sys/powerpc/powernv/
H A Dplatform_powernv.c323 uint64_t bsp; local
337 bsp = 0;
355 bsp = tmp_cpuref_cnt;
364 for (a = bsp; a < tmp_cpuref_cnt; a++) {
370 for (a = 0; a < bsp; a++) {
/freebsd-current/sys/fs/msdosfs/
H A Dmsdosfs_vfsops.c509 union bootsector *bsp; local
559 bsp = (union bootsector *)bp->b_data;
560 b33 = (struct byte_bpb33 *)bsp->bs33.bsBPB;
561 b50 = (struct byte_bpb50 *)bsp->bs50.bsBPB;
562 b710 = (struct byte_bpb710 *)bsp->bs710.bsBPB;
565 if (bsp->bs50.bsBootSectSig0 != BOOTSIG0 ||
566 bsp->bs50.bsBootSectSig1 != BOOTSIG1) {
/freebsd-current/sys/i386/i386/
H A Dnpx.c383 npxinit(bool bsp) argument
390 if (bsp) {
404 if (bsp)
/freebsd-current/crypto/openssl/crypto/
H A Dia64cpuid.S71 { .mii; mov r9=ar.bsp
/freebsd-current/contrib/sendmail/src/
H A Dreadcf.c857 ** bsp -- a pointer to the size of obp; will be updated if
862 ** is larger then *bsp, in which case this will point to
867 translate_dollars(ibp, obp, bsp)
870 int *bsp;
883 bp = quote_internal_chars(ibp, obp, bsp, NULL);

Completed in 136 milliseconds