| /openbmc/libbej/src/ |
| H A D | bej_encoder_json.cpp | 13 auto stack = reinterpret_cast<std::vector<void*>*>(dataPtr); in stackPeek() local 14 if (stack->empty()) in stackPeek() 18 return stack->back(); in stackPeek() 23 auto stack = reinterpret_cast<std::vector<void*>*>(dataPtr); in stackPop() local 24 if (stack->empty()) in stackPop() 28 void* value = stack->back(); in stackPop() 29 stack->pop_back(); in stackPop() 35 auto stack = reinterpret_cast<std::vector<void*>*>(dataPtr); in stackPush() local 36 stack->emplace_back(property); in stackPush() 42 auto stack = reinterpret_cast<std::vector<uint8_t>*>(handlerContext); in getBejEncodedBuffer() local [all …]
|
| H A D | bej_encoder_core.c | 228 struct BejPointerStackCallback* stack) in bejPushParentToStack() argument 233 return stack->stackPush(parent, stack->stackContext); in bejPushParentToStack() 240 struct BejPointerStackCallback* stack, in bejProcessChildNodes() argument 256 RETURN_IF_IERROR(bejPushParentToStack(childPtr, stack)); in bejProcessChildNodes() 273 struct BejPointerStackCallback* stack, in bejEncodeTree() argument 283 RETURN_IF_IERROR(bejPushParentToStack(root, stack)); in bejEncodeTree() 285 while (!stack->stackEmpty(stack->stackContext)) in bejEncodeTree() 288 stack->stackPeek(stack->stackContext); in bejEncodeTree() 296 RETURN_IF_IERROR(bejProcessChildNodes(parent, stack, output)); in bejEncodeTree() 302 if (parent != stack->stackPeek(stack->stackContext)) in bejEncodeTree() [all …]
|
| H A D | bej_decoder_json.cpp | 295 std::vector<BejStackProperty>* stack = in stackEmpty() local 297 return stack->empty(); in stackEmpty() 308 std::vector<BejStackProperty>* stack = in stackPeek() local 310 if (stack->empty()) in stackPeek() 314 return &(stack->back()); in stackPeek() 324 std::vector<BejStackProperty>* stack = in stackPop() local 326 if (stack->empty()) in stackPop() 330 stack->pop_back(); in stackPop() 343 std::vector<BejStackProperty>* stack = in stackPush() local 345 stack->push_back(*property); in stackPush() [all …]
|
| H A D | bej_encoder_metadata.c | 530 struct BejPointerStackCallback* stack) in bejProcessChildNodes() argument 547 RETURN_IF_IERROR(stack->stackPush(childPtr, stack->stackContext)); in bejProcessChildNodes() 571 struct BejPointerStackCallback* stack) in bejUpdateNodeMetadata() argument 588 RETURN_IF_IERROR(stack->stackPush(root, stack->stackContext)); in bejUpdateNodeMetadata() 590 while (!stack->stackEmpty(stack->stackContext)) in bejUpdateNodeMetadata() 596 stack->stackPeek(stack->stackContext); in bejUpdateNodeMetadata() 601 RETURN_IF_IERROR(bejProcessChildNodes(dictionaries, parent, stack)); in bejUpdateNodeMetadata() 606 if (parent != stack->stackPeek(stack->stackContext)) in bejUpdateNodeMetadata() 616 parent = stack->stackPop(stack->stackContext); in bejUpdateNodeMetadata() 628 stack->stackPeek(stack->stackContext); in bejUpdateNodeMetadata()
|
| /openbmc/openbmc/poky/meta/recipes-graphics/igt-gpu-tools/igt-gpu-tools/ |
| H A D | 0001-lib-igt_aux.c-address-procps-4.0.5-compatibility.patch | 18 prcs->stack = procps_pids_get(prcs->info, PIDS_FETCH_TASKS_ONLY); 19 if (prcs->stack) { 20 - prcs->tid = PIDS_VAL(EU_PID, s_int, prcs->stack, prcs->info); 21 - prcs->euid = PIDS_VAL(EU_EUID, s_int, prcs->stack, prcs->info); 22 - prcs->egid = PIDS_VAL(EU_EGID, s_int, prcs->stack, prcs->info); 23 - prcs->comm = PIDS_VAL(EU_CMD, str, prcs->stack, prcs->info); 24 + prcs->tid = PIDS_VAL(EU_PID, s_int, prcs->stack); 25 + prcs->euid = PIDS_VAL(EU_EUID, s_int, prcs->stack); 26 + prcs->egid = PIDS_VAL(EU_EGID, s_int, prcs->stack); 27 + prcs->comm = PIDS_VAL(EU_CMD, str, prcs->stack);
|
| /openbmc/qemu/tests/functional/ |
| H A D | test_aarch64_device_passthrough.py | 102 stack = self.scratch_file('out') 103 kernel = os.path.join(stack, 'Image.gz') 104 rootfs_host = os.path.join(stack, 'host.ext4') 105 disk_vfio = os.path.join(stack, 'disk_vfio') 106 disk_iommufd = os.path.join(stack, 'disk_iommufd') 107 guest_cmd = os.path.join(stack, 'guest.sh') 108 nested_guest_cmd = os.path.join(stack, 'nested_guest.sh')
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/geany/geany-plugins/ |
| H A D | 0001-scope-Use-0-instead-of-NULL-for-gboolean.patch | 8 scope/src/stack.c:168:11: error: incompatible pointer to integer conversion initializing 'gboolean'… 16 scope/src/stack.c | 2 +- 19 diff --git a/scope/src/stack.c b/scope/src/stack.c 21 --- a/scope/src/stack.c 22 +++ b/scope/src/stack.c
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/yajl/yajl/ |
| H A D | CVE-2023-33460.patch | 13 ctx->stack = stack->next; 15 v = stack->value; 17 + free (stack->key); 18 free (stack); 25 + while(ctx.stack != NULL) {
|
| /openbmc/qemu/util/ |
| H A D | coroutine-ucontext.c | 47 void *stack; member 107 if (!leaderp->stack) { in finish_switch_fiber() 108 leaderp->stack = (void *)bottom_old; in finish_switch_fiber() 167 leaderp->stack, leaderp->stack_size); in coroutine_trampoline() 202 co->stack = qemu_alloc_stack(&co->stack_size); in qemu_coroutine_new() 210 uc.uc_stack.ss_sp = co->stack; in qemu_coroutine_new() 216 VALGRIND_STACK_REGISTER(co->stack, co->stack + co->stack_size); in qemu_coroutine_new() 227 start_switch_fiber_asan(&fake_stack_save, co->stack, co->stack_size); in qemu_coroutine_new() 275 start_switch_fiber_asan(NULL, to->stack, to->stack_size); in terminate_asan() 295 qemu_free_stack(co->stack, co->stack_size); in qemu_coroutine_delete() [all …]
|
| H A D | coroutine-wasm.c | 30 void *stack; member 65 co->stack = qemu_alloc_stack(&co->stack_size); in qemu_coroutine_new() 70 co->stack, co->stack_size, co->asyncify_stack, in qemu_coroutine_new() 80 qemu_free_stack(co->stack, co->stack_size); in qemu_coroutine_delete() 111 leaderp->stack = leaderp->fiber.stack_limit; in qemu_coroutine_self()
|
| /openbmc/u-boot/arch/arm/lib/ |
| H A D | vectors.S | 158 @ IRQ stack frame. 191 @ carve out a frame on current user stack 197 add r0, sp, #S_FRAME_SIZE @ grab pointer to old stack 201 mov r0, sp @ save current stack into r0 (param register) 207 @ !!!! R8 NEEDS to be saved !!!! a reserved stack spot would be good. 226 ldr r13, IRQ_STACK_START_IN @ setup our mode stack 228 str lr, [r13] @ save caller lr in position 0 of saved stack 230 str lr, [r13, #4] @ save spsr in position 1 of saved stack 238 .macro get_irq_stack @ setup IRQ stack 242 .macro get_fiq_stack @ setup FIQ stack
|
| /openbmc/u-boot/arch/arm/include/asm/proc-armv/ |
| H A D | processor.h | 50 unsigned long *stack = (unsigned long *)sp; \ 59 regs->ARM_r2 = stack[2]; /* r2 (envp) */ \ 60 regs->ARM_r1 = stack[1]; /* r1 (argv) */ \ 61 regs->ARM_r0 = stack[0]; /* r0 (argc) */ \
|
| /openbmc/u-boot/scripts/kconfig/ |
| H A D | symbol.c | 1106 static void dep_stack_insert(struct dep_stack *stack, struct symbol *sym) in dep_stack_insert() argument 1108 memset(stack, 0, sizeof(*stack)); in dep_stack_insert() 1110 check_top->next = stack; in dep_stack_insert() 1111 stack->prev = check_top; in dep_stack_insert() 1112 stack->sym = sym; in dep_stack_insert() 1113 check_top = stack; in dep_stack_insert() 1130 struct dep_stack *stack; in sym_check_print_recursive() local 1141 for (stack = check_top; stack != NULL; stack = stack->prev) in sym_check_print_recursive() 1142 if (stack->sym == last_sym) in sym_check_print_recursive() 1144 if (!stack) { in sym_check_print_recursive() [all …]
|
| /openbmc/qemu/qapi/ |
| H A D | qobject-output-visitor.c | 36 QSLIST_HEAD(, QStackEntry) stack; /* Stack of unfinished containers */ 61 QSLIST_INSERT_HEAD(&qov->stack, e, node); in qobject_output_push_obj() 67 QStackEntry *e = QSLIST_FIRST(&qov->stack); in qobject_output_pop() 72 QSLIST_REMOVE_HEAD(&qov->stack, node); in qobject_output_pop() 85 QStackEntry *e = QSLIST_FIRST(&qov->stack); in qobject_output_add_obj() 231 assert(qov->root && QSLIST_EMPTY(&qov->stack)); in qobject_output_complete() 243 while (!QSLIST_EMPTY(&qov->stack)) { in qobject_output_free() 244 e = QSLIST_FIRST(&qov->stack); in qobject_output_free() 245 QSLIST_REMOVE_HEAD(&qov->stack, node); in qobject_output_free()
|
| H A D | qobject-input-visitor.c | 54 QSLIST_HEAD(, StackObject) stack; 87 QSLIST_FOREACH(so , &qiv->stack, node) { in full_name_nth() 127 if (QSLIST_EMPTY(&qiv->stack)) { in qobject_input_try_get_object() 134 tos = QSLIST_FIRST(&qiv->stack); in qobject_input_try_get_object() 236 QSLIST_INSERT_HEAD(&qiv->stack, tos, node); in qobject_input_push() 244 StackObject *tos = QSLIST_FIRST(&qiv->stack); in qobject_input_check_struct() 271 StackObject *tos = QSLIST_FIRST(&qiv->stack); in qobject_input_pop() 274 QSLIST_REMOVE_HEAD(&qiv->stack, node); in qobject_input_pop() 307 StackObject *tos = QSLIST_FIRST(&qiv->stack); in qobject_input_end_struct() 345 StackObject *tos = QSLIST_FIRST(&qiv->stack); in qobject_input_next_list() [all …]
|
| /openbmc/u-boot/arch/arm/mach-imx/ |
| H A D | imx_bootaux.c | 15 ulong stack, pc; in arch_auxiliary_core_up() local 20 stack = *(u32 *)boot_private_data; in arch_auxiliary_core_up() 24 writel(stack, M4_BOOTROM_BASE_ADDR); in arch_auxiliary_core_up()
|
| /openbmc/u-boot/scripts/ |
| H A D | checkstack.pl | 36 my (@stack, $re, $dre, $x, $xs, $funcre); 150 push @stack, "$intro$size\n"; 166 push @stack, "$intro$size\n"; 171 print sort { ($b =~ /:\t*(\d+)$/)[0] <=> ($a =~ /:\t*(\d+)$/)[0] } @stack;
|
| /openbmc/u-boot/lib/libfdt/ |
| H A D | fdt_region.c | 35 int stack[FDT_MAX_DEPTH] = { 0 }; in fdt_find_regions() local 86 stack[depth] = want; in fdt_find_regions() 103 want = stack[depth--]; in fdt_find_regions() 309 if (!info->stack[i].included) { in fdt_include_supernodes() 310 start = info->stack[i].offset; in fdt_include_supernodes() 318 info->stack[i].included = 1; in fdt_include_supernodes() 323 if (!info->stack[i].want) in fdt_include_supernodes() 324 info->stack[i].want = WANT_NODES_ONLY; in fdt_include_supernodes() 540 info->stack[p.depth].want = p.want; in fdt_next_region() 541 info->stack[p.depth].offset = offset; in fdt_next_region() [all …]
|
| /openbmc/qemu/tests/multiboot/ |
| H A D | start.S | 37 mov $stack, %esp 51 stack: label
|
| /openbmc/u-boot/arch/x86/lib/fsp/ |
| H A D | fsp_common.c | 111 int stack = CONFIG_FSP_TEMP_RAM_ADDR; in arch_fsp_init() local 144 stack = cmos_read32(CMOS_FSP_STACK_ADDR); in arch_fsp_init() 153 fsp_init(stack, boot_mode, nvs); in arch_fsp_init()
|
| /openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/ntp/ntp/ |
| H A D | 0001-libntp-Do-not-use-PTHREAD_STACK_MIN-on-glibc.patch | 7 could mean different stack sizes at runtime on different architectures 8 and it also causes compile failure. Default glibc thread stack size 23 /* now clamp on lower stack limit. */
|
| /openbmc/qemu/bsd-user/aarch64/ |
| H A D | target_arch_thread.h | 48 abi_long stack = infop->start_stack; in target_thread_init() local 58 regs->sp = ROUND_DOWN(stack, 16); in target_thread_init()
|
| /openbmc/openbmc/poky/meta/classes-global/ |
| H A D | yocto-check-layer.bbclass | 45 stack = {"do_build"} 46 while stack: 47 task = stack.pop() 53 stack |= {d for d in deps if d not in seen}
|
| /openbmc/qemu/pc-bios/s390-ccw/ |
| H A D | start.S | 19 larl %r15,stack + STACK_SIZE - STACK_FRAME_SIZE /* Set up stack */ 132 stack: label 134 .size stack,STACK_SIZE
|
| /openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/lowpan-tools/ |
| H A D | lowpan-tools_git.bb | 1 SUMMARY = "Utilities for managing the Linux LoWPAN stack" 2 DESCRIPTION = "This is a set of utils to manage the Linux LoWPAN stack. \ 3 The LoWPAN stack aims for IEEE 802.15.4-2003 (and for lesser extent IEEE 802.15.4-2006) compatibili…
|