Searched refs:tmp (Results 1 - 25 of 2485) sorted by relevance

1234567891011>>

/xsrc/external/bsd/libuuid_ul/dist/
H A Dpack.c40 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 Dunpack.c41 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 Dxkbdraw.c45 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 Dx11perfcomp.in28 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 DQBlack.c73 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 DQBlue.c73 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 DQGreen.c73 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 DQRed.c73 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 DQWhite.c73 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 DHVCMnV.c102 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 DLabMxC.c91 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 DLuvMxC.c91 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 DHVCMxV.c98 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 DHVCMxVC.c109 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 DLabMxLC.c103 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 Dsort_xml.sh5 python ./gen_sort_tags.py $i > $i.tmp
6 mv $i.tmp $i
/xsrc/external/mit/ctwm/dist/
H A Dctwm_shutdown.c42 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 Diconmgr.c408 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 Dev.c58 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 Ddeqp-runner.sh8 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 DMakefile9 ${PYTHON} ${SCRIPT} > $@.tmp && mv $@.tmp $@
/xsrc/external/mit/xf86-video-ati/dist/src/
H A Dradeon_pm.c83 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 Dstormdwg.c95 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 Diconmgr.c45 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 Dmesa-sha1.c60 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);

Completed in 19 milliseconds

1234567891011>>