HomeSort by relevance Sort by last modified time
    Searched refs:Mult (Results 1 - 25 of 42) sorted by null

1 2

  /external/apache-xml/src/main/java/org/apache/xpath/operations/
Mult.java 19 * $Id: Mult.java 468655 2006-10-28 07:12:06Z minchau $
30 public class Mult extends Operation
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
HasPositionalPredChecker.java 33 import org.apache.xpath.operations.Mult;
108 (pred instanceof Mult) ||
  /external/webp/src/dsp/
alpha_processing.c 26 static uint32_t Mult(uint8_t x, uint32_t mult) {
27 const uint32_t v = (x * mult + HALF) >> MFIX;
148 out |= Mult(argb >> 0, scale) << 0;
149 out |= Mult(argb >> 8, scale) << 8;
150 out |= Mult(argb >> 16, scale) << 16;
167 ptr[x] = Mult(ptr[x], scale);
229 const uint32_t mult = MULTIPLIER(a); local
230 rgb[4 * i + 0] = PREMULTIPLY(rgb[4 * i + 0], mult);
231 rgb[4 * i + 1] = PREMULTIPLY(rgb[4 * i + 1], mult);
266 const uint32_t mult = MULTIPLIER(a); local
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/XhciPei/
XhciSched.h 632 UINT32 Mult:2;
661 UINT32 Mult:2;
    [all...]
XhciSched.c     [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
Compiler.java 52 import org.apache.xpath.operations.Mult;
146 expr = mult(opPos); break;
387 * @return reference to {@link org.apache.xpath.operations.Mult} instance.
391 protected Expression mult(int opPos) throws TransformerException method in class:Compiler
393 return compileOperation(new Mult(), opPos);
    [all...]
  /external/spirv-llvm/lib/SPIRV/libSPIRV/
SPIRVType.h 356 SPIRVWord Comp, SPIRVWord Mult, SPIRVWord F):Dim(Dim), Depth(Cont),
357 Arrayed(Arr), MS(Comp), Sampled(Mult), Format(F){}
  /device/linaro/bootloader/edk2/SourceLevelDebugPkg/Library/DebugCommunicationLibUsb3/
DebugCommunicationLibUsb3Internal.h 226 UINT32 Mult:2; // set to 0
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/
util.py 305 _ast.Mult = type(m.body[4].value.right.left.op)
_ast_util.py 44 Mult: '*',
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/XhciDxe/
XhciSched.h 636 UINT32 Mult:2;
665 UINT32 Mult:2;
    [all...]
  /external/llvm/lib/Target/Mips/
MipsISelLowering.h 83 // Mult nodes.
84 Mult,
145 MULT,
MipsSEISelLowering.cpp 365 case ISD::SMUL_LOHI: return lowerMulDiv(Op, MipsISD::Mult, true, true, DAG);
367 case ISD::MULHS: return lowerMulDiv(Op, MipsISD::Mult, false, true, DAG);
369 case ISD::MUL: return lowerMulDiv(Op, MipsISD::Mult, true, false, DAG);
422 // here, which will result in MultNode being mapped to a single MULT
423 // instruction node rather than a pair of MULT and MADD instructions being
494 // here, which will result in MultNode being mapped to a single MULT
495 // instruction node rather than a pair of MULT and MSUB instructions being
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
usbspec.h 402 UCHAR Mult:2;
  /external/swiftshader/third_party/subzero/src/
IceInstMIPS32.h 253 Mult,
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Python-ast.h 18 typedef enum _operator { Add=1, Sub=2, Mult=3, Div=4, Mod=5, Pow=6, LShift=7,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Python-ast.h 18 typedef enum _operator { Add=1, Sub=2, Mult=3, Div=4, Mod=5, Pow=6, LShift=7,
  /external/python/cpython2/Include/
Python-ast.h 18 typedef enum _operator { Add=1, Sub=2, Mult=3, Div=4, Mod=5, Pow=6, LShift=7,
  /prebuilts/gdb/darwin-x86/include/python2.7/
Python-ast.h 18 typedef enum _operator { Add=1, Sub=2, Mult=3, Div=4, Mod=5, Pow=6, LShift=7,
  /prebuilts/gdb/linux-x86/include/python2.7/
Python-ast.h 18 typedef enum _operator { Add=1, Sub=2, Mult=3, Div=4, Mod=5, Pow=6, LShift=7,
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
Python-ast.h 18 typedef enum _operator { Add=1, Sub=2, Mult=3, Div=4, Mod=5, Pow=6, LShift=7,
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
Python-ast.h 18 typedef enum _operator { Add=1, Sub=2, Mult=3, Div=4, Mod=5, Pow=6, LShift=7,
  /external/swiftshader/third_party/LLVM/lib/Analysis/
ScalarEvolution.cpp 723 APInt Mult(W, i);
724 unsigned TwoFactors = Mult.countTrailingZeros();
726 Mult = Mult.lshr(TwoFactors);
727 OddFactorial *= Mult;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
ast.c 350 return Mult;
518 return Mult;
    [all...]
compile.c     [all...]

Completed in 678 milliseconds

1 2