HomeSort by relevance Sort by last modified time
    Searched defs:slot (Results 26 - 50 of 262) sorted by null

12 3 4 5 6 7 8 91011

  /external/webp/src/enc/
token.c 12 // For dynamic probability, we just record the slot id (idx) for the probability
36 // bits 0..13: slot or constant proba
86 const int slot = --b->left_; local
87 b->tokens_[slot] = (bit << 15) | proba_idx;
97 const int slot = --b->left_; local
98 b->tokens_[slot] = (bit << 15) | FIXED_PROBA_BIT | proba;
  /external/webp/src/utils/
quant_levels.c 80 int s, slot = 0; local
84 // Keep track of the nearest neighbour 'slot'
85 while (slot < num_levels - 1 &&
86 2 * s > inv_q_level[slot] + inv_q_level[slot + 1]) {
87 ++slot;
90 q_sum[slot] += s * freq[s];
91 q_count[slot] += freq[s];
93 q_level[s] = slot;
98 for (slot = 1; slot < num_levels - 1; ++slot)
128 const int slot = q_level[s]; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
pvmp3_imdct_synth.cpp 319 for (int32 slot = 1; slot < FILTERBANK_BANDS; slot += 6)
321 int32 temp1 = out[slot ];
322 int32 temp2 = out[slot+2];
323 int32 temp3 = out[slot+4];
324 out[slot ] = -temp1;
325 out[slot+2] = -temp2;
326 out[slot+4] = -temp3;
336 int32 slot; local
    [all...]
  /frameworks/base/libs/hwui/
Program.cpp 101 int slot = glGetAttribLocation(mProgramId, name); local
102 mAttributes.add(name, slot);
103 return slot;
121 int slot = glGetUniformLocation(mProgramId, name); local
122 mUniforms.add(name, slot);
123 return slot;
  /bionic/libc/bionic/
malloc_debug_common.h 53 size_t slot; member in struct:HashEntry
  /bionic/libc/kernel/common/linux/
mca.h 24 typedef int (*MCA_ProcFn)(char* buf, int slot, void* dev);
36 int slot; member in struct:mca_device
  /dalvik/vm/compiler/codegen/arm/
LocalOptimizations.cpp 384 * direction to find a beneficial slot.
388 int slot; local
396 * Make sure we check slot >= 0 since firstSlot may be negative
399 for (slot = firstSlot; slot >= 0; slot--) {
400 ArmLIR *curLIR = prevInstList[slot];
401 ArmLIR *prevLIR = prevInstList[slot+1];
433 (slot < LD_LATENCY)) {
438 /* Found a slot to hoist to *
    [all...]
  /dalvik/vm/compiler/codegen/mips/
LocalOptimizations.cpp 384 * direction to find a beneficial slot.
388 int slot; local
396 * Make sure we check slot >= 0 since firstSlot may be negative
399 for (slot = firstSlot; slot >= 0; slot--) {
400 MipsLIR *curLIR = prevInstList[slot];
401 MipsLIR *prevLIR = prevInstList[slot+1];
433 (slot < LD_LATENCY)) {
438 /* Found a slot to hoist to *
    [all...]
  /dalvik/vm/native/
java_lang_reflect_Field.cpp 59 int slot, bool isSetOperation, bool noAccessCheck)
63 field = dvmSlotToField(declaringClass, slot);
434 * public int getFieldModifiers(Class declaringClass, int slot)
441 int slot = args[2]; local
444 field = dvmSlotToField(declaringClass, slot);
450 * int slot, boolean noAccessCheck)
461 int slot = args[4]; local
470 field = validateFieldAccess(obj, declaringClass, slot, false,noAccessCheck);
484 * int slot, boolean noAccessCheck, Object value)
496 int slot = args[4] local
529 int slot = args[4]; local
569 int slot = args[4]; local
609 int slot = args[1]; local
628 int slot = args[1]; local
643 int slot = args[1]; local
660 int slot = args[2]; local
    [all...]
  /development/ndk/platforms/android-3/include/linux/
mca.h 19 typedef int (*MCA_ProcFn)(char* buf, int slot, void* dev);
31 int slot; member in struct:mca_device
  /external/chromium/net/base/
cert_database_nss.cc 48 PK11SlotInfo* slot = PK11_KeyForCertExists(cert, NULL, NULL); local
49 if (!slot) {
53 PK11_FreeSlot(slot);
60 PK11SlotInfo* slot = NULL; local
82 slot = PK11_ImportCertForKey(cert,
87 if (!slot) {
91 PK11_FreeSlot(slot);
148 modules->push_back(CryptoModule::CreateFromHandle(slot_element->slot));
273 PK11SlotInfo* slot = cert->os_cert_handle()->slot; local
    [all...]
  /external/chromium/net/disk_cache/
stress_cache.cc 137 int slot = rand() % kNumEntries; local
142 if (entries[slot])
143 entries[slot]->Close();
145 rv = cache->OpenEntry(keys[key], &entries[slot], &cb);
147 rv = cache->CreateEntry(keys[key], &entries[slot], &cb);
154 rv = entries[slot]->WriteData(0, 0, buffer, size, &cb, truncate);
  /external/freetype/src/cache/
ftcsbits.c 133 FT_GlyphSlot slot = face->glyph; local
134 FT_Bitmap* bitmap = &slot->bitmap;
138 if ( slot->format != FT_GLYPH_FORMAT_BITMAP )
153 xadvance = ( slot->advance.x + 32 ) >> 6;
154 yadvance = ( slot->advance.y + 32 ) >> 6;
159 !CHECK_CHAR( slot->bitmap_left ) ||
160 !CHECK_CHAR( slot->bitmap_top ) ||
172 sbit->left = (FT_Char)slot->bitmap_left;
173 sbit->top = (FT_Char)slot->bitmap_top;
  /external/freetype/src/cff/
cffdrivr.c 131 /* A driver method used to load a glyph within a given glyph slot. */
134 /* slot :: A handle to the target slot object where the glyph */
158 CFF_GlyphSlot slot = (CFF_GlyphSlot)cffslot; local
162 if ( !slot )
181 error = cff_slot_load( slot, size, glyph_index, load_flags );
184 /* slot->outline.dropout_mode = 2; */
199 FT_GlyphSlot slot = face->glyph; local
206 error = cff_glyph_load( slot, face->size, start + nn, flags );
211 ? slot->linearVertAdvanc
    [all...]
cffobjs.h 69 /* A handle to an OpenType glyph slot object. */
144 cff_slot_done( FT_GlyphSlot slot ); variable
147 cff_slot_init( FT_GlyphSlot slot ); variable
  /external/freetype/src/truetype/
ttdriver.c 264 /* A driver method used to load a glyph within a given glyph slot. */
267 /* slot :: A handle to the target slot object where the glyph */
290 TT_GlyphSlot slot = (TT_GlyphSlot)ttslot; local
296 if ( !slot )
334 error = TT_Load_Glyph( size, slot, glyph_index, load_flags );
337 /* slot->outline.dropout_mode = 2; */
  /external/jmonkeyengine/engine/src/test/jme3test/app/
TestIDList.java 83 static void enable(int slot){
84 System.out.println("Enabled SLOT["+slot+"]");
85 if (enabledSlots[slot] == true){
88 enabledSlots[slot] = true;
91 static void disable(int slot){
92 System.out.println("Disabled SLOT["+slot+"]");
93 if (enabledSlots[slot] == false){
96 enabledSlots[slot] = false
135 int slot = list.oldList[i]; local
    [all...]
  /external/libffi/src/pa/
ffi.c 145 unsigned int slot = FIRST_ARG_SLOT; local
162 *(SINT32 *)(stack - slot) = *(SINT8 *)(*p_argv);
166 *(UINT32 *)(stack - slot) = *(UINT8 *)(*p_argv);
170 *(SINT32 *)(stack - slot) = *(SINT16 *)(*p_argv);
174 *(UINT32 *)(stack - slot) = *(UINT16 *)(*p_argv);
180 debug(3, "Storing UINT32 %u in slot %u\n", *(UINT32 *)(*p_argv),
181 slot);
182 *(UINT32 *)(stack - slot) = *(UINT32 *)(*p_argv);
187 /* Align slot for 64-bit type. */
188 slot += (slot & 1) ? 1 : 2
426 unsigned int slot = FIRST_ARG_SLOT; local
    [all...]
  /external/qemu/hw/
pcmcia.h 21 PCMCIASocket *slot; member in struct:PCMCIACardState
  /external/skia/src/core/
SkBitmapHeap.cpp 327 int slot; local
328 fUnusedSlots.pop(&slot);
329 entry = fStorage[slot];
351 // If entry is the last slot in storage, it is safe to delete it.
353 // free the slot
363 // update the index with the appropriate slot in the heap
  /external/webkit/Source/JavaScriptCore/heap/
Handle.h 63 HandleBase(HandleSlot slot)
64 : m_slot(slot)
70 HandleSlot slot() const { return m_slot; } function in class:JSC::HandleBase
71 void setSlot(HandleSlot slot)
73 m_slot = slot;
82 static ExternalType getFromSlot(HandleSlot slot) { return (slot && *slot) ? reinterpret_cast<ExternalType>(slot->asCell()) : 0; }
89 static ExternalType getFromSlot(HandleSlot slot) { return slot ? *slot : JSValue();
    [all...]
HandleHeap.h 83 HandleSlot slot();
175 writeBarrier(node->slot(), *other);
176 *node->slot() = *other;
215 inline HandleSlot HandleHeap::Node::slot() function in class:JSC::HandleHeap::Node
  /external/webkit/Source/JavaScriptCore/runtime/
JSActivation.cpp 76 inline bool JSActivation::symbolTableGet(const Identifier& propertyName, PropertySlot& slot)
84 slot.setValue(registerAt(entry.getIndex()).get());
135 bool JSActivation::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
138 slot.setCustom(this, getArgumentsGetter());
142 if (symbolTableGet(propertyName, slot))
146 slot.setValue(location->get());
157 void JSActivation::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot)
168 putDirect(exec->globalData(), propertyName, value, 0, true, slot);
183 PutPropertySlot slot; local
184 JSObject::putWithAttributes(exec, propertyName, value, attributes, true, slot);
    [all...]
JSFunction.cpp 181 bool JSFunction::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
184 return Base::getOwnPropertySlot(exec, propertyName, slot);
196 slot.setValue(this, location->get(), offsetForLocation(location));
202 slot.setValue(jsNull());
206 slot.setCacheableCustom(this, argumentsGetter);
211 slot.setCacheableCustom(this, lengthGetter);
218 slot.setValue(jsNull());
221 slot.setCacheableCustom(this, callerGetter);
225 return Base::getOwnPropertySlot(exec, propertyName, slot);
234 PropertySlot slot; local
267 PropertySlot slot; local
287 PropertySlot slot; local
    [all...]
Operations.h 470 PropertySlot slot; local
475 if (isStrictPut && !base->getPropertySlot(callFrame, property, slot))
479 if (base->getPropertySlot(callFrame, property, slot))

Completed in 433 milliseconds

12 3 4 5 6 7 8 91011