Home
last modified time | relevance | path

Searched refs:uw (Results 1 - 25 of 26) sorted by relevance

12

/third_party/mesa3d/src/gallium/drivers/r300/compiler/
H A Dr3xx_vertprog_dump.c201 fprintf(stderr,": uw-> 0x%08x lw-> 0x%08x " in r300_vertex_program_dump()
203 vs->fc_op_addrs.r500[i].uw, in r300_vertex_program_dump()
209 (vs->fc_op_addrs.r500[i].uw >> 16) & 0xffff, in r300_vertex_program_dump()
210 vs->fc_op_addrs.r500[i].uw & 0xffff); in r300_vertex_program_dump()
H A Dradeon_code.h288 uint32_t uw; member
H A Dr3xx_vertprog.c480 [compiler->code->num_fc_ops].uw = in translate_vertex_program()
/third_party/mesa3d/src/intel/compiler/
H A Dbrw_fs_combine_constants.cpp352 representable_as_uw(unsigned ud, uint16_t *uw) in representable_as_uw() argument
355 *uw = ud; in representable_as_uw()
409 uint16_t uw; in can_promote_src_as_imm() local
410 if (representable_as_uw(inst->src[src_idx].ud, &uw)) { in can_promote_src_as_imm()
411 inst->src[src_idx] = brw_imm_uw(uw); in can_promote_src_as_imm()
H A Dbrw_reg.h697 brw_imm_uw(uint16_t uw)
700 imm.ud = uw | (uw << 16);
/third_party/python/Lib/test/
H A Dtest_pkgutil.py288 for uw in unicode_words:
289 d = os.path.join(self.dirname, uw)
293 # When filesystem encoding cannot encode uw: skip this test
303 mod = importlib.import_module(uw)
304 success_cases += (uw, mod),
305 if len(uw) > 1:
306 failure_cases += (uw[:-1], ImportError),
/third_party/skia/third_party/externals/swiftshader/src/Shader/
H A DSamplerCore.hpp86 Short4 address(Float4 &uw, AddressingMode addressingMode, Pointer<Byte>& mipmap);
87 void address(Float4 &uw, Int4& xyz0, Int4& xyz1, Float4& f, Pointer<Byte>& mipmap, Float4 &texOffset, Int4 &filter, int whd, AddressingMode addressingMode, SamplerFunction function);
H A DPixelPipeline.cpp1543 Float4 uw;
1549 uw = Max(u, Float4(0.0f));
1550 uw = Min(uw, Float4(1.0f));
1551 dst.x = convertFixed12(uw);
1585 Float4 uw = u;
1591 uw *= Rcp_pp(s);
1597 uw *= Float4(0x1000);
1598 uw = Max(uw, Float
[all...]
H A DSamplerCore.cpp2296 Short4 SamplerCore::address(Float4 &uw, AddressingMode addressingMode, Pointer<Byte> &mipmap) in address() argument
2304 return Min(Max(Short4(RoundInt(uw)), Short4(0)), *Pointer<Short4>(mipmap + OFFSET(Mipmap, depth)) - Short4(1)); in address()
2308 Float4 clamp = Min(Max(uw, Float4(0.0f)), Float4(65535.0f / 65536.0f)); in address()
2314 Int4 convert = Int4(uw * Float4(1 << 16)); in address()
2324 Int4 convert = Int4(Abs(uw * Float4(1 << 16))); in address()
2334 return Short4(Int4(uw * Float4(1 << 16))); in address()
/third_party/mesa3d/src/glx/
H A Ddrisw_glx.c148 unsigned uw, uh, bw, depth; in swrastGetDrawableInfo() local
152 XGetGeometry(dpy, drawable, &root, x, y, &uw, &uh, &bw, &depth); in swrastGetDrawableInfo()
153 *w = uw; in swrastGetDrawableInfo()
714 unsigned uw, uh, bw, depth; in driswCreateDrawable() local
716 XGetGeometry(dpy, xDrawable, &root, &x, &y, &uw, &uh, &bw, &depth); in driswCreateDrawable()
/third_party/elfutils/lib/
H A Dcolor.c177 E (uw, undef_weak), in parse_opt()
/third_party/ffmpeg/libavcodec/
H A Dmf_utils.c41 UINT32 uw, UINT32 uh) in ff_MFSetAttributeSize()
43 UINT64 t = (((UINT64)uw) << 32) | uh; in ff_MFSetAttributeSize()
40 ff_MFSetAttributeSize(IMFAttributes *pattr, REFGUID guid, UINT32 uw, UINT32 uh) ff_MFSetAttributeSize() argument
H A Dmf_utils.h69 UINT32 uw, UINT32 uh);
/third_party/node/deps/v8/src/execution/mips64/
H A Dsimulator-mips64.h374 uint32_t uw[kMSALanesWord]; member
H A Dsimulator-mips64.cc5905 FEXDO_DF(ws.uw[i], wd.uh[i + kMSALanesHalf / 2])
5906 FEXDO_DF(wt.uw[i], wd.uh[i])
6117 PCNT_DF(uw, kMSALanesWord);
6149 NLOC_DF(uw, kMSALanesWord);
6178 NLZC_DF(uw, kMSALanesWord);
/third_party/node/deps/v8/src/execution/mips/
H A Dsimulator-mips.h363 uint32_t uw[kMSALanesWord]; member
H A Dsimulator-mips.cc5619 FEXDO_DF(ws.uw[i], wd.uh[i + kMSALanesHalf / 2])
5620 FEXDO_DF(wt.uw[i], wd.uh[i])
5824 PCNT_DF(uw, kMSALanesWord);
5856 NLOC_DF(uw, kMSALanesWord);
5885 NLZC_DF(uw, kMSALanesWord);
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/
H A DSamplerCore.cpp2184 Short4 SamplerCore::address(const Float4 &uw, AddressingMode addressingMode, Pointer<Byte> &mipmap) in address() argument
2192 Float4 clamp = Min(Max(uw, Float4(0.0f)), Float4(65535.0f / 65536.0f)); in address()
2198 Int4 convert = Int4(uw * Float4(1 << 16)); in address()
2208 Int4 convert = Int4(Abs(uw * Float4(1 << 16))); in address()
2218 return Short4(Int4(uw * Float4(1 << 16))); in address()
/third_party/skia/third_party/externals/microhttpd/
H A Dconfig.guess1039 # Use sysv4.2uw... so that sysv4* matches it.
1040 echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION}
/third_party/eudev/
H A Dconfig.guess1069 # Use sysv4.2uw... so that sysv4* matches it.
1070 echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION}
/third_party/lame/
H A Dconfig.guess1068 # Use sysv4.2uw... so that sysv4* matches it.
1069 echo "$UNAME_MACHINE"-pc-sysv4.2uw"$UNAME_VERSION"
/third_party/node/deps/cares/
H A Dconfig.guess1179 # Use sysv4.2uw... so that sysv4* matches it.
1180 GUESS=$UNAME_MACHINE-pc-sysv4.2uw$UNAME_VERSION
/third_party/node/deps/cares/config/
H A Dconfig.guess1179 # Use sysv4.2uw... so that sysv4* matches it.
1180 GUESS=$UNAME_MACHINE-pc-sysv4.2uw$UNAME_VERSION
/third_party/libevdev/build-aux/
H A Dconfig.guess1190 # Use sysv4.2uw... so that sysv4* matches it.
1191 GUESS=$UNAME_MACHINE-pc-sysv4.2uw$UNAME_VERSION
/third_party/python/
H A Dconfig.guess1176 # Use sysv4.2uw... so that sysv4* matches it.
1177 GUESS=$UNAME_MACHINE-pc-sysv4.2uw$UNAME_VERSION

Completed in 49 milliseconds

12