Home
last modified time | relevance | path

Searched refs:aptr (Results 1 – 13 of 13) sorted by relevance

/OK3568_Linux_fs/external/xserver/hw/xfree86/parser/
H A DLayout.c135 XF86ConfAdjacencyPtr aptr; in xf86parseLayoutSection() local
138 aptr = calloc(1, sizeof(XF86ConfAdjacencyRec)); in xf86parseLayoutSection()
139 aptr->list.next = NULL; in xf86parseLayoutSection()
140 aptr->adj_scrnum = -1; in xf86parseLayoutSection()
141 aptr->adj_where = CONF_ADJ_OBSOLETE; in xf86parseLayoutSection()
142 aptr->adj_x = 0; in xf86parseLayoutSection()
143 aptr->adj_y = 0; in xf86parseLayoutSection()
144 aptr->adj_refscreen = NULL; in xf86parseLayoutSection()
146 aptr->adj_scrnum = xf86_lex_val.num; in xf86parseLayoutSection()
151 free(aptr); in xf86parseLayoutSection()
[all …]
H A DScreen.c315 XF86ConfAdaptorLinkPtr aptr; in xf86parseScreenSection() local
321 for (aptr = ptr->scrn_adaptor_lst; aptr; in xf86parseScreenSection()
322 aptr = (XF86ConfAdaptorLinkPtr) aptr->list.next) in xf86parseScreenSection()
323 if (xf86nameCompare(xf86_lex_val.str, aptr->al_adaptor_str) == 0) in xf86parseScreenSection()
326 if (aptr == NULL) { in xf86parseScreenSection()
327 aptr = calloc(1, sizeof(XF86ConfAdaptorLinkRec)); in xf86parseScreenSection()
328 aptr->list.next = NULL; in xf86parseScreenSection()
329 aptr->al_adaptor_str = xf86_lex_val.str; in xf86parseScreenSection()
331 xf86addListItem((glp) ptr->scrn_adaptor_lst, (glp) aptr); in xf86parseScreenSection()
377 XF86ConfAdaptorLinkPtr aptr; in xf86printScreenSection() local
[all …]
/OK3568_Linux_fs/external/xserver/hw/xfree86/common/
H A Dxf86Configure.c362 XF86ConfAdjacencyPtr aptr; in configureLayoutSection() local
365 aptr = malloc(sizeof(XF86ConfAdjacencyRec)); in configureLayoutSection()
366 aptr->list.next = NULL; in configureLayoutSection()
367 aptr->adj_x = 0; in configureLayoutSection()
368 aptr->adj_y = 0; in configureLayoutSection()
369 aptr->adj_scrnum = scrnum; in configureLayoutSection()
371 aptr->adj_screen_str = tmp; in configureLayoutSection()
373 aptr->adj_where = CONF_ADJ_ABSOLUTE; in configureLayoutSection()
374 aptr->adj_refscreen = NULL; in configureLayoutSection()
377 aptr->adj_where = CONF_ADJ_RIGHTOF; in configureLayoutSection()
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/
H A Dobstack.h343 # define obstack_ptr_grow_fast(OBSTACK, aptr) \ argument
347 *(const void **) __p1 = (aptr); \
466 # define obstack_ptr_grow_fast(h, aptr) \ argument
467 (((const void **) ((h)->next_free += sizeof (void *)))[-1] = (aptr))
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/plugin/include/
H A Dobstack.h359 # define obstack_ptr_grow_fast(OBSTACK, aptr) \ argument
363 *(const void **) __p1 = (aptr); \
485 # define obstack_ptr_grow_fast(h, aptr) \ argument
486 (((const void **) ((h)->next_free += sizeof (void *)))[-1] = (aptr), \
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/lib/gcc/aarch64-none-linux-gnu/10.3.1/plugin/include/
H A Dobstack.h359 # define obstack_ptr_grow_fast(OBSTACK, aptr) \ argument
363 *(const void **) __p1 = (aptr); \
485 # define obstack_ptr_grow_fast(h, aptr) \ argument
486 (((const void **) ((h)->next_free += sizeof (void *)))[-1] = (aptr), \
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/
H A Dobstack.h343 # define obstack_ptr_grow_fast(OBSTACK, aptr) \ argument
347 *(const void **) __p1 = (aptr); \
466 # define obstack_ptr_grow_fast(h, aptr) \ argument
467 (((const void **) ((h)->next_free += sizeof (void *)))[-1] = (aptr))
/OK3568_Linux_fs/yocto/poky/meta/recipes-support/curl/curl/
H A DCVE-2022-27774-2.patch74 + Curl_safefree(data->state.aptr.user);
75 + Curl_safefree(data->state.aptr.passwd);
H A DCVE-2022-27776.patch86 Curl_safefree(data->state.aptr.host);
/OK3568_Linux_fs/buildroot/dl/rtmpdump/git/librtmp/
H A Drtmp.c724 AVal *aptr = v; in RTMP_SetOpt() local
725 *aptr = *arg; } in RTMP_SetOpt()
2561 AVal user, salt, opaque, challenge, *aptr = NULL; in PublisherAuth() local
2577 if (aptr) { in PublisherAuth()
2578 aptr->av_len = par - aptr->av_val - 1; in PublisherAuth()
2579 aptr = NULL; in PublisherAuth()
2583 aptr = &user; in PublisherAuth()
2586 aptr = &salt; in PublisherAuth()
2589 aptr = &opaque; in PublisherAuth()
2592 aptr = &challenge; in PublisherAuth()
[all …]
/OK3568_Linux_fs/kernel/sound/core/oss/
H A Dpcm_plugin.h26 void *aptr; /* pointer to the allocated area */ member
/OK3568_Linux_fs/kernel/sound/soc/codecs/
H A Dhdac_hdmi.c1687 static int hdac_hdmi_pin2port(void *aptr, int pin) in hdac_hdmi_pin2port() argument
1692 static void hdac_hdmi_eld_notify_cb(void *aptr, int port, int pipe) in hdac_hdmi_eld_notify_cb() argument
1694 struct hdac_device *hdev = aptr; in hdac_hdmi_eld_notify_cb()
/OK3568_Linux_fs/kernel/drivers/net/ethernet/netronome/nfp/nfpcore/
H A Dnfp6000_pcie.c514 static int bar_cmp(const void *aptr, const void *bptr) in bar_cmp() argument
516 const struct nfp_bar *a = aptr, *b = bptr; in bar_cmp()