| /xsrc/external/mit/xterm/dist/vttests/ |
| H A D | ctlpix.sh | 38 hi=9232 39 for n in `seq $lo $hi`
|
| H A D | query-color.pl | 266 my $hi = shift; 269 for ( $n = $lo ; $n <= $hi ; ++$n ) { 275 &query_color($hi) unless ( $hi eq $lo );
|
| /xsrc/external/mit/xorgproto/dist/include/X11/extensions/ |
| H A D | syncconst.h | 86 #define _XSyncIntToValue(pv, i) ((pv)->hi=((i<0)?~0:0),(pv)->lo=(i)) 87 #define _XSyncIntsToValue(pv, l, h) ((pv)->lo = (l), (pv)->hi = (h)) 89 ((a).hi>(b).hi || ((a).hi==(b).hi && (a).lo>(b).lo)) 91 ((a).hi<(b).hi || ((a).hi==(b).hi 178 int hi; member in struct:_XSyncValue [all...] |
| /xsrc/external/mit/glu/dist/src/libnurbs/internals/ |
| H A D | uarray.cc | 59 Uarray::init( REAL delta, Arc_ptr lo, Arc_ptr hi ) argument 61 ulines = (long) ((hi->tail()[0] - lo->tail()[0])/delta) + 3;
|
| /xsrc/external/mit/xf86-video-geode/dist/src/ |
| H A D | geode_msr.c | 81 GeodeReadMSR(unsigned long addr, unsigned long *lo, unsigned long *hi) argument 93 *hi = req.val >> 32; 105 *hi = args.data >> 32; 127 *hi = data[1]; 134 GeodeWriteMSR(unsigned long addr, unsigned long lo, unsigned long hi) argument 141 req.val = (u_int64_t) hi << 32 | (u_int64_t)lo; 151 args.data = (u_int64_t) hi << 32 | (u_int64_t)lo; 169 data[1] = hi;
|
| H A D | durango.c | 189 unsigned long *hi, unsigned long *lo) 194 if (!GeodeWriteMSR(addr | reg, *lo, *hi)) 201 vsa_msr_write(reg, addr, hi, lo); 206 unsigned long *hi, unsigned long *lo) 211 if (!GeodeReadMSR(addr | reg, lo, hi)) 219 vsa_msr_read(reg, addr, hi, lo); 188 gfx_msr_asm_write(unsigned short reg,unsigned long addr,unsigned long * hi,unsigned long * lo) argument 205 gfx_msr_asm_read(unsigned short reg,unsigned long addr,unsigned long * hi,unsigned long * lo) argument
|
| /xsrc/external/mit/libdrm/dist/ |
| H A D | xf86drmRandom.c | 122 unsigned long hi; local in function:drmRandom 125 hi = s->seed / s->q; 127 s->seed = s->a * lo - s->r * hi; 128 if ((s->a * lo) <= (s->r * hi)) s->seed += s->m;
|
| /xsrc/external/mit/freetype/dist/src/base/ |
| H A D | md5.h | 35 MD5_u32plus lo, hi; member in struct:__anonf1884f690108
|
| H A D | ftcalc.c | 53 FT_UInt32 hi; member in struct:FT_Int64_ 283 FT_UInt32 lo1, hi1, lo2, hi2, lo, hi, i1, i2; local in function:ft_multo64 292 hi = hi1 * hi2; 296 hi += (FT_UInt32)( i1 < i2 ) << 16; 298 hi += i1 >> 16; 303 hi += ( lo < i1 ); 306 z->hi = hi; 311 ft_div64by32( FT_UInt32 hi, argument 319 if ( hi > 354 FT_UInt32 lo, hi; local in function:FT_Add64 [all...] |
| H A D | fttrigon.c | 86 FT_UInt32 lo1, hi1, lo2, hi2, lo, hi, i1, i2; local in function:ft_trig_downscale 103 hi = hi1 * hi2; 107 hi += (FT_UInt32)( i1 < i2 ) << 16; 109 hi += i1 >> 16; 114 hi += ( lo < i1 ); 121 hi += ( lo < 0x40000000UL ); 123 val = (FT_Fixed)hi;
|
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/nir/ |
| H A D | nir_lower_alu.c | 166 nir_ssa_def *hi = nir_imul(b, src0h, src1h); local in function:lower_alu_instr 171 hi = nir_iadd(b, hi, nir_iand(b, nir_uadd_carry(b, lo, tmp), c1)); 173 hi = nir_iadd(b, hi, nir_ushr(b, m1, c16)); 176 hi = nir_iadd(b, hi, nir_iand(b, nir_uadd_carry(b, lo, tmp), c1)); 178 hi = nir_iadd(b, hi, nir_ushr(b, m2, c16)); 186 hi [all...] |
| H A D | nir_builtin_builder.c | 141 nir_ssa_def *hi = nir_ishl(b, x, lshift); local in function:nir_rotate 144 return nir_ior(b, hi, lo); 163 nir_upsample(nir_builder *b, nir_ssa_def *hi, nir_ssa_def *lo) argument 165 assert(lo->num_components == hi->num_components); 166 assert(lo->bit_size == hi->bit_size); 170 nir_ssa_def *vec = nir_vec2(b, nir_channel(b, lo, i), nir_channel(b, hi, i));
|
| /xsrc/external/mit/xterm/dist/ |
| H A D | charclass.c | 333 show_cclass_range(int lo, int hi) argument 340 for (ch = lo + 1; ch <= hi; ch++) { 346 if (ident && (hi < 255)) { 347 ch = hi + 1; 356 if (lo == hi) { 359 printf("\t%d-%d", lo, hi); 363 if (hi < 255) 409 decode_range(const char *source, int *lo, int *hi) argument 416 if ((*hi = decode_one(after1, &after2)) < 0) { 417 *hi 427 int lo, hi; local in function:do_range [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/llvmpipe/ |
| H A D | lp_test.h | 82 uint32_t hi, lo; local in function:rdtsc 83 __asm__ __volatile__ ("rdtsc" : "=a"(lo), "=d"(hi)); 84 return ((uint64_t)lo) | (((uint64_t)hi) << 32);
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/llvmpipe/ |
| H A D | lp_test.h | 82 uint32_t hi, lo; local in function:rdtsc 83 __asm__ __volatile__ ("rdtsc" : "=a"(lo), "=d"(hi)); 84 return ((uint64_t)lo) | (((uint64_t)hi) << 32);
|
| /xsrc/external/mit/MesaLib/dist/src/compiler/nir/ |
| H A D | nir_lower_alu.c | 178 nir_ssa_def *hi = nir_imul(b, src0h, src1h); local in function:lower_alu_instr 183 hi = nir_iadd(b, hi, nir_iand(b, nir_uadd_carry(b, lo, tmp), c1)); 185 hi = nir_iadd(b, hi, nir_ushr(b, m1, cshift)); 188 hi = nir_iadd(b, hi, nir_iand(b, nir_uadd_carry(b, lo, tmp), c1)); 190 hi = nir_iadd(b, hi, nir_ushr(b, m2, cshift)); 198 hi [all...] |
| /xsrc/external/mit/libXaw/dist/examples/ |
| H A D | simple.c | 18 Dimension wi,hi; local in function:ac_set 26 XtVaGetValues(w,XtNheight,&hi,XtNwidth,&wi,NULL); 31 XmuDrawLogo(XtDisplay(w), XtWindow(w), gc1, gc2, 0,0, wi, hi );
|
| /xsrc/external/mit/MesaLib.old/dist/include/CL/ |
| H A D | cl_platform.h | 560 /* Indicate whether .xyzw, .s0123 and .hi.lo are supported */ 564 /* .hi and .lo are supported */ 577 __CL_ANON_STRUCT__ struct{ cl_char lo, hi; }; member in struct:__anonbc3cf64c010a::__anonbc3cf64c0408 590 __CL_ANON_STRUCT__ struct{ cl_char2 lo, hi; }; member in struct:__anonbc3cf64c050a::__anonbc3cf64c0808 609 __CL_ANON_STRUCT__ struct{ cl_char4 lo, hi; }; member in struct:__anonbc3cf64c090a::__anonbc3cf64c0c08 628 __CL_ANON_STRUCT__ struct{ cl_char8 lo, hi; }; member in struct:__anonbc3cf64c0d0a::__anonbc3cf64c1008 652 __CL_ANON_STRUCT__ struct{ cl_uchar lo, hi; }; member in struct:__anonbc3cf64c110a::__anonbc3cf64c1408 665 __CL_ANON_STRUCT__ struct{ cl_uchar2 lo, hi; }; member in struct:__anonbc3cf64c150a::__anonbc3cf64c1808 684 __CL_ANON_STRUCT__ struct{ cl_uchar4 lo, hi; }; member in struct:__anonbc3cf64c190a::__anonbc3cf64c1c08 703 __CL_ANON_STRUCT__ struct{ cl_uchar8 lo, hi; }; member in struct:__anonbc3cf64c1d0a::__anonbc3cf64c2008 727 __CL_ANON_STRUCT__ struct{ cl_short lo, hi; }; member in struct:__anonbc3cf64c210a::__anonbc3cf64c2408 740 __CL_ANON_STRUCT__ struct{ cl_short2 lo, hi; }; member in struct:__anonbc3cf64c250a::__anonbc3cf64c2808 759 __CL_ANON_STRUCT__ struct{ cl_short4 lo, hi; }; member in struct:__anonbc3cf64c290a::__anonbc3cf64c2c08 778 __CL_ANON_STRUCT__ struct{ cl_short8 lo, hi; }; member in struct:__anonbc3cf64c2d0a::__anonbc3cf64c3008 802 __CL_ANON_STRUCT__ struct{ cl_ushort lo, hi; }; member in struct:__anonbc3cf64c310a::__anonbc3cf64c3408 815 __CL_ANON_STRUCT__ struct{ cl_ushort2 lo, hi; }; member in struct:__anonbc3cf64c350a::__anonbc3cf64c3808 834 __CL_ANON_STRUCT__ struct{ cl_ushort4 lo, hi; }; member in struct:__anonbc3cf64c390a::__anonbc3cf64c3c08 853 __CL_ANON_STRUCT__ struct{ cl_ushort8 lo, hi; }; member in struct:__anonbc3cf64c3d0a::__anonbc3cf64c4008 877 __CL_ANON_STRUCT__ struct{ cl_half lo, hi; }; member in struct:__anonbc3cf64c410a::__anonbc3cf64c4408 890 __CL_ANON_STRUCT__ struct{ cl_half2 lo, hi; }; member in struct:__anonbc3cf64c450a::__anonbc3cf64c4808 909 __CL_ANON_STRUCT__ struct{ cl_half4 lo, hi; }; member in struct:__anonbc3cf64c490a::__anonbc3cf64c4c08 928 __CL_ANON_STRUCT__ struct{ cl_half8 lo, hi; }; member in struct:__anonbc3cf64c4d0a::__anonbc3cf64c5008 951 __CL_ANON_STRUCT__ struct{ cl_int lo, hi; }; member in struct:__anonbc3cf64c510a::__anonbc3cf64c5408 964 __CL_ANON_STRUCT__ struct{ cl_int2 lo, hi; }; member in struct:__anonbc3cf64c550a::__anonbc3cf64c5808 983 __CL_ANON_STRUCT__ struct{ cl_int4 lo, hi; }; member in struct:__anonbc3cf64c590a::__anonbc3cf64c5c08 1002 __CL_ANON_STRUCT__ struct{ cl_int8 lo, hi; }; member in struct:__anonbc3cf64c5d0a::__anonbc3cf64c6008 1026 __CL_ANON_STRUCT__ struct{ cl_uint lo, hi; }; member in struct:__anonbc3cf64c610a::__anonbc3cf64c6408 1039 __CL_ANON_STRUCT__ struct{ cl_uint2 lo, hi; }; member in struct:__anonbc3cf64c650a::__anonbc3cf64c6808 1058 __CL_ANON_STRUCT__ struct{ cl_uint4 lo, hi; }; member in struct:__anonbc3cf64c690a::__anonbc3cf64c6c08 1077 __CL_ANON_STRUCT__ struct{ cl_uint8 lo, hi; }; member in struct:__anonbc3cf64c6d0a::__anonbc3cf64c7008 1100 __CL_ANON_STRUCT__ struct{ cl_long lo, hi; }; member in struct:__anonbc3cf64c710a::__anonbc3cf64c7408 1113 __CL_ANON_STRUCT__ struct{ cl_long2 lo, hi; }; member in struct:__anonbc3cf64c750a::__anonbc3cf64c7808 1132 __CL_ANON_STRUCT__ struct{ cl_long4 lo, hi; }; member in struct:__anonbc3cf64c790a::__anonbc3cf64c7c08 1151 __CL_ANON_STRUCT__ struct{ cl_long8 lo, hi; }; member in struct:__anonbc3cf64c7d0a::__anonbc3cf64c8008 1175 __CL_ANON_STRUCT__ struct{ cl_ulong lo, hi; }; member in struct:__anonbc3cf64c810a::__anonbc3cf64c8408 1188 __CL_ANON_STRUCT__ struct{ cl_ulong2 lo, hi; }; member in struct:__anonbc3cf64c850a::__anonbc3cf64c8808 1207 __CL_ANON_STRUCT__ struct{ cl_ulong4 lo, hi; }; member in struct:__anonbc3cf64c890a::__anonbc3cf64c8c08 1226 __CL_ANON_STRUCT__ struct{ cl_ulong8 lo, hi; }; member in struct:__anonbc3cf64c8d0a::__anonbc3cf64c9008 1251 __CL_ANON_STRUCT__ struct{ cl_float lo, hi; }; member in struct:__anonbc3cf64c910a::__anonbc3cf64c9408 1264 __CL_ANON_STRUCT__ struct{ cl_float2 lo, hi; }; member in struct:__anonbc3cf64c950a::__anonbc3cf64c9808 1283 __CL_ANON_STRUCT__ struct{ cl_float4 lo, hi; }; member in struct:__anonbc3cf64c990a::__anonbc3cf64c9c08 1302 __CL_ANON_STRUCT__ struct{ cl_float8 lo, hi; }; member in struct:__anonbc3cf64c9d0a::__anonbc3cf64ca008 1326 __CL_ANON_STRUCT__ struct{ cl_double lo, hi; }; member in struct:__anonbc3cf64ca10a::__anonbc3cf64ca408 1339 __CL_ANON_STRUCT__ struct{ cl_double2 lo, hi; }; member in struct:__anonbc3cf64ca50a::__anonbc3cf64ca808 1358 __CL_ANON_STRUCT__ struct{ cl_double4 lo, hi; }; member in struct:__anonbc3cf64ca90a::__anonbc3cf64cac08 1377 __CL_ANON_STRUCT__ struct{ cl_double8 lo, hi; }; member in struct:__anonbc3cf64cad0a::__anonbc3cf64cb008 [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/nouveau/codegen/ |
| H A D | nv50_ir_lowering_helper.cpp | 69 Value *lo = bld.getSSA(), *hi = bld.getSSA(); local in function:nv50_ir::LoweringHelper::handleABS 74 bld.mkCmp(OP_SLCT, CC_LT, TYPE_S32, hi, TYPE_S32, negComp[1], srcComp[1], srcComp[1]); 77 insn->setSrc(1, hi); 133 Instruction *hi = bld.mkOp2(insn->op, sTy, def[1], src0[1], src1[1]); local in function:nv50_ir::LoweringHelper::handleMAXMIN 134 hi->subOp = NV50_IR_SUBOP_MINMAX_HIGH; 135 hi->setFlagsDef(1, flag); 163 Value *hi = bld.getSSA(); local in function:nv50_ir::LoweringHelper::handleMOV 167 bld.loadImm(hi, (uint32_t)(reg.data.u64 >> 32)); 171 insn->setSrc(1, hi); 262 Instruction *hi local in function:nv50_ir::LoweringHelper::handleLogOp [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/nouveau/codegen/ |
| H A D | nv50_ir_lowering_helper.cpp | 69 Value *lo = bld.getSSA(), *hi = bld.getSSA(); local in function:nv50_ir::LoweringHelper::handleABS 74 bld.mkCmp(OP_SLCT, CC_LT, TYPE_S32, hi, TYPE_S32, negComp[1], srcComp[1], srcComp[1]); 77 insn->setSrc(1, hi); 133 Instruction *hi = bld.mkOp2(insn->op, sTy, def[1], src0[1], src1[1]); local in function:nv50_ir::LoweringHelper::handleMAXMIN 134 hi->subOp = NV50_IR_SUBOP_MINMAX_HIGH; 135 hi->setFlagsDef(1, flag); 163 Value *hi = bld.getSSA(); local in function:nv50_ir::LoweringHelper::handleMOV 167 bld.loadImm(hi, (uint32_t)(reg.data.u64 >> 32)); 171 insn->setSrc(1, hi); 262 Instruction *hi local in function:nv50_ir::LoweringHelper::handleLogOp [all...] |
| /xsrc/external/mit/MesaLib/dist/include/CL/ |
| H A D | cl_platform.h | 517 /* Indicate whether .xyzw, .s0123 and .hi.lo are supported */ 521 /* .hi and .lo are supported */ 534 __CL_ANON_STRUCT__ struct{ cl_char lo, hi; }; member in struct:__anonea00a01f010a::__anonea00a01f0408 547 __CL_ANON_STRUCT__ struct{ cl_char2 lo, hi; }; member in struct:__anonea00a01f050a::__anonea00a01f0808 566 __CL_ANON_STRUCT__ struct{ cl_char4 lo, hi; }; member in struct:__anonea00a01f090a::__anonea00a01f0c08 585 __CL_ANON_STRUCT__ struct{ cl_char8 lo, hi; }; member in struct:__anonea00a01f0d0a::__anonea00a01f1008 609 __CL_ANON_STRUCT__ struct{ cl_uchar lo, hi; }; member in struct:__anonea00a01f110a::__anonea00a01f1408 622 __CL_ANON_STRUCT__ struct{ cl_uchar2 lo, hi; }; member in struct:__anonea00a01f150a::__anonea00a01f1808 641 __CL_ANON_STRUCT__ struct{ cl_uchar4 lo, hi; }; member in struct:__anonea00a01f190a::__anonea00a01f1c08 660 __CL_ANON_STRUCT__ struct{ cl_uchar8 lo, hi; }; member in struct:__anonea00a01f1d0a::__anonea00a01f2008 684 __CL_ANON_STRUCT__ struct{ cl_short lo, hi; }; member in struct:__anonea00a01f210a::__anonea00a01f2408 697 __CL_ANON_STRUCT__ struct{ cl_short2 lo, hi; }; member in struct:__anonea00a01f250a::__anonea00a01f2808 716 __CL_ANON_STRUCT__ struct{ cl_short4 lo, hi; }; member in struct:__anonea00a01f290a::__anonea00a01f2c08 735 __CL_ANON_STRUCT__ struct{ cl_short8 lo, hi; }; member in struct:__anonea00a01f2d0a::__anonea00a01f3008 759 __CL_ANON_STRUCT__ struct{ cl_ushort lo, hi; }; member in struct:__anonea00a01f310a::__anonea00a01f3408 772 __CL_ANON_STRUCT__ struct{ cl_ushort2 lo, hi; }; member in struct:__anonea00a01f350a::__anonea00a01f3808 791 __CL_ANON_STRUCT__ struct{ cl_ushort4 lo, hi; }; member in struct:__anonea00a01f390a::__anonea00a01f3c08 810 __CL_ANON_STRUCT__ struct{ cl_ushort8 lo, hi; }; member in struct:__anonea00a01f3d0a::__anonea00a01f4008 834 __CL_ANON_STRUCT__ struct{ cl_half lo, hi; }; member in struct:__anonea00a01f410a::__anonea00a01f4408 847 __CL_ANON_STRUCT__ struct{ cl_half2 lo, hi; }; member in struct:__anonea00a01f450a::__anonea00a01f4808 866 __CL_ANON_STRUCT__ struct{ cl_half4 lo, hi; }; member in struct:__anonea00a01f490a::__anonea00a01f4c08 885 __CL_ANON_STRUCT__ struct{ cl_half8 lo, hi; }; member in struct:__anonea00a01f4d0a::__anonea00a01f5008 908 __CL_ANON_STRUCT__ struct{ cl_int lo, hi; }; member in struct:__anonea00a01f510a::__anonea00a01f5408 921 __CL_ANON_STRUCT__ struct{ cl_int2 lo, hi; }; member in struct:__anonea00a01f550a::__anonea00a01f5808 940 __CL_ANON_STRUCT__ struct{ cl_int4 lo, hi; }; member in struct:__anonea00a01f590a::__anonea00a01f5c08 959 __CL_ANON_STRUCT__ struct{ cl_int8 lo, hi; }; member in struct:__anonea00a01f5d0a::__anonea00a01f6008 983 __CL_ANON_STRUCT__ struct{ cl_uint lo, hi; }; member in struct:__anonea00a01f610a::__anonea00a01f6408 996 __CL_ANON_STRUCT__ struct{ cl_uint2 lo, hi; }; member in struct:__anonea00a01f650a::__anonea00a01f6808 1015 __CL_ANON_STRUCT__ struct{ cl_uint4 lo, hi; }; member in struct:__anonea00a01f690a::__anonea00a01f6c08 1034 __CL_ANON_STRUCT__ struct{ cl_uint8 lo, hi; }; member in struct:__anonea00a01f6d0a::__anonea00a01f7008 1057 __CL_ANON_STRUCT__ struct{ cl_long lo, hi; }; member in struct:__anonea00a01f710a::__anonea00a01f7408 1070 __CL_ANON_STRUCT__ struct{ cl_long2 lo, hi; }; member in struct:__anonea00a01f750a::__anonea00a01f7808 1089 __CL_ANON_STRUCT__ struct{ cl_long4 lo, hi; }; member in struct:__anonea00a01f790a::__anonea00a01f7c08 1108 __CL_ANON_STRUCT__ struct{ cl_long8 lo, hi; }; member in struct:__anonea00a01f7d0a::__anonea00a01f8008 1132 __CL_ANON_STRUCT__ struct{ cl_ulong lo, hi; }; member in struct:__anonea00a01f810a::__anonea00a01f8408 1145 __CL_ANON_STRUCT__ struct{ cl_ulong2 lo, hi; }; member in struct:__anonea00a01f850a::__anonea00a01f8808 1164 __CL_ANON_STRUCT__ struct{ cl_ulong4 lo, hi; }; member in struct:__anonea00a01f890a::__anonea00a01f8c08 1183 __CL_ANON_STRUCT__ struct{ cl_ulong8 lo, hi; }; member in struct:__anonea00a01f8d0a::__anonea00a01f9008 1208 __CL_ANON_STRUCT__ struct{ cl_float lo, hi; }; member in struct:__anonea00a01f910a::__anonea00a01f9408 1221 __CL_ANON_STRUCT__ struct{ cl_float2 lo, hi; }; member in struct:__anonea00a01f950a::__anonea00a01f9808 1240 __CL_ANON_STRUCT__ struct{ cl_float4 lo, hi; }; member in struct:__anonea00a01f990a::__anonea00a01f9c08 1259 __CL_ANON_STRUCT__ struct{ cl_float8 lo, hi; }; member in struct:__anonea00a01f9d0a::__anonea00a01fa008 1283 __CL_ANON_STRUCT__ struct{ cl_double lo, hi; }; member in struct:__anonea00a01fa10a::__anonea00a01fa408 1296 __CL_ANON_STRUCT__ struct{ cl_double2 lo, hi; }; member in struct:__anonea00a01fa50a::__anonea00a01fa808 1315 __CL_ANON_STRUCT__ struct{ cl_double4 lo, hi; }; member in struct:__anonea00a01fa90a::__anonea00a01fac08 1334 __CL_ANON_STRUCT__ struct{ cl_double8 lo, hi; }; member in struct:__anonea00a01fad0a::__anonea00a01fb008 [all...] |
| /xsrc/external/mit/pixman/dist/pixman/ |
| H A D | pixman-matrix.c | 58 * hi, lo - high and low 64-bit parts of the dividend 67 rounded_udiv_128_by_48 (uint64_t hi, argument 75 remainder = hi % div; 76 *result_hi = hi / div; 103 rounded_sdiv_128_by_49 (int64_t hi, argument 115 if (hi < 0) 118 hi++; 119 hi = -hi; 123 result_lo = rounded_udiv_128_by_48 (hi, l 143 fixed_64_16_to_int128(int64_t hi,int64_t lo,int64_t * rhi,int64_t * rlo,int scalebits) argument 174 fixed_112_16_to_fixed_48_16(int64_t hi,int64_t lo,pixman_bool_t * clampflag) argument 275 int64_t hi, rhi, lo, rlo; local in function:pixman_transform_point_31_16 289 int64_t hi, rhi, lo, rlo, div; local in function:pixman_transform_point_31_16 [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/gallivm/ |
| H A D | lp_bld_pack.h | 117 LLVMValueRef hi); 125 LLVMValueRef hi); 133 LLVMValueRef hi);
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/gallivm/ |
| H A D | lp_bld_pack.h | 117 LLVMValueRef hi); 125 LLVMValueRef hi); 133 LLVMValueRef hi);
|
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/ |
| H A D | xxd.py | 69 hi = ord(b) >> 4 71 f.write("\\x{:x}{:x}".format(hi, lo).encode('utf-8'))
|