HomeSort by: relevance | last modified time | path
    Searched refs:tmp (Results 1 - 25 of 2167) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /xsrc/external/bsd/libuuid_ul/dist/
pack.c 40 uint32_t tmp; local
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 = uu->time_mid
    [all...]
unpack.c 41 uint32_t tmp; local
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 = *ptr++
    [all...]
  /xsrc/external/mit/libxkbfile/dist/src/
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->next = old->next
74 XkbDrawablePtr first, last, tmp; local
132 XkbDrawablePtr tmp; local
    [all...]
  /xsrc/external/mit/x11perf/dist/
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/
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
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
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
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
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
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.spec.TekHVC.C = max_vc.spec.TekHVC.C
101 XcmsColor tmp; local
    [all...]
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.spec.CIELab.b_star); *
90 XcmsColor tmp; local
    [all...]
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.spec.CIELuv.v_star); *
90 XcmsColor tmp; local
    [all...]
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.spec.TekHVC.C = max_vc.spec.TekHVC.C
97 XcmsColor tmp; local
    [all...]
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.spec.RGBi.green
108 XcmsColor tmp; local
    [all...]
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.spec.RGBi.green
102 XcmsColor tmp; local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/intel/genxml/
sort_xml.sh 5 python ./gen_sort_tags.py $i > $i.tmp
6 mv $i.tmp $i
  /xsrc/external/mit/ctwm/dist/
ctwm_shutdown.c 42 RestoreWinConfig(TwmWindow *tmp)
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->squeezed)
    [all...]
iconmgr.c 408 WList *tmp = NULL; local
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->row == new_row && tmp->col == new_col)
540 WList *tmp = NULL; local
699 WList *tmp, *old; local
985 WList *tmp, *tmp1, *save; local
1148 WList *tmp; local
    [all...]
  /xsrc/external/mit/xorg-server.old/dist/hw/dmx/examples/
ev.c 58 char *tmp; local
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 = "X"; break
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/panfrost/ci/
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/case-list.txt > /tmp/next-batch.tx
    [all...]
  /xsrc/external/mit/MesaLib.old/src/util/
Makefile 9 ${PYTHON} ${SCRIPT} > $@.tmp && mv $@.tmp $@
  /xsrc/external/mit/xf86-video-ati/dist/src/
radeon_pm.c 83 uint32_t tmp; local
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 = INPLL(pScrn, RADEON_SPLL_CNTL)
175 uint32_t tmp; local
594 uint32_t tmp; local
    [all...]
  /xsrc/external/mit/xf86-video-mga/dist/util/
stormdwg.c 95 unsigned long val, tmp; local
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/
iconmgr.c 45 static void InsertInIconManager(IconMgr *ip, WList *tmp, TwmWindow *tmp_win);
174 WList *tmp = NULL; local
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->next)
353 WList *tmp; local
517 WList *tmp; local
631 WList *tmp; local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/util/
mesa-sha1.c 60 char tmp[3]; local
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 21 milliseconds

1 2 3 4 5 6 7 8 91011>>