Home
last modified time | relevance | path

Searched refs:brk (Results 1 – 25 of 36) sorted by relevance

12

/openbmc/qemu/tests/tcg/aarch64/
H A Dmte-6.c13 void *brk = sbrk(16); in main() local
14 if (brk == (void *)-1) { in main()
19 if (mprotect(brk, 16, PROT_READ | PROT_WRITE | PROT_MTE)) { in main()
27 asm("irg %0,%1,%2" : "=r"(p1) : "r"(brk), "r"(excl)); in main()
29 asm("irg %0,%1,%2" : "=r"(p2) : "r"(brk), "r"(excl)); in main()
/openbmc/qemu/target/arm/
H A Dhyp_gdbstub.c59 HWBreakpoint brk = { in insert_hw_breakpoint() local
68 brk.bcr = deposit32(brk.bcr, 1, 2, 0x3); /* PMC = 11 */ in insert_hw_breakpoint()
69 brk.bcr = deposit32(brk.bcr, 5, 4, 0xf); /* BAS = RES1 */ in insert_hw_breakpoint()
71 g_array_append_val(hw_breakpoints, brk); in insert_hw_breakpoint()
87 HWBreakpoint *brk = get_hw_bp(i); in delete_hw_breakpoint() local
88 if (brk->bvr == pc) { in delete_hw_breakpoint()
/openbmc/u-boot/common/
H A Ddlmalloc.c1068 char* brk; /* return value from sbrk */ local
1090 brk = (char*)(MORECORE (sbrk_size));
1093 if (brk == (char*)(MORECORE_FAILURE) ||
1094 (brk < old_end && old_top != initial_top))
1099 if (brk == old_end) /* can just add bytes to current top */
1107 sbrk_base = brk;
1109 sbrked_mem += brk - (char*)old_end;
1112 front_misalign = (unsigned long)chunk2mem(brk) & MALLOC_ALIGN_MASK;
1116 brk += correction;
1123 correction += ((((unsigned long)(brk + sbrk_size))+(pagesz-1)) &
[all …]
H A Ddlmalloc.src1933 char* brk; /* return value from sbrk */
1955 brk = (char*)(MORECORE (sbrk_size));
1958 if (brk == (char*)(MORECORE_FAILURE) ||
1959 (brk < old_end && old_top != initial_top))
1964 if (brk == old_end) /* can just add bytes to current top */
1972 sbrk_base = brk;
1974 sbrked_mem += brk - (char*)old_end;
1977 front_misalign = (unsigned long)chunk2mem(brk) & MALLOC_ALIGN_MASK;
1981 brk += correction;
1986 /* Guarantee the next brk will be at a page boundary */
[all …]
/openbmc/qemu/pc-bios/dtb/
H A Dpetalogix-s3adsp1800.dts85 xlnx,number-of-pc-brk = <0x03>;
86 xlnx,number-of-rd-addr-brk = <0x02>;
87 xlnx,number-of-wr-addr-brk = <0x02>;
98 xlnx,use-ext-brk = <0x01>;
99 xlnx,use-ext-nm-brk = <0x01>;
H A Dpetalogix-ml605.dts104 xlnx,number-of-pc-brk = < 0x01 >;
105 xlnx,number-of-rd-addr-brk = < 0x00 >;
106 xlnx,number-of-wr-addr-brk = < 0x00 >;
120 xlnx,use-ext-brk = < 0x01 >;
121 xlnx,use-ext-nm-brk = < 0x01 >;
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/chrony/chrony/
H A Darm_eabi.patch52 SCMP_SYS(brk),
/openbmc/qemu/linux-user/mips/
H A Dsyscall-args-o32.c.inc46 [ 45] = 1, /* brk */
/openbmc/qemu/target/microblaze/
H A Dinsns.decode124 brk 100110 ..... 01100 ..... 000 0000 0000 @typea_br
/openbmc/qemu/linux-user/
H A Dflatload.c546 info->brk = libinfo[0].start_brk; in load_flt_binary()
/openbmc/qemu/bsd-user/
H A Dqemu.h65 abi_ulong brk; member
H A Delfload.c814 info->brk = elf_brk; in load_elf_binary()
/openbmc/qemu/linux-user/mips64/
H A Dsyscall_n64.tbl22 12 n64 brk sys_brk
H A Dsyscall_n32.tbl22 12 n32 brk sys_brk
/openbmc/qemu/linux-user/xtensa/
H A Dsyscall.tbl95 83 common brk sys_brk
/openbmc/qemu/linux-user/riscv/
H A Dsyscall.tbl258 214 common brk sys_brk
/openbmc/qemu/linux-user/loongarch64/
H A Dsyscall.tbl258 214 common brk sys_brk
/openbmc/qemu/linux-user/x86_64/
H A Dsyscall_64.tbl24 12 common brk sys_brk
/openbmc/qemu/linux-user/hexagon/
H A Dsyscall.tbl258 214 common brk sys_brk
/openbmc/qemu/linux-user/openrisc/
H A Dsyscall.tbl258 214 common brk sys_brk
/openbmc/qemu/linux-user/aarch64/
H A Dsyscall_64.tbl258 214 common brk sys_brk
/openbmc/qemu/target/arm/tcg/
H A Dsve_helper.c4041 bool brk, bool after) in compute_brk() argument
4045 if (brk) { in compute_brk()
4059 brk = true; in compute_brk()
4063 return brk; in compute_brk()
4070 bool brk = false; in compute_brk_z() local
4076 brk = compute_brk(&this_b, n[i], this_g, brk, after); in compute_brk_z()
4086 bool brk = false; in compute_brks_z() local
4092 brk = compute_brk(&this_b, n[i], this_g, brk, after); in compute_brks_z()
4103 bool brk = false; in compute_brk_m() local
4109 brk = compute_brk(&this_b, n[i], this_g, brk, after); in compute_brk_m()
[all …]
/openbmc/qemu/linux-user/sh4/
H A Dsyscall.tbl55 45 common brk sys_brk
/openbmc/qemu/linux-user/hppa/
H A Dsyscall.tbl58 45 common brk sys_brk
/openbmc/qemu/linux-user/m68k/
H A Dsyscall.tbl55 45 common brk sys_brk

12