Home
last modified time | relevance | path

Searched refs:slots (Results 151 – 175 of 31008) sorted by relevance

12345678910>>...1241

/dports/devel/tigcc/tigcc-0.96.b8_10/gnu/gcc-4.1-20060728/gcc/
H A Dpointer-set.c39 void **slots; member
82 result->slots = XCNEWVEC (void *, result->n_slots); in pointer_set_create()
89 XDELETEVEC (pset->slots); in pointer_set_destroy()
103 if (pset->slots[n] == p) in pointer_set_contains()
105 else if (pset->slots[n] == 0) in pointer_set_contains()
125 if (slots[n] == p) in insert_aux()
127 else if (slots[n] == 0) in insert_aux()
129 slots[n] = p; in insert_aux()
161 if (pset->slots[i]) in pointer_set_insert()
165 XDELETEVEC (pset->slots); in pointer_set_insert()
[all …]
/dports/www/firefox-esr/firefox-91.8.0/python/mozlint/mozlint/formatters/
H A Dunix.py26 slots = attr.asdict(err)
27 slots["path"] = slots["relpath"]
28 slots["column"] = "%d:" % slots["column"] if slots["column"] else ""
29 slots["rule"] = slots["rule"] or slots["linter"]
31 msg.append(self.fmt.format(**slots))
/dports/www/firefox/firefox-99.0/python/mozlint/mozlint/formatters/
H A Dunix.py26 slots = attr.asdict(err)
27 slots["path"] = slots["relpath"]
28 slots["column"] = "%d:" % slots["column"] if slots["column"] else ""
29 slots["rule"] = slots["rule"] or slots["linter"]
31 msg.append(self.fmt.format(**slots))
/dports/mail/thunderbird/thunderbird-91.8.0/python/mozlint/mozlint/formatters/
H A Dunix.py26 slots = attr.asdict(err)
27 slots["path"] = slots["relpath"]
28 slots["column"] = "%d:" % slots["column"] if slots["column"] else ""
29 slots["rule"] = slots["rule"] or slots["linter"]
31 msg.append(self.fmt.format(**slots))
/dports/audio/supercollider/SuperCollider-3.11.0-Source/lang/LangPrimSource/
H A DPyrListPrim.cpp66 slots1 = obj1->slots; in prArrayMultiChanExpand()
86 slots2 = obj2->slots; in prArrayMultiChanExpand()
129 slots = array->slots; in arrayAtIdentityHash()
131 test = slots + i; in arrayAtIdentityHash()
137 test = slots + i; in arrayAtIdentityHash()
171 slots = array->slots; in arrayAtIdentityHashInPairs()
173 test = slots + i; in arrayAtIdentityHashInPairs()
194 slots = array->slots; in arrayAtIdentityHashInPairsWithHash()
651 slotCopy(newschedq->slots, schedq->slots, size); in PriorityQueueAdd()
779 PyrSlot* slots = schedq->slots; in PriorityQueuePostpone() local
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/python/mozlint/mozlint/formatters/
H A Dunix.py23 slots = {s: getattr(err, s) for s in err.__slots__}
24 slots["path"] = slots['relpath']
25 slots["column"] = "%d:" % slots["column"] if slots["column"] else ""
26 slots["rule"] = slots["rule"] or slots["linter"]
28 msg.append(self.fmt.format(**slots))
/dports/lang/purescript/purescript-0.14.5/_cabal_deps/stm-chans-3.0.0.4/src/Control/Concurrent/STM/
H A DTBChan.hs92 slots <- newTVar n
95 return (TBChan slots reads chan)
103 slots <- newTVarIO n
106 return (TBChan slots reads chan)
203 modifyTVar' slots (subtract 1)
224 n <- readTVar slots
229 writeTVar slots $! n'
251 n <- readTVar slots
257 writeTVar slots $! n'
270 n <- readTVar slots
[all …]
/dports/finance/hs-hledger-web/hledger-web-1.19/_cabal_deps/stm-chans-3.0.0.4/src/Control/Concurrent/STM/
H A DTBChan.hs92 slots <- newTVar n
95 return (TBChan slots reads chan)
103 slots <- newTVarIO n
106 return (TBChan slots reads chan)
203 modifyTVar' slots (subtract 1)
224 n <- readTVar slots
229 writeTVar slots $! n'
251 n <- readTVar slots
257 writeTVar slots $! n'
270 n <- readTVar slots
[all …]
/dports/devel/hs-spago/spago-0.20.3/_cabal_deps/stm-chans-3.0.0.4/src/Control/Concurrent/STM/
H A DTBChan.hs92 slots <- newTVar n
95 return (TBChan slots reads chan)
103 slots <- newTVarIO n
106 return (TBChan slots reads chan)
203 modifyTVar' slots (subtract 1)
224 n <- readTVar slots
229 writeTVar slots $! n'
251 n <- readTVar slots
257 writeTVar slots $! n'
270 n <- readTVar slots
[all …]
/dports/devel/hs-git-annex/git-annex-8.20210903/_cabal_deps/stm-chans-3.0.0.4/src/Control/Concurrent/STM/
H A DTBChan.hs92 slots <- newTVar n
95 return (TBChan slots reads chan)
103 slots <- newTVarIO n
106 return (TBChan slots reads chan)
203 modifyTVar' slots (subtract 1)
224 n <- readTVar slots
229 writeTVar slots $! n'
251 n <- readTVar slots
257 writeTVar slots $! n'
270 n <- readTVar slots
[all …]
/dports/devel/stack/stack-2.7.3/_cabal_deps/stm-chans-3.0.0.4/src/Control/Concurrent/STM/
H A DTBChan.hs92 slots <- newTVar n
95 return (TBChan slots reads chan)
103 slots <- newTVarIO n
106 return (TBChan slots reads chan)
203 modifyTVar' slots (subtract 1)
224 n <- readTVar slots
229 writeTVar slots $! n'
251 n <- readTVar slots
257 writeTVar slots $! n'
270 n <- readTVar slots
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/python/mozlint/mozlint/formatters/
H A Dunix.py27 slots = {s: getattr(err, s) for s in err.__slots__}
28 slots["path"] = os.path.relpath(slots["path"])
29 slots["column"] = "%d:" % slots["column"] if slots["column"] else ""
30 slots["rule"] = slots["rule"] or slots["linter"]
32 msg.append(self.fmt.format(**slots))
/dports/devel/caf/actor-framework-0.18.5/libcaf_core/caf/detail/
H A Dstream_distribution_tree.hpp68 auto slot = path->slots.receiver; in handle()
77 policy_.path_closed(path->slots.receiver); in handle()
82 policy_.path_force_closed(path->slots.receiver, x.reason); in handle()
86 CAF_LOG_TRACE(CAF_ARG(slots) << CAF_ARG(x)); in handle()
89 if (super::handle(slots, x)) { in handle()
97 void handle(stream_slots slots, upstream_msg::drop& x) override { in handle() argument
98 CAF_LOG_TRACE(CAF_ARG(slots) << CAF_ARG(x)); in handle()
100 super::handle(slots, x); in handle()
104 CAF_LOG_TRACE(CAF_ARG(slots) << CAF_ARG(x)); in handle()
106 auto slot = slots.receiver; in handle()
[all …]
/dports/devel/p5-Symbol-Util/Symbol-Util-0.0203/t/
H A D60list_glob_slots.t25 my @slots = list_glob_slots("Symbol::Util::Test60::FOO");
26 …is_deeply( [ sort @slots ], [ qw( ARRAY CODE HASH IO SCALAR ) ], 'list_glob_slots("Symbol::Util::T…
36 my @slots = list_glob_slots("Symbol::Util::Test60::BAR");
37 is_deeply( [ sort @slots ], [ qw( CODE ) ], 'list_glob_slots("Symbol::Util::Test60::BAR")' );
42 my @slots = Symbol::Util::list_glob_slots("BAR");
43 … Test::More::is_deeply( [ sort @slots ], [ qw( CODE ) ], 'Symbol::Util::list_glob_slots("BAR")' );
47 my @slots = list_glob_slots("Symbol::Util::Test60::BAZ");
48 is_deeply( [ sort @slots ], [ qw( ) ], 'list_glob_slots("Symbol::Util::Test60::BAZ")' );
58 my @slots = list_glob_slots("Symbol::Util::Test60::NULL");
59 is_deeply( [ sort @slots ], [ qw( ) ], 'list_glob_slots("Symbol::Util::Test60::NULL")' );
/dports/games/libretro-bluemsx/blueMSX-libretro-faf470e/Src/SoundChips/
H A DOpenMsxYMF278.cpp239 YMF278Slot &op = slots[i]; in advance()
431 if (slots[i].active) { in anyActive()
453 YMF278Slot &sl = slots[i]; in updateBuffer()
533 YMF278Slot& slot = slots[snum]; in writeRegOPL4()
803 slots[i].reset(); in reset()
1030 saveStateSet(state, tag, slots[i].FN); in saveState()
1039 saveStateSet(state, tag, slots[i].LD); in saveState()
1042 saveStateSet(state, tag, slots[i].TL); in saveState()
1054 saveStateSet(state, tag, slots[i].AM); in saveState()
1057 saveStateSet(state, tag, slots[i].AR); in saveState()
[all …]
/dports/lang/guile2/guile-2.2.7/module/srfi/
H A Dsrfi-26.scm28 (let loop ((slots #'(slot0 slot1+ ...))
31 (if (null? slots)
33 (let ((s (car slots))
34 (rest (cdr slots)))
50 ((cute slots ...)
51 (let loop ((slots #'(slots ...))
55 (loop (cdr slots) bindings (cons (car slots) arguments)))
56 (if (null? slots)
59 (syntax-case (car slots) (<> <...>)
64 (loop (cdr slots)
/dports/lang/guile/guile-3.0.7/module/srfi/
H A Dsrfi-26.scm28 (let loop ((slots #'(slot0 slot1+ ...))
31 (if (null? slots)
33 (let ((s (car slots))
34 (rest (cdr slots)))
50 ((cute slots ...)
51 (let loop ((slots #'(slots ...))
55 (loop (cdr slots) bindings (cons (car slots) arguments)))
56 (if (null? slots)
59 (syntax-case (car slots) (<> <...>)
64 (loop (cdr slots)
/dports/devel/concurrencykit/ck-0.6.0/include/spinlock/
H A Danderson.h48 struct ck_spinlock_anderson_thread *slots; member
59 struct ck_spinlock_anderson_thread *slots, in ck_spinlock_anderson_init() argument
64 slots[0].locked = false; in ck_spinlock_anderson_init()
65 slots[0].position = 0; in ck_spinlock_anderson_init()
67 slots[i].locked = true; in ck_spinlock_anderson_init()
68 slots[i].position = i; in ck_spinlock_anderson_init()
71 lock->slots = slots; in ck_spinlock_anderson_init()
97 r = ck_pr_load_uint(&lock->slots[position].locked); in ck_spinlock_anderson_locked()
142 ck_pr_store_uint(&lock->slots[position].locked, true); in ck_spinlock_anderson_lock()
145 *slot = lock->slots + position; in ck_spinlock_anderson_lock()
[all …]
/dports/benchmarks/sysbench/sysbench-1.0.20/third_party/concurrency_kit/ck/include/spinlock/
H A Danderson.h48 struct ck_spinlock_anderson_thread *slots; member
59 struct ck_spinlock_anderson_thread *slots, in ck_spinlock_anderson_init() argument
64 slots[0].locked = false; in ck_spinlock_anderson_init()
65 slots[0].position = 0; in ck_spinlock_anderson_init()
67 slots[i].locked = true; in ck_spinlock_anderson_init()
68 slots[i].position = i; in ck_spinlock_anderson_init()
71 lock->slots = slots; in ck_spinlock_anderson_init()
97 r = ck_pr_load_uint(&lock->slots[position].locked); in ck_spinlock_anderson_locked()
142 ck_pr_store_uint(&lock->slots[position].locked, true); in ck_spinlock_anderson_lock()
145 *slot = lock->slots + position; in ck_spinlock_anderson_lock()
[all …]
/dports/security/ridl/ridl-11b3240/nuklear/src/
H A Dnuklear_chart.c123 range = g->slots[slot].max - g->slots[slot].min; in nk_chart_push_line()
144 g->slots[slot].index += 1; in nk_chart_push_line()
149 color = g->slots[slot].color; in nk_chart_push_line()
152 nk_stroke_line(out, g->slots[slot].last.x, g->slots[slot].last.y, cur.x, cur.y, 1.0f, color); in nk_chart_push_line()
170 g->slots[slot].last.x = cur.x; in nk_chart_push_line()
171 g->slots[slot].last.y = cur.y; in nk_chart_push_line()
172 g->slots[slot].index += 1; in nk_chart_push_line()
189 if (chart->slots[slot].index >= chart->slots[slot].count) in nk_chart_push_column()
200 ratio = (value + NK_ABS(chart->slots[slot].min)) / NK_ABS(chart->slots[slot].range); in nk_chart_push_column()
203 ratio = (value - chart->slots[slot].max) / chart->slots[slot].range; in nk_chart_push_column()
[all …]
/dports/x11-toolkits/nuklear/Nuklear-4.09.1/src/
H A Dnuklear_chart.c130 range = g->slots[slot].max - g->slots[slot].min; in nk_chart_push_line()
151 g->slots[slot].index += 1; in nk_chart_push_line()
156 color = g->slots[slot].color; in nk_chart_push_line()
159 nk_stroke_line(out, g->slots[slot].last.x, g->slots[slot].last.y, cur.x, cur.y, 1.0f, color); in nk_chart_push_line()
177 g->slots[slot].last.x = cur.x; in nk_chart_push_line()
178 g->slots[slot].last.y = cur.y; in nk_chart_push_line()
179 g->slots[slot].index += 1; in nk_chart_push_line()
196 if (chart->slots[slot].index >= chart->slots[slot].count) in nk_chart_push_column()
207 ratio = (value + NK_ABS(chart->slots[slot].min)) / NK_ABS(chart->slots[slot].range); in nk_chart_push_column()
210 ratio = (value - chart->slots[slot].max) / chart->slots[slot].range; in nk_chart_push_column()
[all …]
/dports/graphics/milton/milton-1.9.1/third_party/SDL2-2.0.8/src/core/linux/
H A DSDL_evdev.c89 } * slots; member
463 item->touchscreen_data->slots = SDL_calloc( in SDL_EVDEV_init_touchscreen()
465 sizeof(*item->touchscreen_data->slots)); in SDL_EVDEV_init_touchscreen()
466 if (item->touchscreen_data->slots == NULL) { in SDL_EVDEV_init_touchscreen()
473 item->touchscreen_data->slots[i].tracking_id = -1; in SDL_EVDEV_init_touchscreen()
479 SDL_free(item->touchscreen_data->slots); in SDL_EVDEV_init_touchscreen()
495 SDL_free(item->touchscreen_data->slots); in SDL_EVDEV_destroy_touchscreen()
569 if (item->touchscreen_data->slots[i].delta == in SDL_EVDEV_sync_device()
571 item->touchscreen_data->slots[i].delta = in SDL_EVDEV_sync_device()
587 if (item->touchscreen_data->slots[i].delta == in SDL_EVDEV_sync_device()
[all …]
/dports/graphics/urho3d/Urho3D-1.7.1/Source/ThirdParty/SDL/src/core/linux/
H A DSDL_evdev.c89 } * slots; member
463 item->touchscreen_data->slots = SDL_calloc( in SDL_EVDEV_init_touchscreen()
465 sizeof(*item->touchscreen_data->slots)); in SDL_EVDEV_init_touchscreen()
466 if (item->touchscreen_data->slots == NULL) { in SDL_EVDEV_init_touchscreen()
473 item->touchscreen_data->slots[i].tracking_id = -1; in SDL_EVDEV_init_touchscreen()
479 SDL_free(item->touchscreen_data->slots); in SDL_EVDEV_init_touchscreen()
495 SDL_free(item->touchscreen_data->slots); in SDL_EVDEV_destroy_touchscreen()
569 if (item->touchscreen_data->slots[i].delta == in SDL_EVDEV_sync_device()
571 item->touchscreen_data->slots[i].delta = in SDL_EVDEV_sync_device()
587 if (item->touchscreen_data->slots[i].delta == in SDL_EVDEV_sync_device()
[all …]
/dports/devel/z88dk/z88dk/test/machine/
H A Dhook_io.c13 if ( slots[R->BC.B.h] == - 1 ) { \
20 static int slots[256]; variable
49 for ( i = 0; i < sizeof(slots); i++ ) { in find_slot()
50 if ( slots[i] == 0 ) { in find_slot()
70 slots[slot] = fd; in cmd_openfile()
85 close(slots[R->BC.B.h]); in cmd_closefile()
86 slots[R->BC.B.h] = -1; in cmd_closefile()
186 slots[0] = fileno(stdin); in hook_io_init()
187 slots[1] = fileno(stdout); in hook_io_init()
188 slots[2] = fileno(stderr); in hook_io_init()
[all …]
/dports/devel/p5-Symbol-Util/Symbol-Util-0.0203/lib/Symbol/
H A DUtil.pm203 my @slots;
205 push @slots, 'SCALAR'
212 return @slots;
237 @slots = qw( SCALAR ARRAY HASH CODE IO ) unless @slots;
246 foreach my $slot (@slots) {
276 my ($name, @slots) = @_;
284 if (@slots) {
490 my @slots;
492 push @slots, 'CODE';
501 push @slots, 'HASH';
[all …]

12345678910>>...1241