HomeSort by relevance Sort by last modified time
    Searched refs:slot (Results 176 - 200 of 970) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilts/ndk/9/platforms/android-4/arch-arm/usr/include/linux/
efs_dir.h 40 #define EFS_SLOTAT(dir, slot) EFS_REALOFF((dir)->space[slot])
pci.h 19 #define PCI_DEVFN(slot,func) ((((slot) & 0x1f) << 3) | ((func) & 0x07))
  /prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/linux/
efs_dir.h 40 #define EFS_SLOTAT(dir, slot) EFS_REALOFF((dir)->space[slot])
pci.h 19 #define PCI_DEVFN(slot,func) ((((slot) & 0x1f) << 3) | ((func) & 0x07))
  /prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/linux/
efs_dir.h 40 #define EFS_SLOTAT(dir, slot) EFS_REALOFF((dir)->space[slot])
pci.h 19 #define PCI_DEVFN(slot,func) ((((slot) & 0x1f) << 3) | ((func) & 0x07))
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/linux/
efs_dir.h 40 #define EFS_SLOTAT(dir, slot) EFS_REALOFF((dir)->space[slot])
pci.h 19 #define PCI_DEVFN(slot,func) ((((slot) & 0x1f) << 3) | ((func) & 0x07))
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/linux/
efs_dir.h 40 #define EFS_SLOTAT(dir, slot) EFS_REALOFF((dir)->space[slot])
pci.h 19 #define PCI_DEVFN(slot,func) ((((slot) & 0x1f) << 3) | ((func) & 0x07))
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/
efs_dir.h 40 #define EFS_SLOTAT(dir, slot) EFS_REALOFF((dir)->space[slot])
pci.h 19 #define PCI_DEVFN(slot,func) ((((slot) & 0x1f) << 3) | ((func) & 0x07))
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_program.c 215 unsigned slot = stvp->num_outputs++; local
217 stvp->result_to_output[attr] = slot;
221 stvp->output_semantic_name[slot] = TGSI_SEMANTIC_POSITION;
222 stvp->output_semantic_index[slot] = 0;
225 stvp->output_semantic_name[slot] = TGSI_SEMANTIC_COLOR;
226 stvp->output_semantic_index[slot] = 0;
229 stvp->output_semantic_name[slot] = TGSI_SEMANTIC_COLOR;
230 stvp->output_semantic_index[slot] = 1;
233 stvp->output_semantic_name[slot] = TGSI_SEMANTIC_BCOLOR;
234 stvp->output_semantic_index[slot] = 0
539 const GLuint slot = fs_num_inputs++; local
855 const GLuint slot = gs_num_inputs; local
923 GLuint slot; local
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_program.c 215 unsigned slot = stvp->num_outputs++; local
217 stvp->result_to_output[attr] = slot;
221 stvp->output_semantic_name[slot] = TGSI_SEMANTIC_POSITION;
222 stvp->output_semantic_index[slot] = 0;
225 stvp->output_semantic_name[slot] = TGSI_SEMANTIC_COLOR;
226 stvp->output_semantic_index[slot] = 0;
229 stvp->output_semantic_name[slot] = TGSI_SEMANTIC_COLOR;
230 stvp->output_semantic_index[slot] = 1;
233 stvp->output_semantic_name[slot] = TGSI_SEMANTIC_BCOLOR;
234 stvp->output_semantic_index[slot] = 0
539 const GLuint slot = fs_num_inputs++; local
855 const GLuint slot = gs_num_inputs; local
923 GLuint slot; local
    [all...]
  /external/deqp/framework/delibs/depool/
dePoolSet.h 68 typedef struct TYPENAME##Slot_s TYPENAME##Slot; \
73 TYPENAME##Slot* nextSlot; \
83 TYPENAME##Slot** slotTable; \
84 TYPENAME##Slot* slotFreeList; \
91 const TYPENAME##Slot* curSlot; \
228 TYPENAME##Slot* slot = set->slotTable[slotNdx]; \
229 while (slot) \
231 TYPENAME##Slot* nextSlot = slot->nextSlot;
    [all...]
  /external/chromium_org/net/cert/
