Searched refs:vs (Results 1 - 25 of 34) sorted by last modified time

12

/frameworks/rs/
H A DrsContext.cpp751 void rsi_ContextBindRootScript(Context *rsc, RsScript vs) { argument
753 Script *s = static_cast<Script *>(vs);
762 void rsi_ContextBindSampler(Context *rsc, uint32_t slot, RsSampler vs) { argument
763 Sampler *s = static_cast<Sampler *>(vs);
H A DrsScript.cpp149 RsScriptKernelID rsi_ScriptKernelIDCreate(Context *rsc, RsScript vs, int slot, int sig) { argument
150 ScriptKernelID *kid = new ScriptKernelID(rsc, (Script *)vs, slot, sig);
155 RsScriptInvokeID rsi_ScriptInvokeIDCreate(Context *rsc, RsScript vs, uint32_t slot) { argument
156 ScriptInvokeID *iid = new ScriptInvokeID(rsc, (Script *)vs, slot);
161 RsScriptFieldID rsi_ScriptFieldIDCreate(Context *rsc, RsScript vs, int slot) { argument
162 ScriptFieldID *fid = new ScriptFieldID(rsc, (Script *)vs, slot);
167 void rsi_ScriptBindAllocation(Context * rsc, RsScript vs, RsAllocation va, uint32_t slot) { argument
168 Script *s = static_cast<Script *>(vs);
173 void rsi_ScriptSetTimeZone(Context * rsc, RsScript vs, const char * timeZone, size_t length) { argument
192 void rsi_ScriptForEachMulti(Context *rsc, RsScript vs, uint32_ argument
207 rsi_ScriptForEach(Context *rsc, RsScript vs, uint32_t slot, RsAllocation vain, RsAllocation vaout, const void *params, size_t paramLen, const RsScriptCall *sc, size_t scLen) argument
224 rsi_ScriptReduce(Context *rsc, RsScript vs, uint32_t slot, RsAllocation *vains, size_t inLen, RsAllocation vaout, const RsScriptCall *sc, size_t scLen) argument
236 rsi_ScriptInvoke(Context *rsc, RsScript vs, uint32_t slot) argument
242 rsi_ScriptInvokeData(Context *rsc, RsScript vs, uint32_t slot, void *data) argument
247 rsi_ScriptInvokeV(Context *rsc, RsScript vs, uint32_t slot, const void *data, size_t len) argument
252 rsi_ScriptSetVarI(Context *rsc, RsScript vs, uint32_t slot, int value) argument
257 rsi_ScriptSetVarObj(Context *rsc, RsScript vs, uint32_t slot, RsObjectBase value) argument
263 rsi_ScriptSetVarJ(Context *rsc, RsScript vs, uint32_t slot, int64_t value) argument
268 rsi_ScriptSetVarF(Context *rsc, RsScript vs, uint32_t slot, float value) argument
273 rsi_ScriptSetVarD(Context *rsc, RsScript vs, uint32_t slot, double value) argument
278 rsi_ScriptSetVarV(Context *rsc, RsScript vs, uint32_t slot, const void *data, size_t len) argument
283 rsi_ScriptGetVarV(Context *rsc, RsScript vs, uint32_t slot, void *data, size_t len) argument
288 rsi_ScriptSetVarVE(Context *rsc, RsScript vs, uint32_t slot, const void *data, size_t len, RsElement ve, const uint32_t *dims, size_t dimLen) argument
[all...]
H A DrsScriptC_LibGL.cpp64 CHECK_OBJ_OR_NULL(vs);
/frameworks/rs/support/java/src/android/support/v8/renderscript/
H A DScriptGroup.java231 ValueAndSize vs = new ValueAndSize(rs, obj);
232 values[index] = vs.value;
233 sizes[index] = vs.size;
282 ValueAndSize vs = new ValueAndSize(mRS, obj);
283 mRS.nClosureSetArg(getID(mRS), index, vs.value, vs.size);
291 ValueAndSize vs = new ValueAndSize(mRS, obj);
292 mRS.nClosureSetGlobal(getID(mRS), fieldID.getID(mRS), vs.value, vs.size);
/frameworks/native/cmds/flatland/
H A DGLHelper.cpp375 static bool linkShaderProgram(GLuint vs, GLuint fs, GLuint* outPgm) { argument
382 glAttachShader(program, vs);
411 GLuint vs, fs; local
414 shaderDescs[i].vertexShader, &vs);
422 glDeleteShader(vs);
426 result = linkShaderProgram(vs, fs, &mShaderPrograms[i]);
427 glDeleteShader(vs);
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DProgramCache.cpp137 Formatter vs; local
139 vs << "attribute vec4 texCoords;"
142 vs << "attribute vec4 position;"
148 vs << "outTexCoords = (texture * texCoords).st;";
150 vs << dedent << "}";
151 return vs.getString();
216 String8 vs = generateVertexShader(needs); local
221 Program* program = new Program(needs, vs.string(), fs.string());
/frameworks/minikin/include/minikin/
H A DFontCollection.h79 const std::shared_ptr<FontFamily>& getFamilyForChar(uint32_t ch, uint32_t vs,
82 uint32_t calcFamilyScore(uint32_t ch, uint32_t vs, int variant, uint32_t langListId,
85 uint32_t calcCoverageScore(uint32_t ch, uint32_t vs,
/frameworks/minikin/libs/minikin/
H A DFontCollection.cpp139 uint32_t FontCollection::calcFamilyScore(uint32_t ch, uint32_t vs, int variant, uint32_t langListId, argument
142 const uint32_t coverageScore = calcCoverageScore(ch, vs, fontFamily);
163 // - Returns 2 if the vs is a color variation selector (U+FE0F) and if the font is an emoji font.
164 // - Returns 2 if the vs is a text variation selector (U+FE0E) and if the font is not an emoji font.
167 uint32_t FontCollection::calcCoverageScore(uint32_t ch, uint32_t vs, argument
169 const bool hasVSGlyph = (vs != 0) && fontFamily->hasGlyph(ch, vs);
175 if ((vs == 0 || hasVSGlyph) && mFamilies[0] == fontFamily) {
181 if (vs == 0) {
189 if (vs
251 getFamilyForChar(uint32_t ch, uint32_t vs, uint32_t langListId, int variant) const argument
[all...]
/frameworks/minikin/tests/stresstest/
H A DFontFamilyTest.cpp50 for (uint32_t vs = VS1; vs < VS256; ++vs) {
52 if (vs == VS16 + 1) {
53 vs = VS17;
57 ASSERT_EQ(family->hasGlyph(codePoint, vs),
58 static_cast<bool>(hb_font_get_glyph(hbFont, codePoint, vs, &unusedGlyph)))
60 << ": U+" << std::hex << codePoint << " U+" << std::hex << vs
61 << " Minikin: " << family->hasGlyph(codePoint, vs)
63 << static_cast<bool>(hb_font_get_glyph(hbFont, codePoint, vs,
[all...]
/frameworks/minikin/tests/unittest/
H A DFontCollectionTest.cpp44 for (uint32_t vs = 0xFE00; vs <= 0xE01EF; ++vs) {
46 if (vs == 0xFF00) {
47 vs = 0xE0100;
49 if (vsSet.find(vs) == vsSet.end()) {
50 EXPECT_FALSE(fc->hasVariationSelector(codepoint, vs))
51 << "Glyph for U+" << std::hex << codepoint << " U+" << vs; local
53 EXPECT_TRUE(fc->hasVariationSelector(codepoint, vs))
54 << "Glyph for U+" << std::hex << codepoint << " U+" << vs; local
[all...]
H A DFontFamilyTest.cpp520 void expectVSGlyphs(FontFamily* family, uint32_t codepoint, const std::set<uint32_t>& vs) { argument
526 if (vs.find(i) == vs.end()) {
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...
/frameworks/base/tools/fonts/
H A Dfontchain_lint.py119 for vs in vs_dict:
120 for base, glyph in vs_dict[vs]:
122 emoji_map[(base, vs)] = emoji_map[base]
124 emoji_map[(base, vs)] = glyph
174 for base, vs in sorted(sequences):
175 assert vs in vs_dict and (base, None) in vs_dict[vs], (
176 '<U+%04X, U+%04X> was not found in %s' % (base, vs, font))
404 vs = int(sequence[1], 16)
407 text_set.add((base, vs))
[all...]
/frameworks/base/rs/java/android/renderscript/
H A DProgram.java184 * @param vs sampler for a corresponding texture
189 public void bindSampler(Sampler vs, int slot) argument
196 long id = vs != null ? vs.getID(mRS) : 0;
H A DScriptGroup.java234 ValueAndSize vs = new ValueAndSize(rs, obj);
235 values[index] = vs.value;
236 sizes[index] = vs.size;
285 ValueAndSize vs = new ValueAndSize(mRS, obj);
286 mRS.nClosureSetArg(getID(mRS), index, vs.value, vs.size);
294 ValueAndSize vs = new ValueAndSize(mRS, obj);
295 mRS.nClosureSetGlobal(getID(mRS), fieldID.getID(mRS), vs.value, vs.size);
/frameworks/base/libs/hwui/hwui/
H A DMinikinUtils.cpp76 bool MinikinUtils::hasVariationSelector(Typeface* typeface, uint32_t codepoint, uint32_t vs) { argument
78 return resolvedFace->fFontCollection->hasVariationSelector(codepoint, vs);
H A DMinikinUtils.h48 uint32_t vs);
/frameworks/base/media/jni/
H A Dandroid_media_MediaRecorder.cpp186 android_media_MediaRecorder_setVideoSource(JNIEnv *env, jobject thiz, jint vs) argument
188 ALOGV("setVideoSource(%d)", vs);
189 if (vs < VIDEO_SOURCE_DEFAULT || vs >= VIDEO_SOURCE_LIST_END) {
198 process_media_recorder_call(env, mr->setVideoSource(vs), "java/lang/RuntimeException", "setVideoSource failed.");
/frameworks/base/core/tests/coretests/src/android/graphics/
H A DPaintTest.java141 for (int vs = 0xFE00; vs <= 0xE01EF; ++vs) {
143 if (vs == 0xFF00) {
144 vs = 0xE0100;
148 " U+" + Integer.toHexString(vs) + ")";
150 codePointsToString(new int[] {testCase.mBaseCodepoint, vs});
151 if (testCase.mVariationSelectors.contains(vs)) {
/frameworks/base/core/java/android/widget/
H A DTextView.java8693 int vs = mScrollY;
8695 if (top - vs < vslack) {
8696 vs = top - vslack;
8698 if (bottom - vs > vspace - vslack) {
8699 vs = bottom - (vspace - vslack);
8701 if (ht - vs < vspace) {
8702 vs = ht - vspace;
8704 if (0 - vs > 0) {
8705 vs = 0;
8772 if (hs != mScrollX || vs !
[all...]
/frameworks/av/cmds/screenrecord/
H A DProgram.cpp114 GLuint vs, fs; local
117 err = compileShader(GL_VERTEX_SHADER, vertexShader, &vs);
123 glDeleteShader(vs);
128 err = linkShaderProgram(vs, fs, &program);
129 glDeleteShader(vs);
169 status_t Program::linkShaderProgram(GLuint vs, GLuint fs, GLuint* outPgm) { argument
176 glAttachShader(program, vs);
H A DProgram.h80 static status_t linkShaderProgram(GLuint vs, GLuint fs, GLuint* outPgm);
/frameworks/av/include/media/
H A DIMediaRecorder.h42 virtual status_t setVideoSource(int vs) = 0;
H A DMediaRecorderBase.h38 virtual status_t setVideoSource(video_source vs) = 0;
H A Dmediarecorder.h227 status_t setVideoSource(int vs);

Completed in 5747 milliseconds

12