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

1 2

  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebAudioDevice.cpp 30 void WebAudioDevice::RenderCallback::render(const WebVector<float*>& sourceData, const WebVector<float*>& destinationData, size_t numberOfFrames)
  /external/chromium_org/third_party/WebKit/public/platform/
WebAudioDevice.h 43 virtual void render(const WebVector<float*>& sourceData, const WebVector<float*>& destinationData, size_t numberOfFrames);
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/
generatemip.h 21 const uint8_t *sourceData, size_t sourceRowPitch, size_t sourceDepthPitch,
loadimageSSE2.cpp 39 __m128i sourceData = _mm_loadl_epi64(reinterpret_cast<const __m128i*>(&source[x]));
41 sourceData = _mm_unpacklo_epi8(zeroWide, sourceData);
43 __m128i lo = _mm_unpacklo_epi16(zeroWide, sourceData);
44 __m128i hi = _mm_unpackhi_epi16(zeroWide, sourceData);
83 __m128i sourceData = _mm_loadu_si128(reinterpret_cast<const __m128i*>(&source[x]));
85 __m128i gaComponents = _mm_andnot_si128(brMask, sourceData);
87 __m128i brComponents = _mm_and_si128(sourceData, brMask);
  /frameworks/base/tools/aapt/tests/
