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

1 2 3 4 5 6 7 8 91011>>

  /external/libunwind/tests/
run-ptrace-mapper 2 ./test-ptrace -c -n -t ./mapper $*
  /external/marisa-trie/lib/marisa/
io.h 4 #include "mapper.h"
mapper.h 10 class Mapper {
12 Mapper();
13 Mapper(const void *ptr, std::size_t size);
14 ~Mapper();
37 void swap(Mapper *rhs);
56 Mapper(const Mapper &);
57 Mapper &operator=(const Mapper &);
trie.cc 12 void Trie::mmap(Mapper *mapper, const char *filename,
14 MARISA_THROW_IF(mapper == NULL, MARISA_PARAM_ERROR);
15 Mapper temp_mapper;
18 temp_mapper.swap(mapper);
22 Mapper mapper(ptr, size);
23 map(mapper);
26 void Trie::map(Mapper &mapper) {
    [all...]
mapper.cc 13 #include "mapper.h"
18 Mapper::Mapper()
22 Mapper::Mapper(const void *ptr, std::size_t size)
28 Mapper::Mapper()
31 Mapper::Mapper(const void *ptr, std::size_t size)
38 Mapper::~Mapper()
    [all...]
intvector.cc 43 void IntVector::mmap(Mapper *mapper, const char *filename,
45 MARISA_THROW_IF(mapper == NULL, MARISA_PARAM_ERROR);
46 Mapper temp_mapper;
49 temp_mapper.swap(mapper);
53 Mapper mapper(ptr, size);
54 map(mapper);
57 void IntVector::map(Mapper &mapper) {
    [all...]
  /external/marisa-trie/v0_1_5/lib/marisa_alpha/
io.h 4 #include "mapper.h"
mapper.h 10 class Mapper {
12 Mapper();
13 Mapper(const void *ptr, std::size_t size);
14 ~Mapper();
38 void swap(Mapper *rhs);
57 Mapper(const Mapper &);
58 Mapper &operator=(const Mapper &);
trie.cc 12 void Trie::mmap(Mapper *mapper, const char *filename,
14 MARISA_ALPHA_THROW_IF(mapper == NULL, MARISA_ALPHA_PARAM_ERROR);
15 Mapper temp_mapper;
18 temp_mapper.swap(mapper);
22 Mapper mapper(ptr, size);
23 map(mapper);
26 void Trie::map(Mapper &mapper) {
    [all...]
mapper.cc 13 #include "mapper.h"
18 Mapper::Mapper()
22 Mapper::Mapper(const void *ptr, std::size_t size)
29 Mapper::Mapper()
32 Mapper::Mapper(const void *ptr, std::size_t size)
40 Mapper::~Mapper()
    [all...]
intvector.cc 43 void IntVector::mmap(Mapper *mapper, const char *filename,
45 MARISA_ALPHA_THROW_IF(mapper == NULL, MARISA_ALPHA_PARAM_ERROR);
46 Mapper temp_mapper;
49 temp_mapper.swap(mapper);
53 Mapper mapper(ptr, size);
54 map(mapper);
57 void IntVector::map(Mapper &mapper) {
    [all...]
  /hardware/intel/img/hwcomposer/merrifield/common/buffers/
BufferManager.cpp 87 BufferMapper *mapper = mBufferPool->getMapper(i); local
88 mapper->unmap();
89 delete mapper;
97 BufferMapper *mapper = mFrameBuffers.valueAt(j); local
98 mapper->unmap();
99 delete mapper;
119 BufferMapper *mapper = mBufferPool->getMapper(i); local
122 mapper->getHandle(),
123 mapper->getWidth(),
124 mapper->getHeight()
156 BufferMapper* mapper; local
252 BufferMapper *mapper = NULL; local
304 BufferMapper *mapper = mFrameBuffers.valueAt(index); local
    [all...]
BufferCache.cpp 35 bool BufferCache::addMapper(uint64_t handle, BufferMapper* mapper)
43 // add mapper
44 index = mBufferPool.add(handle, mapper);
46 ETRACE("failed to add mapper. err = %d", (int)index);
53 bool BufferCache::removeMapper(BufferMapper* mapper)
57 if (!mapper) {
58 ETRACE("invalid mapper");
62 index = mBufferPool.removeItem(mapper->getKey());
64 WTRACE("failed to remove mapper. err = %d", (int)index);
92 BufferMapper* mapper = mBufferPool.valueAt(index) local
    [all...]
BufferCache.h 30 // add a new mapper into buffer cache
31 virtual bool addMapper(uint64_t handle, BufferMapper* mapper);
32 //remove mapper
33 virtual bool removeMapper(BufferMapper* mapper);
34 // get a buffer mapper
38 // get mapper with an index
  /hardware/intel/img/hwcomposer/moorefield_hdmi/common/buffers/
BufferManager.cpp 87 BufferMapper *mapper = mBufferPool->getMapper(i); local
88 mapper->unmap();
89 delete mapper;
97 BufferMapper *mapper = mFrameBuffers.valueAt(j); local
98 mapper->unmap();
99 delete mapper;
119 BufferMapper *mapper = mBufferPool->getMapper(i); local
122 mapper->getHandle(),
123 mapper->getWidth(),
124 mapper->getHeight()
156 BufferMapper* mapper; local
252 BufferMapper *mapper = NULL; local
304 BufferMapper *mapper = mFrameBuffers.valueAt(index); local
    [all...]
BufferCache.cpp 35 bool BufferCache::addMapper(uint64_t handle, BufferMapper* mapper)
43 // add mapper
44 index = mBufferPool.add(handle, mapper);
46 ELOGTRACE("failed to add mapper. err = %d", index);
53 bool BufferCache::removeMapper(BufferMapper* mapper)
57 if (!mapper) {
58 ELOGTRACE("invalid mapper");
62 index = mBufferPool.removeItem(mapper->getKey());
64 WLOGTRACE("failed to remove mapper. err = %d", index);
92 BufferMapper* mapper = mBufferPool.valueAt(index) local
    [all...]
BufferCache.h 30 // add a new mapper into buffer cache
31 virtual bool addMapper(uint64_t handle, BufferMapper* mapper);
32 //remove mapper
33 virtual bool removeMapper(BufferMapper* mapper);
34 // get a buffer mapper
38 // get mapper with an index
  /frameworks/native/services/inputflinger/tests/
InputReader_test.cpp 1015 FakeInputMapper* mapper = new FakeInputMapper(device, sources); local
1016 device->addMapper(mapper);
1019 return mapper;
1050 FakeInputMapper* mapper = NULL; local
1051 ASSERT_NO_FATAL_FAILURE(mapper = addDeviceWithFakeInputMapper(1, 0, String8("fake"),
1053 mapper->setKeyCodeState(AKEYCODE_A, AKEY_STATE_DOWN);
1077 FakeInputMapper* mapper = NULL; local
1104 FakeInputMapper* mapper = NULL; local
1131 FakeInputMapper* mapper = NULL; local
1175 FakeInputMapper* mapper = NULL; local
1498 SwitchInputMapper* mapper = new SwitchInputMapper(mDevice); local
1505 SwitchInputMapper* mapper = new SwitchInputMapper(mDevice); local
1516 SwitchInputMapper* mapper = new SwitchInputMapper(mDevice); local
1561 KeyboardInputMapper* mapper = new KeyboardInputMapper(mDevice, local
1574 KeyboardInputMapper* mapper = new KeyboardInputMapper(mDevice, local
1682 KeyboardInputMapper* mapper = new KeyboardInputMapper(mDevice, local
1727 KeyboardInputMapper* mapper = new KeyboardInputMapper(mDevice, local
1750 KeyboardInputMapper* mapper = new KeyboardInputMapper(mDevice, local
1827 KeyboardInputMapper* mapper = new KeyboardInputMapper(mDevice, local
1839 KeyboardInputMapper* mapper = new KeyboardInputMapper(mDevice, local
1851 KeyboardInputMapper* mapper = new KeyboardInputMapper(mDevice, local
1872 KeyboardInputMapper* mapper = new KeyboardInputMapper(mDevice, local
1980 CursorInputMapper* mapper = new CursorInputMapper(mDevice); local
1988 CursorInputMapper* mapper = new CursorInputMapper(mDevice); local
1996 CursorInputMapper* mapper = new CursorInputMapper(mDevice); local
2027 CursorInputMapper* mapper = new CursorInputMapper(mDevice); local
2046 CursorInputMapper* mapper = new CursorInputMapper(mDevice); local
2101 CursorInputMapper* mapper = new CursorInputMapper(mDevice); local
2125 CursorInputMapper* mapper = new CursorInputMapper(mDevice); local
2149 CursorInputMapper* mapper = new CursorInputMapper(mDevice); local
2186 CursorInputMapper* mapper = new CursorInputMapper(mDevice); local
2204 CursorInputMapper* mapper = new CursorInputMapper(mDevice); local
2255 CursorInputMapper* mapper = new CursorInputMapper(mDevice); local
2431 CursorInputMapper* mapper = new CursorInputMapper(mDevice); local
2681 SingleTouchInputMapper* mapper = new SingleTouchInputMapper(mDevice); local
2690 SingleTouchInputMapper* mapper = new SingleTouchInputMapper(mDevice); local
2701 SingleTouchInputMapper* mapper = new SingleTouchInputMapper(mDevice); local
2711 SingleTouchInputMapper* mapper = new SingleTouchInputMapper(mDevice); local
2721 SingleTouchInputMapper* mapper = new SingleTouchInputMapper(mDevice); local
2750 SingleTouchInputMapper* mapper = new SingleTouchInputMapper(mDevice); local
2779 SingleTouchInputMapper* mapper = new SingleTouchInputMapper(mDevice); local
2795 SingleTouchInputMapper* mapper = new SingleTouchInputMapper(mDevice); local
2846 SingleTouchInputMapper* mapper = new SingleTouchInputMapper(mDevice); local
2968 SingleTouchInputMapper* mapper = new SingleTouchInputMapper(mDevice); local
3042 SingleTouchInputMapper* mapper = new SingleTouchInputMapper(mDevice); local
3133 SingleTouchInputMapper* mapper = new SingleTouchInputMapper(mDevice); local
3157 SingleTouchInputMapper* mapper = new SingleTouchInputMapper(mDevice); local
3219 SingleTouchInputMapper* mapper = new SingleTouchInputMapper(mDevice); local
3264 SingleTouchInputMapper* mapper = new SingleTouchInputMapper(mDevice); local
3288 SingleTouchInputMapper* mapper = new SingleTouchInputMapper(mDevice); local
3449 SingleTouchInputMapper* mapper = new SingleTouchInputMapper(mDevice); local
3585 SingleTouchInputMapper* mapper = new SingleTouchInputMapper(mDevice); local
3658 SingleTouchInputMapper* mapper = new SingleTouchInputMapper(mDevice); local
3873 MultiTouchInputMapper* mapper = new MultiTouchInputMapper(mDevice); local
4150 MultiTouchInputMapper* mapper = new MultiTouchInputMapper(mDevice); local
4326 MultiTouchInputMapper* mapper = new MultiTouchInputMapper(mDevice); local
4497 MultiTouchInputMapper* mapper = new MultiTouchInputMapper(mDevice); local
4547 MultiTouchInputMapper* mapper = new MultiTouchInputMapper(mDevice); local
4585 MultiTouchInputMapper* mapper = new MultiTouchInputMapper(mDevice); local
4638 MultiTouchInputMapper* mapper = new MultiTouchInputMapper(mDevice); local
4672 MultiTouchInputMapper* mapper = new MultiTouchInputMapper(mDevice); local
4701 MultiTouchInputMapper* mapper = new MultiTouchInputMapper(mDevice); local
4862 MultiTouchInputMapper* mapper = new MultiTouchInputMapper(mDevice); local
5013 MultiTouchInputMapper* mapper = new MultiTouchInputMapper(mDevice); local
5085 MultiTouchInputMapper* mapper = new MultiTouchInputMapper(mDevice); local
    [all...]
  /external/openfst/src/include/fst/
map.h 32 void Map(MutableFst<A> *fst, C* mapper) {
33 ArcMap(fst, mapper);
37 void Map(MutableFst<A> *fst, C mapper) {
38 ArcMap(fst, mapper);
42 void Map(const Fst<A> &ifst, MutableFst<B> *ofst, C* mapper) {
43 ArcMap(ifst, ofst, mapper);
47 void Map(const Fst<A> &ifst, MutableFst<B> *ofst, C mapper) {
48 ArcMap(ifst, ofst, mapper);
61 MapFst(const Fst<A> &fst, const C &mapper, const MapFstOptions& opts)
62 : ArcMapFst<A, B, C>(fst, mapper, opts) {
    [all...]
  /external/chromium-trace/trace-viewer/third_party/Paste/tests/
test_urlmap.py 16 mapper = URLMap({})
17 app = TestApp(mapper)
19 mapper[''] = make_app(text % 'root')
20 mapper['/foo'] = make_app(text % 'foo-only')
21 mapper['/foo/bar'] = make_app(text % 'foo:bar')
22 mapper['/f'] = make_app(text % 'f-only')
48 mapper = URLMap({})
49 app = TestApp(mapper, extra_environ={'HTTP_ACCEPT': 'text/html'})
  /hardware/intel/img/hwcomposer/moorefield_hdmi/ips/common/
OverlayPlaneBase.h 60 virtual bool setDataBuffer(BufferMapper& mapper);
61 virtual bool bufferOffsetSetup(BufferMapper& mapper);
63 virtual bool coordinateSetup(BufferMapper& mapper);
69 virtual bool scalingSetup(BufferMapper& mapper);
70 virtual bool colorSetup(BufferMapper& mapper);
82 virtual void putTTMMapper(BufferMapper* mapper);
83 virtual bool rotatedBufferReady(BufferMapper& mapper, BufferMapper* &rotatedMapper);
84 virtual bool useOverlayRotation(BufferMapper& mapper);
87 inline bool isActiveTTMBuffer(BufferMapper *mapper);
88 void updateActiveTTMBuffers(BufferMapper *mapper);
    [all...]
  /hardware/intel/img/hwcomposer/merrifield/common/planes/
DisplayPlane.cpp 168 BufferMapper *mapper; local
203 mapper = mapBuffer(buffer);
204 if (!mapper) {
210 VTRACE("got mapper in saved data buffers and update source Crop");
211 mapper = mDataBuffers.valueAt(index);
214 // always update source crop to mapper
215 mapper->setCrop(mSrcCrop.x, mSrcCrop.y, mSrcCrop.w, mSrcCrop.h);
217 mapper->setIsCompression(isCompression);
219 // unlock buffer after getting mapper
223 ret = setDataBuffer(*mapper);
241 BufferMapper *mapper = bm->map(*buffer); local
296 BufferMapper* mapper; local
315 BufferMapper* mapper; local
    [all...]
  /hardware/intel/img/hwcomposer/moorefield_hdmi/common/planes/
DisplayPlane.cpp 184 BufferMapper *mapper; local
219 mapper = mapBuffer(buffer);
220 if (!mapper) {
226 VLOGTRACE("got mapper in saved data buffers and update source Crop");
227 mapper = mDataBuffers.valueAt(index);
230 // always update source crop to mapper
231 mapper->setCrop(mSrcCrop.x, mSrcCrop.y, mSrcCrop.w, mSrcCrop.h);
233 mapper->setIsCompression(isCompression);
235 // unlock buffer after getting mapper
239 ret = setDataBuffer(*mapper);
257 BufferMapper *mapper = bm->map(*buffer); local
308 BufferMapper* mapper; local
327 BufferMapper* mapper; local
    [all...]
  /hardware/intel/img/hwcomposer/merrifield/ips/anniedale/
AnnOverlayPlane.h 47 virtual bool rotatedBufferReady(BufferMapper& mapper, BufferMapper* &rotatedMapper);
48 virtual bool useOverlayRotation(BufferMapper& mapper);
49 virtual bool scaledBufferReady(BufferMapper& mapper, BufferMapper* &scaledMapper, VideoPayloadBuffer *payload);
52 void signalVideoRotation(BufferMapper& mapper);
56 virtual bool setDataBuffer(BufferMapper& mapper);
58 virtual bool bufferOffsetSetup(BufferMapper& mapper);
59 virtual bool scalingSetup(BufferMapper& mapper);
  /hardware/intel/img/hwcomposer/moorefield_hdmi/ips/anniedale/
AnnOverlayPlane.h 49 virtual bool rotatedBufferReady(BufferMapper& mapper, BufferMapper* &rotatedMapper);
50 virtual bool useOverlayRotation(BufferMapper& mapper);
53 void signalVideoRotation(BufferMapper& mapper);
56 virtual bool setDataBuffer(BufferMapper& mapper);
58 virtual bool bufferOffsetSetup(BufferMapper& mapper);
59 virtual bool coordinateSetup(BufferMapper& mapper);
60 virtual bool scalingSetup(BufferMapper& mapper);

Completed in 427 milliseconds

1 2 3 4 5 6 7 8 91011>>