Searched refs:slot (Results 76 - 100 of 104) sorted by relevance

12345

/frameworks/rs/driver/
H A DrsdRuntimeStubs.cpp131 static void SC_BindTexture(ProgramFragment *pf, uint32_t slot, Allocation *a) { argument
133 rsrBindTexture(rsc, sc, pf, slot, a);
136 static void SC_BindVertexConstant(ProgramVertex *pv, uint32_t slot, Allocation *a) { argument
138 rsrBindConstant(rsc, sc, pv, slot, a);
141 static void SC_BindFragmentConstant(ProgramFragment *pf, uint32_t slot, Allocation *a) { argument
143 rsrBindConstant(rsc, sc, pf, slot, a);
146 static void SC_BindSampler(ProgramFragment *pf, uint32_t slot, Sampler *s) { argument
148 rsrBindSampler(rsc, sc, pf, slot, s);
171 static void SC_BindFrameBufferObjectColorTarget(Allocation *a, uint32_t slot) { argument
173 rsrBindFrameBufferObjectColorTarget(rsc, sc, a, slot);
181 SC_ClearFrameBufferObjectColorTarget(uint32_t slot) argument
[all...]
H A DrsdIntrinsicColorMatrix.cpp35 uint32_t slot, void *data, size_t dataLength) {
38 rsAssert(slot == 0);
34 ColorMatrix_SetVar(const Context *dc, const Script *script, void * intrinsicData, uint32_t slot, void *data, size_t dataLength) argument
H A DrsdShader.h129 const float *fd, int32_t slot, uint32_t arraySize );
H A DrsdIntrinsicBlend.cpp106 switch (p->slot) {
439 ALOGE("Called unimplemented value %d", p->slot);
/frameworks/base/graphics/java/android/renderscript/
H A DMesh.java110 * @param slot index in the list of allocations to return
114 public Allocation getVertexAllocation(int slot) { argument
115 return mVertexBuffers[slot];
132 * @param slot locaton within the list of index set allocation
137 public Allocation getIndexSetAllocation(int slot) { argument
138 return mIndexBuffers[slot];
142 * @param slot locaiton within the list of index set primitives
146 public Primitive getPrimitive(int slot) { argument
147 return mPrimitives[slot];
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DCommandQueue.java80 public void addIcon(String slot, int index, int viewIndex, StatusBarIcon icon); argument
81 public void updateIcon(String slot, int index, int viewIndex, argument
83 public void removeIcon(String slot, int index, int viewIndex); argument
H A DStatusBarIconView.java54 public StatusBarIconView(Context context, String slot, Notification notification) { argument
57 mSlot = slot;
123 Slog.w(TAG, "No icon for slot " + mSlot);
231 Log.d("View", debugIndent(depth) + "slot=" + mSlot);
278 return "StatusBarIconView(slot=" + mSlot + " icon=" + mIcon
/frameworks/compile/libbcc/lib/Renderscript/
H A DRSInfoExtractor.cpp53 // Name of metadata node where RS object slot info resides (should be
350 uint32_t slot; local
351 if (val.getAsInteger(10, slot)) {
352 ALOGE("Non-integer object slot value '%s' in %s!", val.str().c_str(),
356 result->mObjectSlots.editItemAt(slot) = 1;
H A DRSInfoWriter.cpp85 pResult.slot = *pItem;
H A DRSInfoReader.cpp97 pResult.push(pItem.slot);
/frameworks/base/libs/hwui/
H A DCaches.cpp348 GLuint slot = currentProgram->position; local
349 glVertexAttribPointer(slot, 2, GL_FLOAT, GL_FALSE, stride, vertices);
357 GLuint slot = currentProgram->texCoords; local
358 glVertexAttribPointer(slot, 2, GL_FLOAT, GL_FALSE, gMeshStride, vertices);
H A DSkiaShader.cpp48 static inline void bindUniformColor(int slot, uint32_t color) { argument
50 glUniform4f(slot,
/frameworks/base/core/tests/coretests/src/android/util/
H A DListItemFactory.java104 for (Slot slot : slots) {
105 switch (slot) {
/frameworks/base/tests/StatusBar/src/com/android/statusbartest/
H A DStatusBarTest.java326 for (String slot: new String[] {
337 mStatusBarManager.setIconVisibility(slot, true);
/frameworks/support/renderscript/v8/rs_support/driver/
H A DrsdIntrinsicColorMatrix.cpp35 uint32_t slot, void *data, size_t dataLength) {
38 rsAssert(slot == 0);
34 ColorMatrix_SetVar(const Context *dc, const Script *script, void * intrinsicData, uint32_t slot, void *data, size_t dataLength) argument
H A DrsdIntrinsicBlend.cpp109 switch (p->slot) {
442 ALOGE("Called unimplemented value %d", p->slot);
/frameworks/native/libs/gui/
H A DSurfaceTexture.cpp166 int slot = item->mBuf; local
168 if (mEglSlots[slot].mEglImage != EGL_NO_IMAGE_KHR) {
169 eglDestroyImageKHR(mEglDisplay, mEglSlots[slot].mEglImage);
170 mEglSlots[slot].mEglImage = EGL_NO_IMAGE_KHR;
177 if (mEglSlots[slot].mEglImage == EGL_NO_IMAGE_KHR) {
178 EGLImageKHR image = createImage(mEglDisplay, mSlots[slot].mGraphicBuffer);
182 mEglSlots[slot].mEglImage = image;
262 "(slot %d): %#04x", image, buf, error);
277 ST_LOGV("updateTexImage: (slot=%d buf=%p) -> (slot
[all...]
/frameworks/support/renderscript/v8/rs_support/
H A DrsContext.cpp403 void rsi_ContextBindSampler(Context *rsc, uint32_t slot, RsSampler vs) { argument
406 if (slot > RS_MAX_SAMPLER_SLOT) {
407 ALOGE("Invalid sampler slot");
411 s->bindToContext(&rsc->mStateSampler, slot);
/frameworks/compile/libbcc/include/bcc/Renderscript/
H A DRSInfo.h96 uint32_t slot; member in struct:bcc::rsinfo::ObjectSlotItem
127 { return "rs object slot"; }
/frameworks/native/opengl/libs/EGL/
H A DeglApi.cpp748 const int slot = sGLExtentionSlot; local
750 ALOGE_IF(slot >= MAX_NUMBER_OF_GL_EXTENSIONS,
758 if (!addr && (slot < MAX_NUMBER_OF_GL_EXTENSIONS)) {
765 cnx->hooks[egl_connection_t::GLESv1_INDEX]->ext.extensions[slot] =
766 cnx->hooks[egl_connection_t::GLESv2_INDEX]->ext.extensions[slot] =
768 debugHooks->ext.extensions[slot] =
769 gHooksTrace.ext.extensions[slot] =
775 addr = gExtensionForwarders[slot];
/frameworks/base/services/input/
H A DInputReader.cpp65 // Maximum number of slots supported when using the slot-based Multitouch Protocol B.
1408 slot.clear();
1561 // Query the driver for the current slot index and use it as the initial slot
1563 // current slot index will not be the same as it was when the first event was
1574 ALOGD("Could not retrieve current multitouch slot index. status=%d", status);
1607 ALOGW("MultiTouch device emitted invalid slot index %d but it "
1608 "should be between 0 and %d; ignoring this slot.",
1613 Slot* slot = &mSlots[mCurrentSlot]; local
1617 slot
[all...]
/frameworks/av/cmds/stagefright/
H A Dstagefright.cpp104 size_t slot = ((x - minUs) * 100) / (maxUs - minUs); local
105 if (slot == 100) { slot = 99; }
107 ++counts[slot];
/frameworks/native/include/gui/
H A DBufferQueue.h114 virtual status_t requestBuffer(int slot, sp<GraphicBuffer>* buf);
116 // dequeueBuffer gets the next buffer slot index for the client to use. If a
117 // buffer slot is available then that slot index is written to the location
119 // slot is available then a status of -EBUSY is returned and buf is
185 // mGraphicBuffer points to the buffer allocated for this slot or is NULL
189 // mCrop is the current crop rectangle for this buffer slot.
192 // mTransform is the current transform flags for this buffer slot.
195 // mScalingMode is the current scaling mode for this buffer slot.
198 // mTimestamp is the current timestamp for this buffer slot
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
H A DTabletStatusBar.java836 public void addIcon(String slot, int index, int viewIndex, StatusBarIcon icon) { argument
837 if (DEBUG) Slog.d(TAG, "addIcon(" + slot + ") -> " + icon);
840 public void updateIcon(String slot, int index, int viewIndex, argument
842 if (DEBUG) Slog.d(TAG, "updateIcon(" + slot + ") -> " + icon);
845 public void removeIcon(String slot, int index, int viewIndex) { argument
846 if (DEBUG) Slog.d(TAG, "removeIcon(" + slot + ")");
/frameworks/rs/
H A DrsContext.cpp689 void rsi_ContextBindSampler(Context *rsc, uint32_t slot, RsSampler vs) { argument
692 if (slot > RS_MAX_SAMPLER_SLOT) {
693 ALOGE("Invalid sampler slot");
697 s->bindToContext(&rsc->mStateSampler, slot);

Completed in 2334 milliseconds

12345