Home
last modified time | relevance | path

Searched refs:find_stack (Results 1 – 9 of 9) sorted by relevance

/dports/multimedia/v4l_compat/linux-5.13-rc2/lib/
H A Dstackdepot.c202 static inline struct stack_record *find_stack(struct stack_record *bucket, in find_stack() function
281 found = find_stack(smp_load_acquire(bucket), entries, in stack_depot_save()
310 found = find_stack(*bucket, entries, nr_entries, hash); in stack_depot_save()
/dports/multimedia/libv4l/linux-5.13-rc2/lib/
H A Dstackdepot.c202 static inline struct stack_record *find_stack(struct stack_record *bucket, in find_stack() function
281 found = find_stack(smp_load_acquire(bucket), entries, in stack_depot_save()
310 found = find_stack(*bucket, entries, nr_entries, hash); in stack_depot_save()
/dports/multimedia/v4l-utils/linux-5.13-rc2/lib/
H A Dstackdepot.c202 static inline struct stack_record *find_stack(struct stack_record *bucket, in find_stack() function
281 found = find_stack(smp_load_acquire(bucket), entries, in stack_depot_save()
310 found = find_stack(*bucket, entries, nr_entries, hash); in stack_depot_save()
/dports/math/oleo/oleo-1.99.16/src/
H A Dlists.c68 static struct obstack find_stack; variable
245 f = (struct find *)obstack_alloc (&find_stack, sizeof (struct find)); in find_rng()
276 f = (struct find *)obstack_alloc (&find_stack, sizeof (struct find)); in make_rng()
409 obstack_free (&find_stack, f); in next_rng()
418 obstack_begin (&find_stack, sizeof (struct find) * 15); in init_cells()
470 new = (struct cf *)obstack_alloc (&find_stack, sizeof (struct cf)); in find_cells_in_range()
488 new = (struct cf *)obstack_alloc (&find_stack, sizeof (struct cf)); in make_cells_in_range()
513 obstack_free (&find_stack, Global->fp); in next_cell_in_range()
541 obstack_free (&find_stack, Global->fp); in next_row_col_in_range()
563 obstack_free (&find_stack, Global->fp); in no_more_cells()
/dports/devel/py-openstacksdk/openstacksdk-0.60.0/doc/source/user/proxies/
H A Dorchestration.rst21 :members: create_stack, check_stack, update_stack, delete_stack, find_stack,
/dports/devel/py-openstacksdk/openstacksdk-0.60.0/openstack/cloud/
H A D_orchestration.py243 stack = self.orchestration.find_stack(
/dports/devel/py-openstacksdk/openstacksdk-0.60.0/openstack/orchestration/v1/
H A D_proxy.py98 def find_stack(self, name_or_id, member in Proxy
/dports/devel/py-openstacksdk/openstacksdk-0.60.0/openstack/tests/unit/orchestration/v1/
H A Dtest_proxy.py45 self.verify_find(self.proxy.find_stack, stack.Stack,
/dports/lang/erlang-runtime21/otp-OTP-21.3.8.24/lib/compiler/src/
H A Dv3_codegen.erl2554 case find_stack(V, Stk) of
2632 find_stack(Var, Stk) -> find_stack(Var, Stk, 0). function
2634 find_stack(V, [{V}|_], I) -> {ok,{yy,I}}; function
2635 find_stack(V, [_|Stk], I) -> find_stack(V, Stk, I+1); function
2636 find_stack(_, [], _) -> error. function