Home
last modified time | relevance | path

Searched refs:current_slot (Results 1 – 25 of 204) sorted by relevance

123456789

/dports/www/uwsgi/uwsgi-2.0.20/core/
H A Dsubscription.c34 char *colon = memchr(current_slot->key, ':', current_slot->keylen); in uwsgi_subscription_sni_check()
87 while (current_slot) { in uwsgi_get_subscribe_slot()
88 uwsgi_log("slot %.*s %d\n", current_slot->keylen, current_slot->key, current_slot->hits); in uwsgi_get_subscribe_slot()
89 current_slot = current_slot->next; in uwsgi_get_subscribe_slot()
95 while (current_slot) { in uwsgi_get_subscribe_slot()
99 if (current_slot->hits > current_slot->prev->hits) { in uwsgi_get_subscribe_slot()
122 current_slot = current_slot->next; in uwsgi_get_subscribe_slot()
263 if (!current_slot) in uwsgi_get_subscribe_node()
305 if (current_slot) { in uwsgi_get_subscribe_node_by_name()
410 if (current_slot) { in uwsgi_add_subscribe_node()
[all …]
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/third_party/wiredtiger/src/support/
H A Dthread_group.c68 uint32_t current_slot; in __thread_group_shrink() local
72 for (current_slot = group->alloc; current_slot > new_count; ) { in __thread_group_shrink()
77 thread = group->threads[--current_slot]; in __thread_group_shrink()
101 for (current_slot = group->alloc; current_slot > new_count; ) { in __thread_group_shrink()
102 thread = group->threads[--current_slot]; in __thread_group_shrink()
110 for (current_slot = group->alloc; current_slot > new_count; ) { in __thread_group_shrink()
111 thread = group->threads[--current_slot]; in __thread_group_shrink()
120 group->threads[current_slot] = NULL; in __thread_group_shrink()
/dports/games/OpenTomb/OpenTomb-win32-2018-02-03_alpha/src/audio/
H A Daudio_fx.cpp30 ALuint current_slot; member
152 …fxManager.current_slot = (++fxManager.current_slot > (TR_AUDIO_MAX_SLOTS - 1)) ? (0) : (fxManage… in Audio_SetFX()
155 slot = fxManager.al_slot[fxManager.current_slot]; in Audio_SetFX()
164 slot = fxManager.al_slot[fxManager.current_slot]; in Audio_SetFX()
/dports/databases/pgbouncer/pgbouncer-1.16.0/src/
H A Dpam.c220 int current_slot = pam_first_taken_slot; in pam_auth_worker() local
228 while (current_slot == pam_first_free_slot) { in pam_auth_worker()
234 log_debug("pam_auth_worker(): processing slot %d", current_slot); in pam_auth_worker()
237 request = &pam_auth_queue[current_slot]; in pam_auth_worker()
238 current_slot = (current_slot + 1) % PAM_REQUEST_QUEUE_SIZE; in pam_auth_worker()
246 log_debug("pam_auth_worker(): invalid socket in slot %d", current_slot); in pam_auth_worker()
/dports/security/theonionbox/theonionbox-4.3.1/theonionbox/tob/livedata/
H A Drecorder.py30 current_slot = self._calc_slot(timestamp)
34 if int(current_slot) != self.reference_slot:
41 self.reference_slot = current_slot
44 if current_slot == self.reference_slot:
/dports/print/ghostscript7-base/ghostscript-7.07/gimp-print-4.2.7/test/
H A Descp2-weavetest.c145 int *current_slot; in run_one_weavetest() local
184 current_slot = xmalloc(sizeof(int) * vmod); in run_one_weavetest()
189 memset(current_slot, 0, (sizeof(int) * vmod)); in run_one_weavetest()
197 current_slot[i] = -1; in run_one_weavetest()
244 errcodes[13] = (current_slot[w.pass % vmod] != -1 && in run_one_weavetest()
245 current_slot[w.pass % vmod] != w.pass ? in run_one_weavetest()
266 current_slot[w.pass % vmod] = -1; in run_one_weavetest()
271 current_slot[w.pass % vmod] = w.pass; in run_one_weavetest()
312 free(current_slot); in run_one_weavetest()
/dports/graphics/blender/blender-2.91.0/source/blender/blenlib/
H A DBLI_map.hh661 Slot &current_slot() const in current_slot() function
669 KeyIterator(const Slot *slots, int64_t total_slots, int64_t current_slot) in KeyIterator() argument
670 : BaseIterator<KeyIterator>(slots, total_slots, current_slot) in KeyIterator()
676 return *this->current_slot().key(); in operator *()
683 : BaseIterator<ValueIterator>(slots, total_slots, current_slot) in ValueIterator()
689 return *this->current_slot().value(); in operator *()
702 return *this->current_slot().value(); in operator *()
724 : BaseIterator<ItemIterator>(slots, total_slots, current_slot) in ItemIterator()
730 const Slot &slot = this->current_slot(); in operator *()
738 : BaseIterator<MutableItemIterator>(slots, total_slots, current_slot) in MutableItemIterator()
[all …]
/dports/devel/sdl20/SDL2-2.0.18/src/core/linux/
H A DSDL_evdev.c81 int current_slot; member
316 item->touchscreen_data->current_slot = events[i].value; in SDL_EVDEV_Poll()
322 … item->touchscreen_data->slots[item->touchscreen_data->current_slot].tracking_id = events[i].value; in SDL_EVDEV_Poll()
323 …item->touchscreen_data->slots[item->touchscreen_data->current_slot].delta = EVDEV_TOUCH_SLOTDELTA_… in SDL_EVDEV_Poll()
325 …item->touchscreen_data->slots[item->touchscreen_data->current_slot].delta = EVDEV_TOUCH_SLOTDELTA_… in SDL_EVDEV_Poll()
331 … item->touchscreen_data->slots[item->touchscreen_data->current_slot].x = events[i].value; in SDL_EVDEV_Poll()
333 …item->touchscreen_data->slots[item->touchscreen_data->current_slot].delta = EVDEV_TOUCH_SLOTDELTA_… in SDL_EVDEV_Poll()
339 … item->touchscreen_data->slots[item->touchscreen_data->current_slot].y = events[i].value; in SDL_EVDEV_Poll()
341 …item->touchscreen_data->slots[item->touchscreen_data->current_slot].delta = EVDEV_TOUCH_SLOTDELTA_… in SDL_EVDEV_Poll()
347 … item->touchscreen_data->slots[item->touchscreen_data->current_slot].pressure = events[i].value; in SDL_EVDEV_Poll()
[all …]
/dports/x11/controllermap/SDL2-2.0.18/src/core/linux/
H A DSDL_evdev.c81 int current_slot; member
316 item->touchscreen_data->current_slot = events[i].value; in SDL_EVDEV_Poll()
322 … item->touchscreen_data->slots[item->touchscreen_data->current_slot].tracking_id = events[i].value; in SDL_EVDEV_Poll()
323 …item->touchscreen_data->slots[item->touchscreen_data->current_slot].delta = EVDEV_TOUCH_SLOTDELTA_… in SDL_EVDEV_Poll()
325 …item->touchscreen_data->slots[item->touchscreen_data->current_slot].delta = EVDEV_TOUCH_SLOTDELTA_… in SDL_EVDEV_Poll()
331 … item->touchscreen_data->slots[item->touchscreen_data->current_slot].x = events[i].value; in SDL_EVDEV_Poll()
333 …item->touchscreen_data->slots[item->touchscreen_data->current_slot].delta = EVDEV_TOUCH_SLOTDELTA_… in SDL_EVDEV_Poll()
339 … item->touchscreen_data->slots[item->touchscreen_data->current_slot].y = events[i].value; in SDL_EVDEV_Poll()
341 …item->touchscreen_data->slots[item->touchscreen_data->current_slot].delta = EVDEV_TOUCH_SLOTDELTA_… in SDL_EVDEV_Poll()
347 … item->touchscreen_data->slots[item->touchscreen_data->current_slot].pressure = events[i].value; in SDL_EVDEV_Poll()
[all …]
/dports/graphics/milton/milton-1.9.1/third_party/SDL2-2.0.8/src/core/linux/
H A DSDL_evdev.c79 int current_slot; member
282 item->touchscreen_data->current_slot = events[i].value; in SDL_EVDEV_Poll()
288 … item->touchscreen_data->slots[item->touchscreen_data->current_slot].tracking_id = events[i].value; in SDL_EVDEV_Poll()
289 …item->touchscreen_data->slots[item->touchscreen_data->current_slot].delta = EVDEV_TOUCH_SLOTDELTA_… in SDL_EVDEV_Poll()
291 …item->touchscreen_data->slots[item->touchscreen_data->current_slot].delta = EVDEV_TOUCH_SLOTDELTA_… in SDL_EVDEV_Poll()
297 … item->touchscreen_data->slots[item->touchscreen_data->current_slot].x = events[i].value; in SDL_EVDEV_Poll()
298 …if (item->touchscreen_data->slots[item->touchscreen_data->current_slot].delta == EVDEV_TOUCH_SLOTD… in SDL_EVDEV_Poll()
299 …item->touchscreen_data->slots[item->touchscreen_data->current_slot].delta = EVDEV_TOUCH_SLOTDELTA_… in SDL_EVDEV_Poll()
305 … item->touchscreen_data->slots[item->touchscreen_data->current_slot].y = events[i].value; in SDL_EVDEV_Poll()
307 …item->touchscreen_data->slots[item->touchscreen_data->current_slot].delta = EVDEV_TOUCH_SLOTDELTA_… in SDL_EVDEV_Poll()
[all …]
/dports/graphics/urho3d/Urho3D-1.7.1/Source/ThirdParty/SDL/src/core/linux/
H A DSDL_evdev.c79 int current_slot; member
282 item->touchscreen_data->current_slot = events[i].value; in SDL_EVDEV_Poll()
288 … item->touchscreen_data->slots[item->touchscreen_data->current_slot].tracking_id = events[i].value; in SDL_EVDEV_Poll()
289 …item->touchscreen_data->slots[item->touchscreen_data->current_slot].delta = EVDEV_TOUCH_SLOTDELTA_… in SDL_EVDEV_Poll()
291 …item->touchscreen_data->slots[item->touchscreen_data->current_slot].delta = EVDEV_TOUCH_SLOTDELTA_… in SDL_EVDEV_Poll()
297 … item->touchscreen_data->slots[item->touchscreen_data->current_slot].x = events[i].value; in SDL_EVDEV_Poll()
298 …if (item->touchscreen_data->slots[item->touchscreen_data->current_slot].delta == EVDEV_TOUCH_SLOTD… in SDL_EVDEV_Poll()
299 …item->touchscreen_data->slots[item->touchscreen_data->current_slot].delta = EVDEV_TOUCH_SLOTDELTA_… in SDL_EVDEV_Poll()
305 … item->touchscreen_data->slots[item->touchscreen_data->current_slot].y = events[i].value; in SDL_EVDEV_Poll()
307 …item->touchscreen_data->slots[item->touchscreen_data->current_slot].delta = EVDEV_TOUCH_SLOTDELTA_… in SDL_EVDEV_Poll()
[all …]
/dports/print/gutenprint/gutenprint-5.3.3/test/
H A Descp2-weavetest.c141 int *current_slot; in run_one_weavetest() local
206 current_slot = stp_malloc(sizeof(int) * vmod); in run_one_weavetest()
211 memset(current_slot, 0, (sizeof(int) * vmod)); in run_one_weavetest()
219 current_slot[i] = -1; in run_one_weavetest()
268 errcodes[13] = (current_slot[w.pass % vmod] != -1 && in run_one_weavetest()
269 current_slot[w.pass % vmod] != w.pass ? in run_one_weavetest()
293 current_slot[w.pass % vmod] = -1; in run_one_weavetest()
298 current_slot[w.pass % vmod] = w.pass; in run_one_weavetest()
352 stp_free(current_slot); in run_one_weavetest()
/dports/print/gimp-gutenprint/gutenprint-5.3.3/test/
H A Descp2-weavetest.c141 int *current_slot; in run_one_weavetest() local
206 current_slot = stp_malloc(sizeof(int) * vmod); in run_one_weavetest()
211 memset(current_slot, 0, (sizeof(int) * vmod)); in run_one_weavetest()
219 current_slot[i] = -1; in run_one_weavetest()
268 errcodes[13] = (current_slot[w.pass % vmod] != -1 && in run_one_weavetest()
269 current_slot[w.pass % vmod] != w.pass ? in run_one_weavetest()
293 current_slot[w.pass % vmod] = -1; in run_one_weavetest()
298 current_slot[w.pass % vmod] = w.pass; in run_one_weavetest()
352 stp_free(current_slot); in run_one_weavetest()
/dports/emulators/mess/mame-mame0226/3rdparty/SDL2/src/core/linux/
H A DSDL_evdev.c79 int current_slot; member
457 item->touchscreen_data->current_slot = events[i].value; in SDL_EVDEV_Poll()
463 … item->touchscreen_data->slots[item->touchscreen_data->current_slot].tracking_id = events[i].value; in SDL_EVDEV_Poll()
464 …item->touchscreen_data->slots[item->touchscreen_data->current_slot].delta = EVDEV_TOUCH_SLOTDELTA_… in SDL_EVDEV_Poll()
466 …item->touchscreen_data->slots[item->touchscreen_data->current_slot].delta = EVDEV_TOUCH_SLOTDELTA_… in SDL_EVDEV_Poll()
472 … item->touchscreen_data->slots[item->touchscreen_data->current_slot].x = events[i].value; in SDL_EVDEV_Poll()
473 …if (item->touchscreen_data->slots[item->touchscreen_data->current_slot].delta == EVDEV_TOUCH_SLOTD… in SDL_EVDEV_Poll()
474 …item->touchscreen_data->slots[item->touchscreen_data->current_slot].delta = EVDEV_TOUCH_SLOTDELTA_… in SDL_EVDEV_Poll()
480 … item->touchscreen_data->slots[item->touchscreen_data->current_slot].y = events[i].value; in SDL_EVDEV_Poll()
482 …item->touchscreen_data->slots[item->touchscreen_data->current_slot].delta = EVDEV_TOUCH_SLOTDELTA_… in SDL_EVDEV_Poll()
[all …]
/dports/emulators/mame/mame-mame0226/3rdparty/SDL2/src/core/linux/
H A DSDL_evdev.c79 int current_slot; member
457 item->touchscreen_data->current_slot = events[i].value; in SDL_EVDEV_Poll()
463 … item->touchscreen_data->slots[item->touchscreen_data->current_slot].tracking_id = events[i].value; in SDL_EVDEV_Poll()
464 …item->touchscreen_data->slots[item->touchscreen_data->current_slot].delta = EVDEV_TOUCH_SLOTDELTA_… in SDL_EVDEV_Poll()
466 …item->touchscreen_data->slots[item->touchscreen_data->current_slot].delta = EVDEV_TOUCH_SLOTDELTA_… in SDL_EVDEV_Poll()
472 … item->touchscreen_data->slots[item->touchscreen_data->current_slot].x = events[i].value; in SDL_EVDEV_Poll()
473 …if (item->touchscreen_data->slots[item->touchscreen_data->current_slot].delta == EVDEV_TOUCH_SLOTD… in SDL_EVDEV_Poll()
474 …item->touchscreen_data->slots[item->touchscreen_data->current_slot].delta = EVDEV_TOUCH_SLOTDELTA_… in SDL_EVDEV_Poll()
480 … item->touchscreen_data->slots[item->touchscreen_data->current_slot].y = events[i].value; in SDL_EVDEV_Poll()
482 …item->touchscreen_data->slots[item->touchscreen_data->current_slot].delta = EVDEV_TOUCH_SLOTDELTA_… in SDL_EVDEV_Poll()
[all …]
/dports/games/flare-engine/flare-engine-1.12/src/
H A DMenuItemStorage.cpp42 , current_slot(NULL) in MenuItemStorage()
176 if (slots[i] == current_slot) { in click()
177 current_slot = NULL; in click()
187 current_slot = slots[drag_prev_slot]; in click()
194 current_slot = NULL; in click()
209 current_slot = NULL; in click()
/dports/www/squid/squid-4.15/lib/
H A Dhash.cc121 hid->current_slot = 0; in hash_create()
167 while (hid->next == NULL && ++hid->current_slot < hid->size) in hash_next_bucket()
168 hid->next = hid->buckets[hid->current_slot]; in hash_next_bucket()
179 hid->current_slot = 0; in hash_first()
180 hid->next = hid->buckets[hid->current_slot]; in hash_first()
212 hid->current_slot = 0; in hash_last()
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/net/wireless/broadcom/b43legacy/
H A Ddma.c170 ring->current_slot = slot; in request_slot()
690 ring->current_slot = -1; in b43legacy_setup_dmaring()
962 old_top_slot = ring->current_slot; in dma_tx_fragment()
976 ring->current_slot = old_top_slot; in dma_tx_fragment()
985 ring->current_slot = old_top_slot; in dma_tx_fragment()
1005 ring->current_slot = old_top_slot; in dma_tx_fragment()
1023 ring->current_slot = old_top_slot; in dma_tx_fragment()
1342 int current_slot; in b43legacy_dma_rx() local
1347 B43legacy_WARN_ON(!(current_slot >= 0 && current_slot < in b43legacy_dma_rx()
1350 slot = ring->current_slot; in b43legacy_dma_rx()
[all …]
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/net/wireless/broadcom/b43legacy/
H A Ddma.c170 ring->current_slot = slot; in request_slot()
690 ring->current_slot = -1; in b43legacy_setup_dmaring()
962 old_top_slot = ring->current_slot; in dma_tx_fragment()
976 ring->current_slot = old_top_slot; in dma_tx_fragment()
985 ring->current_slot = old_top_slot; in dma_tx_fragment()
1005 ring->current_slot = old_top_slot; in dma_tx_fragment()
1023 ring->current_slot = old_top_slot; in dma_tx_fragment()
1342 int current_slot; in b43legacy_dma_rx() local
1347 B43legacy_WARN_ON(!(current_slot >= 0 && current_slot < in b43legacy_dma_rx()
1350 slot = ring->current_slot; in b43legacy_dma_rx()
[all …]
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/net/wireless/broadcom/b43legacy/
H A Ddma.c170 ring->current_slot = slot; in request_slot()
690 ring->current_slot = -1; in b43legacy_setup_dmaring()
962 old_top_slot = ring->current_slot; in dma_tx_fragment()
976 ring->current_slot = old_top_slot; in dma_tx_fragment()
985 ring->current_slot = old_top_slot; in dma_tx_fragment()
1005 ring->current_slot = old_top_slot; in dma_tx_fragment()
1023 ring->current_slot = old_top_slot; in dma_tx_fragment()
1342 int current_slot; in b43legacy_dma_rx() local
1347 B43legacy_WARN_ON(!(current_slot >= 0 && current_slot < in b43legacy_dma_rx()
1350 slot = ring->current_slot; in b43legacy_dma_rx()
[all …]
/dports/sysutils/brasero/brasero-3.12.3/libbrasero-media/
H A Dscsi-mech-status.h41 uchar current_slot :5; member
62 uchar current_slot :5;
/dports/devel/android-tools-adb/platform_system_core-android-9.0.0_r3/fastboot/
H A Dfastboot.cpp949 std::string current_slot; in get_current_slot() local
950 if (fb_getvar(transport, "current-slot", &current_slot)) { in get_current_slot()
953 return current_slot; in get_current_slot()
998 char next = (current_slot[0] - 'a' + 1)%count + 'a'; in get_other_slot()
1059 std::string current_slot; in do_for_partition() local
1067 current_slot = get_current_slot(transport); in do_for_partition()
1068 if (current_slot == "") { in do_for_partition()
1071 func(part + "_" + current_slot); in do_for_partition()
1141 if (current_slot != "") { in set_active()
1142 fb_set_active(separator + current_slot); in set_active()
[all …]
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/net/wireless/broadcom/b43/
H A Ddma.c309 ring->current_slot = slot; in request_slot()
866 ring->current_slot = -1; in b43_setup_dmaring()
1209 old_top_slot = ring->current_slot; in dma_tx_fragment()
1222 ring->current_slot = old_top_slot; in dma_tx_fragment()
1230 ring->current_slot = old_top_slot; in dma_tx_fragment()
1252 ring->current_slot = old_top_slot; in dma_tx_fragment()
1670 int current_slot, previous_slot; in b43_dma_handle_rx_overflow() local
1690 int slot, current_slot; in b43_dma_rx() local
1695 B43_WARN_ON(!(current_slot >= 0 && current_slot < ring->nr_slots)); in b43_dma_rx()
1697 slot = ring->current_slot; in b43_dma_rx()
[all …]
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/net/wireless/broadcom/b43/
H A Ddma.c309 ring->current_slot = slot; in request_slot()
866 ring->current_slot = -1; in b43_setup_dmaring()
1209 old_top_slot = ring->current_slot; in dma_tx_fragment()
1222 ring->current_slot = old_top_slot; in dma_tx_fragment()
1230 ring->current_slot = old_top_slot; in dma_tx_fragment()
1252 ring->current_slot = old_top_slot; in dma_tx_fragment()
1670 int current_slot, previous_slot; in b43_dma_handle_rx_overflow() local
1690 int slot, current_slot; in b43_dma_rx() local
1695 B43_WARN_ON(!(current_slot >= 0 && current_slot < ring->nr_slots)); in b43_dma_rx()
1697 slot = ring->current_slot; in b43_dma_rx()
[all …]
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/net/wireless/broadcom/b43/
H A Ddma.c309 ring->current_slot = slot; in request_slot()
866 ring->current_slot = -1; in b43_setup_dmaring()
1209 old_top_slot = ring->current_slot; in dma_tx_fragment()
1222 ring->current_slot = old_top_slot; in dma_tx_fragment()
1230 ring->current_slot = old_top_slot; in dma_tx_fragment()
1252 ring->current_slot = old_top_slot; in dma_tx_fragment()
1670 int current_slot, previous_slot; in b43_dma_handle_rx_overflow() local
1690 int slot, current_slot; in b43_dma_rx() local
1695 B43_WARN_ON(!(current_slot >= 0 && current_slot < ring->nr_slots)); in b43_dma_rx()
1697 slot = ring->current_slot; in b43_dma_rx()
[all …]

123456789