| /xsrc/external/bsd/libuuid_ul/dist/ |
| H A D | pack.c | 40 uint32_t tmp; local in function:uuid_pack 43 tmp = uu->time_low; 44 out[3] = (unsigned char) tmp; 45 tmp >>= 8; 46 out[2] = (unsigned char) tmp; 47 tmp >>= 8; 48 out[1] = (unsigned char) tmp; 49 tmp >>= 8; 50 out[0] = (unsigned char) tmp; 52 tmp [all...] |
| H A D | unpack.c | 41 uint32_t tmp; local in function:uuid_unpack 43 tmp = *ptr++; 44 tmp = (tmp << 8) | *ptr++; 45 tmp = (tmp << 8) | *ptr++; 46 tmp = (tmp << 8) | *ptr++; 47 uu->time_low = tmp; 49 tmp [all...] |
| /xsrc/external/mit/libxkbfile/dist/src/ |
| H A D | xkbdraw.c | 45 XkbDrawablePtr tmp) 50 *pfirst = *plast = tmp; 52 else if (tmp->priority >= (*plast)->priority) { 53 (*plast)->next = tmp; 54 *plast = tmp; 56 else if (tmp->priority < (*pfirst)->priority) { 57 tmp->next = (*pfirst); 58 (*pfirst) = tmp; 62 while ((old->next) && (old->next->priority <= tmp->priority)) { 65 tmp 44 _XkbAddDrawable(XkbDrawablePtr * pfirst,XkbDrawablePtr * plast,XkbDrawablePtr tmp) argument 74 XkbDrawablePtr first, last, tmp; local in function:XkbGetOrderedDrawables 132 XkbDrawablePtr tmp; local in function:XkbFreeOrderedDrawables [all...] |
| /xsrc/external/mit/x11perf/dist/ |
| H A D | x11perfcomp.in | 28 tmp=`$MKTEMP -p /tmp -d rates.XXXXXX` 29 if [ "x$tmp" = "x" ]; then exit 1 ; fi 31 tmp=${TMPDIR-/tmp}/rates.$$ 32 mkdir $tmp || exit 1 34 trap "rm -rf $tmp" 0 1 2 15 35 mkdir $tmp/rates 52 -l) cp $2 $tmp/labels 61 done | tsort 2>/dev/null | sed 's/_/ /g' > $tmp/label [all...] |
| /xsrc/external/mit/libX11/dist/src/xcms/ |
| H A D | QBlack.c | 73 XcmsColor tmp; 75 tmp.format = XcmsRGBiFormat; 76 tmp.pixel = 0; 77 tmp.spec.RGBi.red = 0.0; 78 tmp.spec.RGBi.green = 0.0; 79 tmp.spec.RGBi.blue = 0.0; 80 if (XcmsConvertColors(ccc, &tmp, 1, target_format, NULL) != XcmsSuccess) { 83 memcpy((char *)pColor_ret, (char *)&tmp, sizeof(XcmsColor)); 72 XcmsColor tmp; local in function:XcmsQueryBlack
|
| H A D | QBlue.c | 73 XcmsColor tmp; 75 tmp.format = XcmsRGBiFormat; 76 tmp.pixel = 0; 77 tmp.spec.RGBi.red = 0.0; 78 tmp.spec.RGBi.green = 0.0; 79 tmp.spec.RGBi.blue = 1.0; 80 if (XcmsConvertColors(ccc, &tmp, 1, target_format, NULL) != XcmsSuccess) { 83 memcpy((char *)pColor_ret, (char *)&tmp, sizeof(XcmsColor)); 72 XcmsColor tmp; local in function:XcmsQueryBlue
|
| H A D | QGreen.c | 73 XcmsColor tmp; 75 tmp.format = XcmsRGBiFormat; 76 tmp.pixel = 0; 77 tmp.spec.RGBi.red = 0.0; 78 tmp.spec.RGBi.green = 1.0; 79 tmp.spec.RGBi.blue = 0.0; 80 if (XcmsConvertColors(ccc, &tmp, 1, target_format, NULL) != XcmsSuccess) { 83 memcpy((char *)pColor_ret, (char *)&tmp, sizeof(XcmsColor)); 72 XcmsColor tmp; local in function:XcmsQueryGreen
|
| H A D | QRed.c | 73 XcmsColor tmp; 75 tmp.format = XcmsRGBiFormat; 76 tmp.pixel = 0; 77 tmp.spec.RGBi.red = 1.0; 78 tmp.spec.RGBi.green = 0.0; 79 tmp.spec.RGBi.blue = 0.0; 80 if (XcmsConvertColors(ccc, &tmp, 1, target_format, NULL) != XcmsSuccess) { 83 memcpy((char *)pColor_ret, (char *)&tmp, sizeof(XcmsColor)); 72 XcmsColor tmp; local in function:XcmsQueryRed
|
| H A D | QWhite.c | 73 XcmsColor tmp; 75 tmp.format = XcmsRGBiFormat; 76 tmp.pixel = 0; 77 tmp.spec.RGBi.red = 1.0; 78 tmp.spec.RGBi.green = 1.0; 79 tmp.spec.RGBi.blue = 1.0; 80 if (XcmsConvertColors(ccc, &tmp, 1, target_format, NULL) != XcmsSuccess) { 83 memcpy((char *)pColor_ret, (char *)&tmp, sizeof(XcmsColor)); 72 XcmsColor tmp; local in function:XcmsQueryWhite
|
| H A D | HVCMnV.c | 102 XcmsColor tmp; 124 tmp.spec.TekHVC.H = hue; 125 tmp.spec.TekHVC.V = 100.0; 126 tmp.spec.TekHVC.C = chroma; 127 tmp.pixel = pColor_return->pixel; 128 tmp.format = XcmsTekHVCFormat; 132 if (!_XcmsTekHVC_CheckModify (&tmp)) { 138 memcpy((char *)&max_vc, (char *)&tmp, sizeof(XcmsColor)); 145 if (tmp.spec.TekHVC.C > max_vc.spec.TekHVC.C + EPS) { 147 tmp 101 XcmsColor tmp; local in function:XcmsTekHVCQueryMinV [all...] |
| H A D | LabMxC.c | 91 XcmsColor tmp; 118 tmp.spec.CIELab.L_star = L_star; 119 tmp.spec.CIELab.a_star = XCMS_CIEASTAROFHUE(hue, START_CHROMA); 120 tmp.spec.CIELab.b_star = XCMS_CIEBSTAROFHUE(hue, START_CHROMA); 121 tmp.pixel = pColor_return->pixel; 122 tmp.format = XcmsCIELabFormat; 125 memcpy((char *)&max_lc, (char *)&tmp, sizeof(XcmsColor)); 149 last_L_star = tmp.spec.CIELab.L_star; 150 /* lastChroma = XCMS_CIELAB_PMETRIC_CHROMA(tmp.spec.CIELab.a_star, */ 151 /* tmp 90 XcmsColor tmp; local in function:XcmsCIELabQueryMaxC [all...] |
| H A D | LuvMxC.c | 91 XcmsColor tmp; 118 tmp.spec.CIELuv.L_star = L_star; 119 tmp.spec.CIELuv.u_star = XCMS_CIEUSTAROFHUE(hue, START_CHROMA); 120 tmp.spec.CIELuv.v_star = XCMS_CIEVSTAROFHUE(hue, START_CHROMA); 121 tmp.pixel = pColor_return->pixel; 122 tmp.format = XcmsCIELuvFormat; 125 memcpy((char *)&max_lc, (char *)&tmp, sizeof(XcmsColor)); 149 last_L_star = tmp.spec.CIELuv.L_star; 150 /* lastChroma = XCMS_CIELUV_PMETRIC_CHROMA(tmp.spec.CIELuv.u_star, */ 151 /* tmp 90 XcmsColor tmp; local in function:XcmsCIELuvQueryMaxC [all...] |
| H A D | HVCMxV.c | 98 XcmsColor tmp; 125 tmp.spec.TekHVC.H = hue; 126 tmp.spec.TekHVC.V = 0.0; 127 tmp.spec.TekHVC.C = chroma; 128 tmp.pixel = pColor_return->pixel; 129 tmp.format = XcmsTekHVCFormat; 131 if (!_XcmsTekHVC_CheckModify (&tmp)) { 137 memcpy((char *)&max_vc, (char *)&tmp, sizeof(XcmsColor)); 144 if (max_vc.spec.TekHVC.C < tmp.spec.TekHVC.C) { 152 tmp 97 XcmsColor tmp; local in function:XcmsTekHVCQueryMaxV [all...] |
| H A D | HVCMxVC.c | 109 XcmsColor tmp; 111 tmp.format = XcmsTekHVCFormat; 112 tmp.spec.TekHVC.H = hue; 114 tmp.spec.TekHVC.V = START_V; 115 tmp.spec.TekHVC.C = START_C; 122 * out of bounds RGBi values in tmp when the ccc->gamutCompProc 125 if ((_XcmsConvertColorsWithWhitePt(ccc, &tmp, 127 == XcmsFailure) && tmp.format != XcmsRGBiFormat) { 132 nSmall = MIN3(tmp.spec.RGBi.red, 133 tmp 108 XcmsColor tmp; local in function:_XcmsTekHVCQueryMaxVCRGB [all...] |
| H A D | LabMxLC.c | 103 XcmsColor tmp; 105 tmp.format = XcmsCIELabFormat; 107 tmp.spec.CIELab.L_star = START_LSTAR; 108 tmp.spec.CIELab.a_star = XCMS_CIEASTAROFHUE(hue, START_CHROMA); 109 tmp.spec.CIELab.b_star = XCMS_CIEBSTAROFHUE(hue, START_CHROMA); 114 * out of bounds RGBi values in tmp when the ccc->gamutCompProc 117 if ((_XcmsConvertColorsWithWhitePt(ccc, &tmp, ScreenWhitePointOfCCC(ccc), 119 == XcmsFailure) && tmp.format != XcmsRGBiFormat) { 124 nSmall = MIN3(tmp.spec.RGBi.red, 125 tmp 102 XcmsColor tmp; local in function:_XcmsCIELabQueryMaxLCRGB [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/intel/genxml/ |
| H A D | sort_xml.sh | 5 python ./gen_sort_tags.py $i > $i.tmp 6 mv $i.tmp $i
|
| /xsrc/external/mit/ctwm/dist/ |
| H A D | ctwm_shutdown.c | 42 RestoreWinConfig(TwmWindow *tmp) argument 49 const int borders = tmp->frame_bw + tmp->frame_bw3D - tmp->old_bw; 53 if(tmp->UnmapByMovingFarAway && !visible(tmp)) { 54 XMoveWindow(dpy, tmp->frame, tmp->frame_x, tmp->frame_y); 58 if(tmp [all...] |
| H A D | iconmgr.c | 408 WList *tmp = NULL; local in function:MoveIconManager 427 if((tmp = Current->next) == NULL) { 428 tmp = ip->first; 434 if((tmp = Current->prev) == NULL) { 435 tmp = ip->last; 483 for(tmp = ip->first; tmp != NULL; tmp = tmp->next) { 484 if(tmp 540 WList *tmp = NULL; local in function:MoveMappedIconManager 699 WList *tmp, *old; local in function:AddIconManager 904 InsertInIconManager(IconMgr * ip,WList * tmp,TwmWindow * tmp_win) argument 948 RemoveFromIconManager(IconMgr * ip,WList * tmp) argument 985 WList *tmp, *tmp1, *save; local in function:RemoveIconManager 1050 DrawIconManagerBorder(WList * tmp,bool fill) argument 1148 WList *tmp; local in function:PackIconManager [all...] |
| /xsrc/external/mit/xorg-server.old/dist/hw/dmx/examples/ |
| H A D | ev.c | 58 char *tmp; local in function:main 128 case REL_X: tmp = "X"; break; 129 case REL_Y: tmp = "Y"; break; 130 case REL_HWHEEL: tmp = "HWHEEL"; break; 131 case REL_DIAL: tmp = "DIAL"; break; 132 case REL_WHEEL: tmp = "WHEEL"; break; 133 case REL_MISC: tmp = "MISC"; break; 134 default: tmp = "UNKNOWN"; break; 136 printf("Relative %s %d", tmp, event.value); 140 case ABS_X: tmp [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/panfrost/ci/ |
| H A D | deqp-runner.sh | 8 export XDG_RUNTIME_DIR=/tmp 20 ./deqp-gles2 --deqp-runmode=stdout-caselist | grep dEQP-GLES2 | cut -d ' ' -f 2 > /tmp/case-list.txt 23 sed -i '/dEQP-GLES2.performance/d' /tmp/case-list.txt 24 sed -i '/dEQP-GLES2.functional.texture.filtering.2d.linear_mipmap_linear_/d' /tmp/case-list.txt 25 sed -i '/dEQP-GLES2.functional.texture.filtering.cube.linear_mipmap_linear_/d' /tmp/case-list.txt 26 sed -i '/dEQP-GLES2.functional.texture.filtering.cube.linear_mipmap_nearest_/d' /tmp/case-list.txt 29 touch /tmp/result.txt 30 tail -f /tmp/result.txt & 32 while [ -s /tmp/case-list.txt ]; do 33 head -$BATCH_SIZE /tmp/cas [all...] |
| /xsrc/external/mit/MesaLib.old/src/util/ |
| H A D | Makefile | 9 ${PYTHON} ${SCRIPT} > $@.tmp && mv $@.tmp $@
|
| /xsrc/external/mit/xf86-video-ati/dist/src/ |
| H A D | radeon_pm.c | 83 uint32_t tmp; local in function:RADEONSetEngineClock 88 tmp = INPLL(pScrn, RADEON_M_SPLL_REF_FB_DIV); 89 ref_div = tmp & RADEON_M_SPLL_REF_DIV_MASK; 93 tmp = INPLL(pScrn, RADEON_CLK_PIN_CNTL); 94 tmp &= ~RADEON_DONT_USE_XTALIN; 95 OUTPLL(pScrn, RADEON_CLK_PIN_CNTL, tmp); 97 tmp = INPLL(pScrn, RADEON_SCLK_CNTL); 98 tmp &= ~RADEON_SCLK_SRC_SEL_MASK; 99 OUTPLL(pScrn, RADEON_SCLK_CNTL, tmp); 103 tmp 175 uint32_t tmp; local in function:LegacySetClockGating 594 uint32_t tmp; local in function:RADEONPMQuirks [all...] |
| /xsrc/external/mit/xf86-video-mga/dist/util/ |
| H A D | stormdwg.c | 95 unsigned long val, tmp; local in function:main 109 tmp = val & 0x0f; 111 printf("opcode: %s\n", opcodes[tmp]); 113 tmp = ( val >> 4 ) & 0x7; 115 printf("atype: %s\n", atype[tmp]); 123 tmp = ( val >> 8 ) & 7; 125 printf("zmode: %s\n", zmode[tmp]); 151 tmp = (val>>16) & 0x0f; 153 if ( ((val >> 4) & 7) == 4 && tmp != 0x0c ) 156 printf("bop = %s, where ~ = bitwise complement, ^ = xor\n", bop[tmp]); [all...] |
| /xsrc/external/mit/twm/dist/src/ |
| H A D | iconmgr.c | 45 static void InsertInIconManager(IconMgr *ip, WList *tmp, TwmWindow *tmp_win); 174 WList *tmp = NULL; local in function:MoveIconManager 192 if ((tmp = Active->next) == NULL) 193 tmp = ip->first; 198 if ((tmp = Active->prev) == NULL) 199 tmp = ip->last; 242 for (tmp = ip->first; tmp != NULL; tmp = tmp 353 WList *tmp; local in function:AddIconManager 458 InsertInIconManager(IconMgr * ip,WList * tmp,TwmWindow * tmp_win) argument 496 RemoveFromIconManager(IconMgr * ip,WList * tmp) argument 517 WList *tmp; local in function:RemoveIconManager 563 DrawIconManagerBorder(WList * tmp) argument 631 WList *tmp; local in function:PackIconManager [all...] |
| /xsrc/external/mit/MesaLib/dist/src/util/ |
| H A D | mesa-sha1.c | 60 char tmp[3]; local in function:_mesa_sha1_hex_to_sha1 61 tmp[0] = hex[i * 2]; 62 tmp[1] = hex[(i * 2) + 1]; 63 tmp[2] = '\0'; 64 buf[i] = strtol(tmp, NULL, 16);
|