nss_profile_filter_chromeos.cc 28 PK11_GetModuleID(slot_element->slot),
29 PK11_GetSlotID(slot_element->slot));
74 bool NSSProfileFilterChromeOS::IsModuleAllowed(PK11SlotInfo* slot) const {
76 if (slot == public_slot_.get() || slot == private_slot_.get())
79 if (PK11_HasRootCerts(slot))
82 if (PK11_IsInternal(slot) && !PK11_IsRemovable(slot))
90 SECMODModule* module_for_slot = PK11_GetModule(slot);
110 if (IsModuleAllowed(slot_element->slot)) {
    [all...]
cert_database_nss.cc 71 PK11SlotInfo* slot = PK11_KeyForCertExists(cert, NULL, NULL); local
72 if (!slot)
75 PK11_FreeSlot(slot);
83 crypto::ScopedPK11Slot slot(PK11_KeyForCertExists(cert, &key, NULL));
84 if (!slot.get())
90 slot.get());
95 rv = PK11_ImportCert(slot.get(), cert, key, nickname.c_str(), PR_FALSE);
  /frameworks/native/services/surfaceflinger/
MonitoredProducer.cpp 55 status_t MonitoredProducer::requestBuffer(int slot, sp<GraphicBuffer>* buf) {
56 return mProducer->requestBuffer(slot, buf);
63 status_t MonitoredProducer::dequeueBuffer(int* slot, sp<Fence>* fence,
65 return mProducer->dequeueBuffer(slot, fence, async, w, h, format, usage);
68 status_t MonitoredProducer::detachBuffer(int slot) {
69 return mProducer->detachBuffer(slot);
82 status_t MonitoredProducer::queueBuffer(int slot, const QueueBufferInput& input,
84 return mProducer->queueBuffer(slot, input, output);
87 void MonitoredProducer::cancelBuffer(int slot, const sp<Fence>& fence) {
88 mProducer->cancelBuffer(slot, fence)
    [all...]
  /frameworks/rs/
rsScript.h 37 ScriptKernelID(Context *rsc, Script *s, int slot, int sig);
51 ScriptFieldID(Context *rsc, Script *s, int slot);
102 void setSlot(uint32_t slot, Allocation *a);
103 void setVar(uint32_t slot, const void *val, size_t len);
104 void getVar(uint32_t slot, const void *val, size_t len);
105 void setVar(uint32_t slot, const void *val, size_t len, Element *e,
107 void setVarObj(uint32_t slot, ObjectBase *val);
112 uint32_t slot,
120 uint32_t slot,
128 virtual void Invoke(Context *rsc, uint32_t slot, const void *data, size_t len) = 0
    [all...]
rsProgram.cpp 152 void Program::bindAllocation(Context *rsc, Allocation *alloc, uint32_t slot) {
154 if (slot >= mHal.state.constantsCount) {
155 ALOGE("Attempt to bind alloc at slot %u, on shader id %" PRIuPTR ", but const count is %u",
156 slot, (uintptr_t)this, mHal.state.constantsCount);
160 if (alloc->getType() != mConstantTypes[slot].get()) {
161 ALOGE("Attempt to bind alloc at slot %u, on shader id %" PRIuPTR ", but types mismatch",
162 slot, (uintptr_t)this);
167 if (mConstants[slot].get() == alloc) {
170 if (mConstants[slot].get()) {
171 mConstants[slot]->removeProgramToDirty(this)
    [all...]
  /external/chromium_org/third_party/freetype/src/autofit/
afloader.c 113 FT_GlyphSlot slot = face->glyph; local
114 FT_Slot_Internal internal = slot->internal;
137 switch ( slot->format )
142 FT_Outline_Translate( &slot->outline,
149 slot->outline.n_points + 4,
150 slot->outline.n_contours );
155 slot->outline.points,
156 slot->outline.n_points );
159 slot->outline.contours,
160 slot->outline.n_contours )
    [all...]
  /external/freetype/src/autofit/
afloader.c 114 FT_GlyphSlot slot = face->glyph; local
115 FT_Slot_Internal internal = slot->internal;
138 switch ( slot->format )
143 FT_Outline_Translate( &slot->outline,
150 slot->outline.n_points + 4,
151 slot->outline.n_contours );
156 slot->outline.points,
157 slot->outline.n_points );
160 slot->outline.contours,
161 slot->outline.n_contours )
    [all...]
  /packages/apps/Gallery/src/com/android/camera/gallery/
ImageListUber.java 66 MergeSlot slot = new MergeSlot(list, i); local
67 if (slot.next()) mQueue.add(slot);
132 MergeSlot slot = nextMergeSlot(); local
133 if (slot == null) return null;
135 IImage result = slot.mImage;
136 if (slot.next()) mQueue.add(slot);
139 if (slot.next()) mQueue.add(slot);
144 MergeSlot slot = mQueue.poll(); local
231 MergeSlot slot = nextMergeSlot(); local
    [all...]
  /external/elfutils/0.153/lib/
fixedsizehash.h 196 struct CONCAT(PREFIX,fshashent) *slot;
198 slot = CONCAT(PREFIX,fshash_lookup) (htab, hval, data);
199 if (slot->hval != 0)
203 slot->hval = hval;
205 slot->entry = data;
207 slot->entry = *data;
220 struct CONCAT(PREFIX,fshashent) *slot;
222 slot = CONCAT(PREFIX,fshash_lookup) (htab, hval, data);
223 if (slot->hval != 0)
227 slot->hval = hval
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/
OldAndroidHashMapTest.java 120 int slot = 0; local
123 slot = 0;
125 slot = 1;
127 slot = 2;
129 slot = 3;
134 if (slots[slot]) {
137 slots[slot] = true;
155 int slot = 0; local
158 slot = 0;
160 slot = 1
190 int slot = 0; local
    [all...]

Completed in 3922 milliseconds

1 2 3 4 5 6 78 91011>>