| /xsrc/external/mit/MesaLib/dist/src/compiler/nir/ |
| nir_worklist.h | 107 nir_instr_worklist *wl = malloc(sizeof(nir_instr_worklist)); local 108 if (!wl) 111 if (!u_vector_init_pow2(&wl->instr_vec, 8, sizeof(struct nir_instr *))) { 112 free(wl); 116 return wl; 120 nir_instr_worklist_length(nir_instr_worklist *wl) 122 return u_vector_length(&wl->instr_vec); 126 nir_instr_worklist_is_empty(nir_instr_worklist *wl) 128 return nir_instr_worklist_length(wl) == 0; 132 nir_instr_worklist_destroy(nir_instr_worklist *wl) [all...] |
| nir_worklist.c | 143 nir_instr_worklist *wl = state; local 146 nir_instr_worklist_push_tail(wl, src->ssa->parent_instr); 152 nir_instr_worklist_add_ssa_srcs(nir_instr_worklist *wl, nir_instr *instr) 154 nir_foreach_src(instr, nir_instr_worklist_add_srcs_cb, wl);
|
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/nir/ |
| nir_worklist.h | 107 nir_instr_worklist *wl = malloc(sizeof(nir_instr_worklist)); local 108 if (!wl) 111 if (!u_vector_init(&wl->instr_vec, sizeof(struct nir_instr *), 113 free(wl); 117 return wl; 121 nir_instr_worklist_length(nir_instr_worklist *wl) 123 return u_vector_length(&wl->instr_vec); 127 nir_instr_worklist_empty(nir_instr_worklist *wl) 129 return nir_instr_worklist_length(wl) == 0; 133 nir_instr_worklist_destroy(nir_instr_worklist *wl) [all...] |
| nir_opt_dce.c | 34 mark_and_push(nir_instr_worklist *wl, nir_instr *instr) 36 nir_instr_worklist_push_tail(wl, instr);
|
| /xsrc/external/mit/ctwm/dist/client/ |
| demolib.c | 18 char **wlist, **wl, **occupation; local 43 wl = wlist; 44 while(*wl) { 45 printf("\"%s\" ", *wl++); 74 wl = wlist; 75 while(*wl) { 76 printf("\"%s\" ", *wl++);
|
| /xsrc/external/mit/ctwm/dist/ |
| workspace_manager.c | 642 for(WinList *wl = msw->wl; wl != NULL; wl = wl->next) { 643 TwmWindow *tmp_win = wl->twm_win; 644 wl->x = (int)(tmp_win->frame_x * wf); 645 wl->y = (int)(tmp_win->frame_y * hf); 646 wl->width = (unsigned int)((tmp_win->frame_width * wf) + 0.5); 647 wl->height = (unsigned int)((tmp_win->frame_height * hf) + 0.5) 740 WinList *wl; local 952 WinList *wl; local 1667 WinList *wl; local 1739 WinList *wl; local 1886 WinList *wl; local 1977 WinList *wl; local 2145 WinList *wl; local [all...] |
| functions_icmgr_wsmgr.c | 77 WorkSpace *wl; local 92 for(wl = Scr->workSpaceMgr.workSpaceList; wl != NULL; wl = wl->next) { 93 for(i = wl->iconmgr; i != NULL; i = i->next) { 140 WorkSpace *wl; local 146 for(wl = Scr->workSpaceMgr.workSpaceList; wl != NULL; wl = wl->next) [all...] |
| win_regions.c | 18 static WindowEntry *findWindowEntry(WorkSpace *wl, 70 WorkSpace *wl; local 72 for(wl = Scr->workSpaceMgr.workSpaceList; wl != NULL; wl = wl->next) { 73 wl->FirstWindowRegion = NULL; 87 wl->FirstWindowRegion = wr1; 112 WorkSpace *wl; local 117 for(wl = Scr->workSpaceMgr.workSpaceList; wl != NULL; wl = wl->next) 168 WorkSpace *wl; local [all...] |
| workspace_utils.c | 48 WList *wl, *wl1; local 157 wl = twmWin->iconmanagerlist; 158 if(wl == NULL) { 161 if(OCCUPY(wl->iconmgr->twm_win, newws)) { 164 wl1 = wl; 165 wl = wl->nextv; 166 while(wl != NULL) { 167 if(OCCUPY(wl->iconmgr->twm_win, newws)) { 170 wl1 = wl; [all...] |
| win_iconify.c | 50 WList *wl; local 79 for(wl = tmp_win->iconmanagerlist; wl != NULL; wl = wl->nextv) { 80 XMapWindow(dpy, wl->icon); 521 WList *wl; local 523 for(wl = t->iconmanagerlist; wl != NULL; wl = wl->nextv) [all...] |
| workspace_manager.h | 36 void WMapRedrawName(VirtualScreen *vs, WinList *wl);
|
| workspace_structs.h | 81 WinList *wl; member in struct:MapSubwindow
|
| /xsrc/external/mit/fontconfig/dist/ |
| config.rpath | 52 wl= 54 wl='-Wl,' 58 wl='-Wl,' 63 wl='-Wl,' 66 wl='-Wl,' 71 wl='-Wl, [all...] |
| /xsrc/external/mit/xwininfo/dist/ |
| config.rpath | 52 wl= 54 wl='-Wl,' 58 wl='-Wl,' 63 wl='-Wl,' 66 wl='-Wl,' 71 wl='-Wl, [all...] |
| /xsrc/external/mit/xclock/dist/ |
| config.rpath | 52 wl= 54 wl='-Wl,' 58 wl='-Wl,' 63 wl='-Wl,' 70 wl='-Wl,' 73 wl='-Wl, [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/radeonsi/ |
| si_nir_optim.c | 31 add_src_instr_to_worklist(nir_src *src, void *wl) 36 nir_instr_worklist_push_tail(wl, src->ssa->parent_instr);
|
| /xsrc/external/mit/xorg-server/dist/hw/xfree86/int10/ |
| xf86int10.h | 53 void (*wl) (xf86Int10InfoPtr, int, uint32_t); member in struct:_int10Mem 115 #define MEM_WL(name, addr, val) (*name->mem->wl)(name, addr, val)
|
| /xsrc/external/mit/xorg-server.old/dist/hw/xfree86/int10/ |
| xf86int10.h | 53 void(*wl)(xf86Int10InfoPtr, int, CARD32); member in struct:_int10Mem 115 #define MEM_WL(name, addr, val) (*name->mem->wl)(name, addr, val)
|
| /xsrc/external/mit/freetype/dist/builds/unix/ |
| ltmain.sh | 3757 -Wl,FLAG 6563 single_module=$wl-single_module 6869 func_append compiler_flags " $wl$qarg" 6871 func_append compile_command " $wl$qarg" 6872 func_append finalize_command " $wl$qarg" 7086 single_module=$wl-multi_module 7223 -Wl,*) 7224 func_stripname '-Wl,' '' "$arg" 7231 func_append arg " $wl$func_quote_for_eval_result" 7232 func_append compiler_flags " $wl$func_quote_for_eval_result [all...] |
| /xsrc/external/mit/glu/dist/ |
| ltmain.sh | 3804 -Wl,FLAG 6611 single_module=$wl-single_module 6917 func_append compiler_flags " $wl$qarg" 6919 func_append compile_command " $wl$qarg" 6920 func_append finalize_command " $wl$qarg" 7144 single_module=$wl-multi_module 7281 -Wl,*) 7282 func_stripname '-Wl,' '' "$arg" 7289 func_append arg " $wl$func_quote_for_eval_result" 7290 func_append compiler_flags " $wl$func_quote_for_eval_result [all...] |
| /xsrc/external/mit/libXfont/dist/ |
| ltmain.sh | 3757 -Wl,FLAG 6563 single_module=$wl-single_module 6869 func_append compiler_flags " $wl$qarg" 6871 func_append compile_command " $wl$qarg" 6872 func_append finalize_command " $wl$qarg" 7086 single_module=$wl-multi_module 7223 -Wl,*) 7224 func_stripname '-Wl,' '' "$arg" 7231 func_append arg " $wl$func_quote_for_eval_result" 7232 func_append compiler_flags " $wl$func_quote_for_eval_result [all...] |
| /xsrc/external/mit/libXxf86misc/dist/ |
| ltmain.sh | 3757 -Wl,FLAG 6563 single_module=$wl-single_module 6869 func_append compiler_flags " $wl$qarg" 6871 func_append compile_command " $wl$qarg" 6872 func_append finalize_command " $wl$qarg" 7086 single_module=$wl-multi_module 7223 -Wl,*) 7224 func_stripname '-Wl,' '' "$arg" 7231 func_append arg " $wl$func_quote_for_eval_result" 7232 func_append compiler_flags " $wl$func_quote_for_eval_result [all...] |
| /xsrc/external/mit/mesa-demos/dist/ |
| ltmain.sh | 3757 -Wl,FLAG 6563 single_module=$wl-single_module 6869 func_append compiler_flags " $wl$qarg" 6871 func_append compile_command " $wl$qarg" 6872 func_append finalize_command " $wl$qarg" 7086 single_module=$wl-multi_module 7223 -Wl,*) 7224 func_stripname '-Wl,' '' "$arg" 7231 func_append arg " $wl$func_quote_for_eval_result" 7232 func_append compiler_flags " $wl$func_quote_for_eval_result [all...] |
| /xsrc/external/mit/xf86-video-apm/dist/ |
| ltmain.sh | 3757 -Wl,FLAG 6563 single_module=$wl-single_module 6869 func_append compiler_flags " $wl$qarg" 6871 func_append compile_command " $wl$qarg" 6872 func_append finalize_command " $wl$qarg" 7086 single_module=$wl-multi_module 7223 -Wl,*) 7224 func_stripname '-Wl,' '' "$arg" 7231 func_append arg " $wl$func_quote_for_eval_result" 7232 func_append compiler_flags " $wl$func_quote_for_eval_result [all...] |
| /xsrc/external/mit/xf86-video-glint/dist/ |
| ltmain.sh | 3757 -Wl,FLAG 6563 single_module=$wl-single_module 6869 func_append compiler_flags " $wl$qarg" 6871 func_append compile_command " $wl$qarg" 6872 func_append finalize_command " $wl$qarg" 7086 single_module=$wl-multi_module 7223 -Wl,*) 7224 func_stripname '-Wl,' '' "$arg" 7231 func_append arg " $wl$func_quote_for_eval_result" 7232 func_append compiler_flags " $wl$func_quote_for_eval_result [all...] |