HomeSort by relevance Sort by last modified time
    Searched full:mapper (Results 1 - 25 of 70) sorted by null

1 2 3

  /external/skia/gm/
gradients.cpp 30 SkShader::TileMode tm, SkUnitMapper* mapper) {
32 data.fCount, tm, mapper);
36 SkShader::TileMode tm, SkUnitMapper* mapper) {
41 data.fPos, data.fCount, tm, mapper);
45 SkShader::TileMode tm, SkUnitMapper* mapper) {
50 data.fPos, data.fCount, mapper);
54 SkShader::TileMode tm, SkUnitMapper* mapper);
  /dalvik/dx/src/com/android/dx/ssa/back/
NullRegisterAllocator.java 50 BasicRegisterMapper mapper = new BasicRegisterMapper(oldRegCount); local
53 mapper.addMapping(i, i*2, 2);
56 return mapper;
FirstFitAllocator.java 65 BasicRegisterMapper mapper local
101 mapper.addMapping(i, newReg, maxCategory);
104 mapper.addMapping(i, nextNewRegister, maxCategory);
127 mapper.addMapping(j, newReg, maxCategory);
138 return mapper;
SsaToRop.java 111 RegisterMapper mapper = allocator.allocateRegisters(); local
115 System.out.println(((BasicRegisterMapper)mapper).toHuman());
120 ssaMeth.mapRegisters(mapper);
225 BasicRegisterMapper mapper local
231 mapper.addMapping(i, regCount - paramWidth + i, 1);
233 mapper.addMapping(i, i - paramWidth, 1);
242 ssaMeth.mapRegisters(mapper);
FirstFitLocalCombiningAllocator.java 58 /** Register mapper which will be our result */
59 private final InterferenceRegisterMapper mapper; field in class:FirstFitLocalCombiningAllocator
88 mapper = new InterferenceRegisterMapper(
145 return mapper;
491 ropReg = mapper.oldToNew(moveReg);
493 ropReg = mapper.oldToNew(checkReg);
546 || mapper.interferes(ssaSpec, ropReg));
654 mapper.addMapping(ssaSpec.getReg(), ropReg, category);
762 int rangeStart = mapper.oldToNew(ssaCenterReg) + rangeStartOffset;
884 && mapper.oldToNew(ssaReg) == ropReg)
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
map.h 47 // Mapper Interface - class determinies how arcs and final weights
50 // class Mapper {
54 // // Specifies final action the mapper requires (see above).
55 // // The mapper will be passed final weights as arcs of the
59 // // mapper. It takes as argument the input Fst's known properties.
64 // method of the mapper to determine how to treat final weights,
71 // we pass the mapper. We allow passing the mapper by pointer
72 // for cases that we need to change the state of the user's mapper.
73 // This is the case with the encode mapper, which is reused durin
    [all...]
encode.h 187 // A mapper to encode/decode weighted transducers. Encoding of an
192 // The Encode mapper stores the encoding in a local hash table (EncodeTable)
213 EncodeMapper(const EncodeMapper& mapper)
214 : ref_count_(mapper.ref_count_ + 1),
215 flags_(mapper.flags_),
216 type_(mapper.type_),
217 table_(mapper.table_) { }
220 EncodeMapper(const EncodeMapper& mapper, EncodeType type)
221 : ref_count_(mapper.ref_count_ + 1),
222 flags_(mapper.flags_)
    [all...]
equivalent.h 134 EncodeMapper<Arc> mapper(kEncodeWeights|kEncodeLabels, ENCODE);
135 Map(&efst1, &mapper);
136 Map(&efst2, &mapper);
invert.h 27 // Mapper to implement inversion of an arc.
  /external/icu4c/layout/
