Searched refs:ByteArray (Results 1 - 25 of 104) sorted by relevance

12345

/external/webkit/Source/JavaScriptCore/wtf/
H A DByteArray.cpp27 #include "ByteArray.h"
32 PassRefPtr<ByteArray> ByteArray::create(size_t size)
34 unsigned char* buffer = new unsigned char[size + OBJECT_OFFSETOF(ByteArray, m_data)];
36 return adoptRef(new (buffer) ByteArray(size));
H A DByteArray.h35 class ByteArray : public RefCountedBase { class in namespace:WTF
78 this->~ByteArray();
83 static PassRefPtr<ByteArray> create(size_t size);
86 ByteArray(size_t size) function in namespace:WTF
102 using WTF::ByteArray;
/external/webkit/Source/WebCore/ForwardingHeaders/wtf/
H A DByteArray.h3 #include <JavaScriptCore/ByteArray.h>
/external/javassist/src/main/javassist/bytecode/
H A DInnerClassesAttribute.java48 ByteArray.write16bit(0, get(), 0);
54 public int tableLength() { return ByteArray.readU16bit(get(), 0); }
60 return ByteArray.readU16bit(get(), nth * 8 + 2);
82 ByteArray.write16bit(index, get(), nth * 8 + 2);
89 return ByteArray.readU16bit(get(), nth * 8 + 4);
111 ByteArray.write16bit(index, get(), nth * 8 + 4);
118 return ByteArray.readU16bit(get(), nth * 8 + 6);
140 ByteArray.write16bit(index, get(), nth * 8 + 6);
147 return ByteArray.readU16bit(get(), nth * 8 + 8);
155 ByteArray
[all...]
H A DLocalVariableAttribute.java41 ByteArray.write16bit(0, info, 0);
57 ByteArray.write16bit(0, info, 0);
83 ByteArray.write16bit(tableLength() + 1, newInfo, 0);
87 ByteArray.write16bit(startPc, newInfo, size);
88 ByteArray.write16bit(length, newInfo, size + 2);
89 ByteArray.write16bit(nameIndex, newInfo, size + 4);
90 ByteArray.write16bit(descriptorIndex, newInfo, size + 6);
91 ByteArray.write16bit(index, newInfo, size + 8);
100 int index = ByteArray.readU16bit(info, pos + 6);
104 ByteArray
[all...]
H A DStackMap.java67 return ByteArray.readU16bit(info, 0);
141 int num = ByteArray.readU16bit(info, 0);
144 int offset = ByteArray.readU16bit(info, pos);
145 int numLoc = ByteArray.readU16bit(info, pos + 2);
147 int numStack = ByteArray.readU16bit(info, pos);
186 int clazz = ByteArray.readU16bit(info, pos + 1);
191 int offsetOfNew = ByteArray.readU16bit(info, pos + 1);
237 int num = ByteArray.readU16bit(info, 0);
238 ByteArray.write16bit(num, dest, 0);
243 ByteArray
[all...]
H A DExceptionsAttribute.java90 int index = ByteArray.readU16bit(src, i);
91 ByteArray.write16bit(srcCp.copy(index, destCp, classnames),
140 ByteArray.write16bit(n, blist, 0);
142 ByteArray.write16bit(elist[i], blist, i * 2 + 2);
153 ByteArray.write16bit(n, blist, 0);
155 ByteArray.write16bit(constPool.addClassInfo(elist[i]),
H A DCodeIterator.java125 return ByteArray.readU16bit(bytecode, index);
132 return ByteArray.readS16bit(bytecode, index);
139 ByteArray.write16bit(value, bytecode, index);
146 return ByteArray.read32bit(bytecode, index);
153 ByteArray.write32bit(value, bytecode, index);
279 int mref = ByteArray.readU16bit(bytecode, index + 1);
758 int npairs = ByteArray.read32bit(code, index2);
762 int low = ByteArray.read32bit(code, index2);
763 int high = ByteArray.read32bit(code, index2 + 4);
876 ByteArray
[all...]
H A DLineNumberAttribute.java46 return ByteArray.readU16bit(info, 0);
57 return ByteArray.readU16bit(info, i * 4 + 2);
68 return ByteArray.readU16bit(info, i * 4 + 4);
176 int pc = ByteArray.readU16bit(info, pos);
178 ByteArray.write16bit(pc + gapLength, info, pos);
/external/webkit/Source/WebCore/html/canvas/
H A DCanvasPixelArray.h32 #include <wtf/ByteArray.h>
43 static PassRefPtr<CanvasPixelArray> create(PassRefPtr<ByteArray>);
45 ByteArray* data() { return m_data.get(); }
46 const ByteArray* data() const { return m_data.get(); }
71 CanvasPixelArray(PassRefPtr<ByteArray>);
73 RefPtr<ByteArray> m_data;
H A DCanvasPixelArray.cpp39 PassRefPtr<CanvasPixelArray> CanvasPixelArray::create(PassRefPtr<ByteArray> byteArray)
45 : m_data(ByteArray::create(length))
49 CanvasPixelArray::CanvasPixelArray(PassRefPtr<ByteArray> byteArray)
/external/webkit/Source/WebCore/html/
H A DImageData.h34 #include <wtf/ByteArray.h>
43 static PassRefPtr<ImageData> create(const IntSize&, PassRefPtr<ByteArray>);
52 ImageData(const IntSize&, PassRefPtr<ByteArray>);
H A DImageData.cpp39 PassRefPtr<ImageData> ImageData::create(const IntSize& size, PassRefPtr<ByteArray> byteArray)
50 ImageData::ImageData(const IntSize& size, PassRefPtr<ByteArray> byteArray)
/external/webkit/Source/WebCore/platform/graphics/filters/
H A DFilterEffect.h29 #include <wtf/ByteArray.h>
60 PassRefPtr<ByteArray> asUnmultipliedImage(const IntRect&);
61 PassRefPtr<ByteArray> asPremultipliedImage(const IntRect&);
62 void copyUnmultipliedImage(ByteArray* destination, const IntRect&);
63 void copyPremultipliedImage(ByteArray* destination, const IntRect&);
118 ByteArray* createUnmultipliedImageResult();
119 ByteArray* createPremultipliedImageResult();
123 RefPtr<ByteArray> m_unmultipliedImageResult;
124 RefPtr<ByteArray> m_premultipliedImageResult;
137 inline void copyImageBytes(ByteArray* sourc
[all...]
H A DFilterEffect.cpp30 #include <wtf/ByteArray.h>
113 PassRefPtr<ByteArray> FilterEffect::asUnmultipliedImage(const IntRect& rect)
116 RefPtr<ByteArray> imageData = ByteArray::create(rect.width() * rect.height() * 4);
121 PassRefPtr<ByteArray> FilterEffect::asPremultipliedImage(const IntRect& rect)
124 RefPtr<ByteArray> imageData = ByteArray::create(rect.width() * rect.height() * 4);
129 inline void FilterEffect::copyImageBytes(ByteArray* source, ByteArray* destination, const IntRect& rect)
173 void FilterEffect::copyUnmultipliedImage(ByteArray* destinatio
[all...]
H A DFELighting.h35 #include <wtf/ByteArray.h>
56 ByteArray* pixels;
75 bool drawLighting(ByteArray*, int, int);
/external/webkit/Source/WebCore/platform/graphics/cg/
H A DImageBufferDataCG.h28 #include <wtf/ByteArray.h>
57 PassRefPtr<ByteArray> getData(const IntRect& rect, const IntSize& size, bool accelerateRendering, bool unmultiplied) const;
58 void putData(ByteArray*& source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint, const IntSize& size, bool accelerateRendering, bool unmultiplied);
/external/llvm/tools/llvm-mc/
H A DDisassembler.cpp96 static bool ByteArrayFromString(ByteArrayTy &ByteArray, argument
132 ByteArray.clear();
136 ByteArray.push_back(std::make_pair((unsigned char)ByteVal, Value.data()));
162 ByteArrayTy ByteArray; local
165 ErrorOccurred |= ByteArrayFromString(ByteArray, Str, SM);
167 if (!ByteArray.empty())
168 ErrorOccurred |= PrintInsts(*DisAsm, ByteArray, SM, Out, Streamer);
174 ByteArrayTy &ByteArray = *((ByteArrayTy*)Arg); local
176 if (A >= ByteArray.size())
179 *B = ByteArray[
204 ByteArrayTy ByteArray; local
[all...]
/external/v8/src/
H A Dinterpreter-irregexp.h40 Handle<ByteArray> code,
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DOutput.java91 * Writes a {@link ByteArray} to this instance.
95 public void write(ByteArray bytes);
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
H A DOutput.java103 * Writes a {@link org.jf.dexlib.Util.ByteArray} to this instance.
107 public void write(ByteArray bytes);
H A DByteArray.java33 public final class ByteArray { class
52 public ByteArray(byte[] bytes, int start, int end) { method in class:ByteArray
79 public ByteArray(byte[] bytes) { method in class:ByteArray
100 public ByteArray slice(int start, int end) {
102 return new ByteArray(bytes, start + this.start, end + this.start);
/external/webkit/Source/WebCore/platform/graphics/wx/
H A DImageBufferWx.cpp63 PassRefPtr<ByteArray> ImageBuffer::getUnmultipliedImageData(const IntRect& rect) const
69 PassRefPtr<ByteArray> ImageBuffer::getPremultipliedImageData(const IntRect& rect) const
75 void ImageBuffer::putUnmultipliedImageData(ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint)
80 void ImageBuffer::putPremultipliedImageData(ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint)
/external/webkit/Source/WebCore/platform/graphics/
H A DImageBuffer.h37 #include <wtf/ByteArray.h>
89 PassRefPtr<ByteArray> getUnmultipliedImageData(const IntRect&) const;
90 PassRefPtr<ByteArray> getPremultipliedImageData(const IntRect&) const;
92 void putUnmultipliedImageData(ByteArray*, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint);
93 void putPremultipliedImageData(ByteArray*, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint);
/external/webkit/Source/JavaScriptCore/runtime/
H A DJSByteArray.h31 #include <wtf/ByteArray.h>
78 JSByteArray(ExecState*, Structure*, WTF::ByteArray* storage);
93 WTF::ByteArray* storage() const { return m_storage.get(); }
108 RefPtr<WTF::ByteArray> m_storage;

Completed in 404 milliseconds

12345