Home
last modified time | relevance | path

Searched refs:pos (Results 1 – 12 of 12) sorted by relevance

/buildroot/support/kconfig/
A Dlist.h49 #define list_for_each_entry(pos, head, member) \ argument
50 for (pos = list_entry((head)->next, typeof(*pos), member); \
51 &pos->member != (head); \
52 pos = list_entry(pos->member.next, typeof(*pos), member))
61 #define list_for_each_entry_safe(pos, n, head, member) \ argument
62 for (pos = list_entry((head)->next, typeof(*pos), member), \
63 n = list_entry(pos->member.next, typeof(*pos), member); \
64 &pos->member != (head); \
65 pos = n, n = list_entry(n->member.next, typeof(*n), member))
A Dmconf.c325 for (pos = subtitles; pos != NULL; pos = tmp) { in set_subtitle()
326 tmp = pos->next; in set_subtitle()
327 free(pos); in set_subtitle()
333 if (pos) { in set_subtitle()
334 pos->next = xcalloc(1, sizeof(*pos)); in set_subtitle()
335 pos = pos->next; in set_subtitle()
337 subtitles = pos = xcalloc(1, sizeof(*pos)); in set_subtitle()
350 for (pos = subtitles; pos != NULL; pos = tmp) { in reset_subtitle()
352 free(pos); in reset_subtitle()
371 if (pos->offset >= start && pos->offset < end) { in update_text()
[all …]
A Dqconf.cc779 QPoint p = e->pos(); in mouseReleaseEvent()
840 QPoint p = e->pos(); // TODO: Check if this works(was contentsToViewport). in mouseDoubleClickEvent()
1234 QMenu* ConfigInfoView::createStandardContextMenu(const QPoint & pos) in createStandardContextMenu() argument
1236 QMenu* popup = Parent::createStandardContextMenu(pos); in createStandardContextMenu()
1311 configSettings->setValue("/window x", pos().x()); in saveSettings()
1312 configSettings->setValue("/window y", pos().y()); in saveSettings()
1775 configSettings->setValue("/window x", pos().x()); in saveSettings()
1776 configSettings->setValue("/window y", pos().y()); in saveSettings()
A Dqconf.h263 QMenu *createStandardContextMenu(const QPoint & pos);
/buildroot/board/radxa/rock5b/patches/linux/
A D0002-mm-page_alloc-fix-building-error-on-Werror-array-com.patch12 8173 | if (start <= pos && pos < end && size > adj) \
34 #define adj_init_size(start, end, size, pos, adj) \
36 - if (start <= pos && pos < end && size > adj) \
37 + if (&start[0] <= &pos[0] && &pos[0] < &end[0] && size > adj) \
/buildroot/support/kconfig/lxdialog/
A Dinputbox.c49 int show_x, len, pos; in dialog_inputbox() local
102 pos = len; in dialog_inputbox()
130 if (pos) { in dialog_inputbox()
137 if (pos < len) { in dialog_inputbox()
143 pos--; in dialog_inputbox()
159 if (pos > 0) { in dialog_inputbox()
174 pos--; in dialog_inputbox()
178 if (pos < len) { in dialog_inputbox()
193 pos++; in dialog_inputbox()
200 if (pos < len) { in dialog_inputbox()
[all …]
A Dutil.c266 struct subtitle_list *pos; in dialog_clear() local
271 for (pos = dlg.subtitles; pos != NULL; pos = pos->next) { in dialog_clear()
273 len += strlen(pos->text) + 3; in dialog_clear()
283 for (pos = dlg.subtitles; pos != NULL; pos = pos->next) { in dialog_clear()
294 if (skip < strlen(pos->text)) { in dialog_clear()
295 waddstr(stdscr, pos->text + skip); in dialog_clear()
298 skip -= strlen(pos->text); in dialog_clear()
/buildroot/package/patchelf/
A D0001-Add-option-to-make-the-rpath-relative-under-a-specif.patch86 + size_t pos;
90 + pos = p.find_first_of('/', 1);
91 + if (refP.find_first_of('/', 1) != pos)
93 + if (p.substr(0, pos) != refP.substr(0, pos))
95 + if (pos == std::string::npos)
97 + p = p.substr(pos);
98 + refP = refP.substr(pos);
102 + pos = 0;
103 + while (pos != std::string::npos) {
104 + pos =refP.find_first_of('/', pos + 1);
/buildroot/package/pdmenu/
A D0002-Makefile-autoconf-makeinfo.in-support-build-install-.patch34 +INSTALL_TARGETS += install-pos
58 +install-pos:
/buildroot/package/udpcast/
A D0001-fix-musl-build.patch7 348 | ptrdiff_t pos = slice - clst->slices;
/buildroot/package/hostapd/
A D0001-use-a-less-generic-name-for-IEEE802.11-CRC-32-routin.patch32 os_memcpy(ssid->ssid, pos, ssid->ssid_len);
47 bss->ssid.utf8_ssid = atoi(pos) > 0;
/buildroot/package/libmodplug/
A D0001-fix-cctype-ub.patch91 @@ -823,7 +823,7 @@ static ABCTRACK *abc_locate_track(ABCHANDLE *h, const char *voice, int pos)

Completed in 35 milliseconds