LEFontInstance.cpp 50 le_bool reverse, const LECharMapper *mapper, le_bool filterZeroWidth, LEGlyphStorage &glyphStorage) const
71 glyphStorage[out] = mapCharToGlyph(code, mapper, filterZeroWidth);
80 LEGlyphID LEFontInstance::mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper) const
82 return mapCharToGlyph(ch, mapper, TRUE);
85 LEGlyphID LEFontInstance::mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const
87 LEUnicode32 mappedChar = mapper->mapChar(ch);
LEFontInstance.h 201 * <code>mapCharToGlyph(ch, mapper)</code> on each one. It also handles surrogate
211 * @param mapper - the character mapper.
219 virtual void mapCharsToGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool reverse, const LECharMapper *mapper, le_bool filterZeroWidth, LEGlyphStorage &glyphStorage) const;
224 * method calls the mapper, and then calls <code>mapCharToGlyph(mappedCh)</code>.
227 * @param mapper - the character mapper
236 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const;
241 * method calls the mapper, and then calls <code>mapCharToGlyph(mappedCh)</code>.
244 * @param mapper - the character mappe
    [all...]
  /external/icu4c/test/letest/
SimpleFontInstance.cpp 91 LEGlyphID SimpleFontInstance::mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const
93 return LEFontInstance::mapCharToGlyph(ch, mapper, filterZeroWidth);
98 LEGlyphID SimpleFontInstance::mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper) const
100 return LEFontInstance::mapCharToGlyph(ch, mapper);
SimpleFontInstance.h 49 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const;
53 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper) const;
PortableFontInstance.h 95 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const;
99 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper) const;
PortableFontInstance.cpp 401 LEGlyphID PortableFontInstance::mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const
403 return LEFontInstance::mapCharToGlyph(ch, mapper, filterZeroWidth);
408 LEGlyphID PortableFontInstance::mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper) const
410 return LEFontInstance::mapCharToGlyph(ch, mapper);
  /external/emma/core/java12/com/vladium/util/
IProperties.java 65 * Creates an empty IProperties set with an optional property mapper.
67 * @param mapper [may be null]
70 public static IProperties create (final IMapper mapper)
72 return new PropertiesImpl (null, mapper);
77 * with an optional property mapper. Note that 'properties' content is
82 * @param mapper [may be null]
85 public static IProperties wrap (final Properties properties, final IMapper mapper)
99 return new PropertiesImpl (map, mapper); // note: map is a defensive clone
109 * @return [never null; an empty property set with a null mapper is created
299 PropertiesImpl (final HashMap values, final IMapper mapper)
    [all...]
  /external/skia/include/effects/
SkGradientShader.h 46 @param mapper May be NULL. Callback to modify the spread of the colors.
51 SkUnitMapper* mapper = NULL);
68 @param mapper May be NULL. Callback to modify the spread of the colors.
73 SkUnitMapper* mapper = NULL);
93 @param mapper May be NULL. Callback to modify the spread of the colors.
102 SkUnitMapper* mapper = NULL);
117 @param mapper May be NULL. Callback to modify the spread of the colors.
121 int count, SkUnitMapper* mapper = NULL);
  /dalvik/dx/src/com/android/dx/ssa/
SsaInsn.java 150 * @param mapper {@code non-null;} mapping from old to new registers
152 public final void mapRegisters(RegisterMapper mapper) {
155 result = mapper.map(result);
157 mapSourceRegisters(mapper);
163 * @param mapper new mapping
165 abstract public void mapSourceRegisters(RegisterMapper mapper);
MoveParamCombiner.java 108 RegisterMapper mapper = new RegisterMapper() {
130 use.mapSourceRegisters(mapper);
  /hardware/libhardware/modules/gralloc/
Android.mk 28 mapper.cpp
  /hardware/msm7k/libgralloc/
Android.mk 29 mapper.cpp
  /hardware/msm7k/libgralloc-qsd8k/
Android.mk 28 mapper.cpp
  /system/vold/
Devmapper.cpp 54 if ((fd = open("/dev/device-mapper", O_RDWR)) < 0) {
135 if ((fd = open("/dev/device-mapper", O_RDWR)) < 0) {
169 if ((fd = open("/dev/device-mapper", O_RDWR)) < 0) {
264 if ((fd = open("/dev/device-mapper", O_RDWR)) < 0) {
  /bionic/libc/kernel/common/linux/
dm-ioctl.h 17 #define DM_DIR "mapper"
  /ndk/build/platforms/android-3/arch-arm/usr/include/linux/
dm-ioctl.h 17 #define DM_DIR "mapper"

Completed in 70 milliseconds

1 2 3