CrunchCache_test.cpp 33 KeyedVector<String8, time_t> sourceData;
35 sourceData.add(String8("res/drawable/hello.png"),3);
37 sourceData.add(String8("res/drawable/world.png"),5);
39 sourceData.add(String8("res/drawable-cool/hello.png"),3);
49 data.add(source,sourceData);
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/transforms/
TexImageTransform.java 279 private byte[] addAlphaChannel(byte[] sourceData, int width, int height) {
280 assert sourceData.length == 3 * width * height; // should have R, G & B channels
284 for (int src = 0, dst = 0; src < sourceData.length; src += 3, dst += 4) {
285 data[dst + 0] = sourceData[src + 0]; // copy R byte
286 data[dst + 1] = sourceData[src + 1]; // copy G byte
287 data[dst + 2] = sourceData[src + 2]; // copy B byte
294 private byte[] addRGBChannels(byte[] sourceData, int width, int height) {
295 assert sourceData.length == width * height; // should have a single alpha channel
299 for (int src = 0, dst = 0; src < sourceData.length; src++, dst += 4) {
301 data[dst + 3] = sourceData[src]; // copy over alph
    [all...]
  /libcore/support/src/test/java/tests/security/
MessageDigestTest.java 34 private InputStream sourceData;
43 this.sourceData = getSourceData();
64 sourceData.close();
65 sourceData = null;
107 while ((read = sourceData.read(buf)) != -1) {
110 sourceData.close();
130 while ((val = sourceData.read()) != -1) {
133 sourceData.close();
  /external/chromium_org/third_party/WebKit/Source/platform/audio/
AudioFIFO.cpp 63 const float* sourceData = m_fifoAudioBus->channel(channelIndex)->data();
73 memcpy(destinationData, sourceData + m_readIndex, part1Length * sizeof(*sourceData));
76 memcpy(destinationData + part1Length, sourceData, part2Length * sizeof(*sourceData));
AudioDestination.cpp 138 void AudioDestination::render(const WebVector<float*>& sourceData, const WebVector<float*>& audioData, size_t numberOfFrames)
153 if (sourceData.size() >= 2) {
156 wrapperBus->setChannelMemory(0, sourceData[0], numberOfFrames);
157 wrapperBus->setChannelMemory(1, sourceData[1], numberOfFrames);
AudioDestination.h 64 virtual void render(const WebVector<float*>& sourceData, const WebVector<float*>& audioData, size_t numberOfFrames) OVERRIDE;
AudioArray.h 133 void copyToRange(const T* sourceData, unsigned start, unsigned end)
142 memcpy(this->data() + start, sourceData, sizeof(T) * (end - start));
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
Matrix2fTest.java 200 float[] sourceData = {
205 rotated[0] = rotate[0] * sourceData[0] + rotate[1] * sourceData[2];
206 rotated[1] = rotate[0] * sourceData[1] + rotate[1] * sourceData[3];
207 rotated[2] = rotate[2] * sourceData[0] + rotate[3] * sourceData[2];
208 rotated[3] = rotate[2] * sourceData[1] + rotate[3] * sourceData[3];
209 m = new Matrix2f(sourceData);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorStyleSheet.cpp 332 RuleSourceDataList sourceData;
336 StyleSheetHandler handler(commentText, m_document, m_styleSheetContents, &sourceData);
339 WillBeHeapVector<CSSPropertySourceData>& commentPropertyData = sourceData.first()->styleSourceData->propertyData;
431 void ParsedStyleSheet::setSourceData(PassOwnPtrWillBeRawPtr<RuleSourceDataList> sourceData)
433 if (!sourceData) {
439 // FIXME: This is a temporary solution to retain the original flat sourceData structure
441 // Normally, we should just assign m_sourceData = sourceData;
442 flattenSourceData(sourceData.get());
511 RefPtrWillBeRawPtr<CSSRuleSourceData> sourceData = extractSourceData();
512 if (sourceData)
    [all...]
InspectorStyleSheet.h 85 explicit InspectorStyleProperty(CSSPropertySourceData sourceData)
86 : sourceData(sourceData)
91 InspectorStyleProperty(CSSPropertySourceData sourceData, bool hasSource)
92 : sourceData(sourceData)
99 void trace(Visitor* visitor) { visitor->trace(sourceData); }
101 CSSPropertySourceData sourceData;
InspectorStyleTextEditor.cpp 51 propertyStart = property.sourceData.range.start - m_styleRange.start;
117 const SourceRange& range = property.sourceData.range;
  /external/chromium_org/third_party/skia/src/core/
SkConvolver.cpp 361 void BGRAConvolve2D(const unsigned char* sourceData,
436 src[i] = &sourceData[(uint64_t)(nextXRow + i) * sourceByteRowStride];
447 &sourceData[(uint64_t)nextXRow * sourceByteRowStride],
452 &sourceData[(uint64_t)nextXRow * sourceByteRowStride],
456 &sourceData[(uint64_t)nextXRow * sourceByteRowStride],
SkConvolver.h 195 SK_API void BGRAConvolve2D(const unsigned char* sourceData,
  /external/skia/src/core/
SkConvolver.cpp 333 void BGRAConvolve2D(const unsigned char* sourceData,
408 src[i] = &sourceData[(uint64_t)(nextXRow + i) * sourceByteRowStride];
419 &sourceData[(uint64_t)nextXRow * sourceByteRowStride],
424 &sourceData[(uint64_t)nextXRow * sourceByteRowStride],
428 &sourceData[(uint64_t)nextXRow * sourceByteRowStride],
SkConvolver.h 195 SK_API void BGRAConvolve2D(const unsigned char* sourceData,
  /development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/core/
VoicemailImpl.java 132 public Builder setSourceData(String sourceData) {
133 mBuilderSourceData = sourceData;
VoicemailProviderHelpers.java 160 public Voicemail findVoicemailBySourceData(String sourceData) {
164 DbQueryUtils.getEqualityClause(Voicemails.SOURCE_DATA, sourceData),
167 logger.w("Expected 1 voicemail matching sourceData " + sourceData + ", got " +
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/gpu/
WebGLImageConversion.h 163 static bool packPixels(const uint8_t* sourceData, DataFormat sourceDataFormat, unsigned width, unsigned height, unsigned sourceUnpackAlignment, unsigned destinationFormat, unsigned destinationType, AlphaOp, void* destinationData, bool flipY);
  /external/chromium_org/third_party/angle/src/libGLESv2/
formatutils.h 21 const uint8_t *sourceData, size_t sourceRowPitch, size_t sourceDepthPitch,
  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/test/BWEStandAlone/
MatlabPlot.h 48 void UpdateTrendLine(MatlabLine * sourceData, double slope, double offset);
MatlabPlot.cc 260 void MatlabLine::UpdateTrendLine(MatlabLine * sourceData, double slope, double offset)
264 double thexMin = sourceData->xMin();
265 double thexMax = sourceData->xMax();

Completed in 385 milliseconds

1 2