Home
last modified time | relevance | path

Searched refs:mSource (Results 1 – 17 of 17) sorted by relevance

/external/swiftshader/src/OpenGL/libGLESv2/
DShader.cpp34 mSource = nullptr; in Shader()
44 delete[] mSource; in ~Shader()
54 delete[] mSource; in setSource()
69 mSource = new char[totalLength + 1]; in setSource()
70 char *code = mSource; in setSource()
89 mSource[totalLength] = '\0'; in setSource()
127 if(!mSource) in getSourceLength()
133 return strlen(mSource) + 1; in getSourceLength()
143 if(mSource) in getSource()
145 index = std::min(bufSize - 1, (int)strlen(mSource)); in getSource()
[all …]
DShader.h81 char *mSource; variable
/external/angle/src/libANGLE/renderer/
DShaderImpl.cpp45 : mHandle(handle), mOptions(options), mSource(source), mResult(false) in TranslateTask()
50 ANGLE_TRACE_EVENT1("gpu.angle", "TranslateTask::run", "source", mSource); in operator ()()
51 const char *source = mSource.c_str(); in operator ()()
62 std::string mSource; member in rx::TranslateTask
/external/angle/src/libANGLE/
DCLProgram.cpp108 copyValue = mSource.c_str(); in getInfo()
109 copySize = mSource.length() + 1u; in getInfo()
211 mSource(std::move(source)) in Program()
220 mSource(mImpl ? mImpl->getSource(errorCode) : std::string{}) in Program()
234 mSource(mImpl ? mImpl->getSource(errorCode) : std::string{}) in Program()
242 mSource(mImpl ? mImpl->getSource(errorCode) : std::string{}) in Program()
264 mSource(mImpl ? mImpl->getSource(errorCode) : std::string{}) in Program()
DShader.cpp199 mState.mSource = stream.str(); in setSource()
235 return mState.mSource.empty() ? 0 : (static_cast<int>(mState.mSource.length()) + 1); in getSourceLength()
287 GetSourceImpl(mState.mSource, bufSize, length, buffer); in getSource()
436 std::istringstream inputSourceStream(mState.mSource); in resolveCompile()
DShader.h67 const std::string &getSource() const { return mSource; } in getSource()
124 std::string mSource; variable
DCLProgram.h104 const std::string mSource; variable
/external/oboe/samples/RhythmGame/src/main/cpp/audio/
DPlayer.cpp22 const AudioProperties properties = mSource->getProperties(); in renderAudio()
27 int64_t totalSourceFrames = mSource->getSize() / properties.channelCount; in renderAudio()
28 const float *data = mSource->getData(); in renderAudio()
DPlayer.h43 : mSource(source) in Player()
55 std::shared_ptr<DataSource> mSource; variable
/external/oboe/src/common/
DDataConversionFlowGraph.cpp41 mSource->setData(buffer, numFrames); in setSource()
130 mSource = std::make_unique<SourceFloat>(sourceChannelCount); in configure()
133 mSource = std::make_unique<SourceI16>(sourceChannelCount); in configure()
148 lastOutput = &mSource->output; in configure()
225 mSource->setData(inputBuffer, numFrames); in write()
DDataConversionFlowGraph.h70 std::unique_ptr<flowgraph::FlowGraphSourceBuffered> mSource;
/external/angle/src/libANGLE/renderer/metal/
DShaderMtl.mm31 : mHandle(handle), mOptions(options), mSource(source), mResult(false)
36 const char *source = mSource.c_str();
47 std::string mSource;
/external/angle/src/libANGLE/renderer/gl/
DShaderGL.cpp34 mSource(source), in TranslateTaskGL()
42 ANGLE_TRACE_EVENT1("gpu.angle", "TranslateTaskGL::run", "source", mSource); in operator ()()
43 const char *source = mSource.c_str(); in operator ()()
61 std::string mSource; member in rx::TranslateTaskGL
/external/angle/src/libANGLE/renderer/d3d/
DShaderD3D.cpp33 mSource(source), in TranslateTaskD3D()
40 ANGLE_TRACE_EVENT1("gpu.angle", "TranslateTask::run", "source", mSource); in operator ()()
46 srcStrings.push_back(mSource.c_str()); in operator ()()
56 std::string mSource; member in rx::TranslateTaskD3D
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DNativeInput.java203 protected int mSource; field in NativeInput.InputEvent
214 return mSource; in getSource()
218 mSource = source; in setSource()
223 this.mSource = source; in initialize()
726 mSource = parcel.readInt(); in readFromParcel()
767 parcel.writeInt(mSource); in writeToParcel()
/external/doclava/src/com/google/doclava/
DSampleCode.java35 String mSource; field in SampleCode
53 mSource = source; in SampleCode()
79 File f = new File(mSource); in setSamplesTOC()
84 System.out.println("-samplecode not a directory: " + mSource); in setSamplesTOC()
106 File f = new File(mSource); in writeSamplesFiles()
111 System.out.println("-samplecode not a directory: " + mSource); in writeSamplesFiles()
DPageMetadata.java61 File mSource; field in PageMetadata
75 mSource = source; in PageMetadata()