Home
last modified time | relevance | path

Searched refs:end_ptr (Results 1 – 5 of 5) sorted by relevance

/openbmc/u-boot/board/freescale/mx31pdk/
H A Dmx31pdk.c30 ulong *start_ptr, *end_ptr, *link_ptr, *run_ptr, *dst; in board_init_f() local
32 asm volatile ("ldr %0, =_end" : "=r"(end_ptr)); in board_init_f()
35 for (dst = start_ptr; dst < end_ptr; dst++) in board_init_f()
/openbmc/ipmitool/lib/
H A Dhelper.c160 char * end_ptr = 0; in str2double() local
166 *double_ptr = strtod(str, &end_ptr); in str2double()
168 if (*end_ptr != '\0') in str2double()
187 char * end_ptr = 0; in str2long() local
193 *lng_ptr = strtol(str, &end_ptr, 0); in str2long()
195 if (*end_ptr != '\0') in str2long()
214 char * end_ptr = 0; in str2ulong() local
220 *ulng_ptr = strtoul(str, &end_ptr, 0); in str2ulong()
222 if (*end_ptr != '\0') in str2ulong()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-kernel/kernel-selftest/kernel-selftest/
H A Duserfaultfd.patch66 + int32_t *end_ptr; /* Pointer behind state table. */
111 + int32_t *end_ptr = buf->end_ptr;
118 + if (fptr >= end_ptr)
126 + if (rptr >= end_ptr)
250 + buf->end_ptr = &state[degree];
309 + /* Set end_ptr too. */
310 + buf->end_ptr = &new_state[degree];
/openbmc/u-boot/board/armadeus/apf27/
H A Dapf27.c244 ulong *start_ptr, *end_ptr, *link_ptr, *run_ptr, *dst; in board_init_f() local
246 asm volatile ("ldr %0, =_end" : "=r"(end_ptr)); in board_init_f()
249 for (dst = start_ptr; dst < end_ptr; dst++) in board_init_f()
/openbmc/qemu/hw/display/
H A Dcirrus_vga.c816 uint8_t *end_ptr; in cirrus_bitblt_cputovideo_next() local
838 end_ptr = s->cirrus_bltbuf + s->cirrus_blt_srcpitch; in cirrus_bitblt_cputovideo_next()
839 copy_count = MIN(s->cirrus_srcptr_end - end_ptr, CIRRUS_BLTBUFSIZE); in cirrus_bitblt_cputovideo_next()
840 memmove(s->cirrus_bltbuf, end_ptr, copy_count); in cirrus_bitblt_cputovideo_next()