Searched refs:slot (Results 251 - 275 of 426) sorted by relevance

<<1112131415161718

/external/tcpdump/
H A Dprint-wb.c153 u_int32_t slot; member in struct:pgstate
197 EXTRACT_32BITS(&id->pi_ps.slot),
275 EXTRACT_32BITS(&ps->slot),
/external/chromium/chrome/browser/ui/
H A Dcrypto_module_password_dialog_nss.cc120 // (SECFailure). Either way we're done with this slot.
155 cert->os_cert_handle()->slot));
/external/chromium_org/chrome/browser/ui/
H A Dcrypto_module_password_dialog_nss.cc123 // (SECFailure). Either way we're done with this slot.
158 cert->os_cert_handle()->slot));
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_driver.h36 * for input/output slot assignment.
40 uint8_t slot[4]; /* native slots for xyzw (addresses in 32-bit words) */ member in struct:nv50_ir_varying
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/
H A Dr200_texstate.c275 /* Extract the arg from slot A, shift it into the correct argument slot
303 static GLboolean r200UpdateTextureEnv( struct gl_context *ctx, int unit, int slot, GLuint replaceargs ) argument
308 GLuint color_scale = rmesa->hw.pix[slot].cmd[PIX_PP_TXCBLEND2] &
311 GLuint alpha_scale = rmesa->hw.pix[slot].cmd[PIX_PP_TXABLEND2] &
399 if (slot == 0)
424 if (slot == 0)
481 if (slot == 0)
506 if (slot == 0)
714 if ( rmesa->hw.pix[slot]
[all...]
/external/chromium_org/ui/base/x/
H A Ddevice_data_manager.h128 // For multitouch events we use slot number to distinguish touches from
129 // different fingers. This function returns true if the associated slot
130 // for |xiev| can be found and it is saved in |slot|, returns false if
131 // no slot can be found.
132 bool GetSlotNumber(const XIDeviceEvent* xiev, int* slot);
277 // a specified slot of a device. Defaults to 0 if the valuator for that slot
/external/freetype/src/cff/
H A Dcffgload.h49 /* glyph :: The current glyph slot. */
203 CFF_GlyphSlot slot,
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_driver.h36 * for input/output slot assignment.
40 uint8_t slot[4]; /* native slots for xyzw (addresses in 32-bit words) */ member in struct:nv50_ir_varying
/external/mesa3d/src/mesa/drivers/dri/r200/
H A Dr200_texstate.c275 /* Extract the arg from slot A, shift it into the correct argument slot
303 static GLboolean r200UpdateTextureEnv( struct gl_context *ctx, int unit, int slot, GLuint replaceargs ) argument
308 GLuint color_scale = rmesa->hw.pix[slot].cmd[PIX_PP_TXCBLEND2] &
311 GLuint alpha_scale = rmesa->hw.pix[slot].cmd[PIX_PP_TXABLEND2] &
399 if (slot == 0)
424 if (slot == 0)
481 if (slot == 0)
506 if (slot == 0)
714 if ( rmesa->hw.pix[slot]
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_vs_emit.c146 int first_reladdr_output, int slot)
160 if (slot >= MAX_SLOTS_IN_FIRST_URB_WRITE) {
177 GLuint i, reg = 0, slot; local
332 for (slot = 0; slot < c->prog_data.vue_map.num_slots; slot++) {
333 int vert_result = c->prog_data.vue_map.slot_to_vert_result[slot];
335 if (can_use_direct_mrf(vert_result, first_reladdr_output, slot)) {
336 c->regs[PROGRAM_OUTPUT][vert_result] = brw_message_reg(slot + 1);
1062 /* Keep track of the last constant loaded in this slot, fo
145 can_use_direct_mrf(int vert_result, int first_reladdr_output, int slot) argument
1524 int slot; local
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_vs_emit.c146 int first_reladdr_output, int slot)
160 if (slot >= MAX_SLOTS_IN_FIRST_URB_WRITE) {
177 GLuint i, reg = 0, slot; local
332 for (slot = 0; slot < c->prog_data.vue_map.num_slots; slot++) {
333 int vert_result = c->prog_data.vue_map.slot_to_vert_result[slot];
335 if (can_use_direct_mrf(vert_result, first_reladdr_output, slot)) {
336 c->regs[PROGRAM_OUTPUT][vert_result] = brw_message_reg(slot + 1);
1062 /* Keep track of the last constant loaded in this slot, fo
145 can_use_direct_mrf(int vert_result, int first_reladdr_output, int slot) argument
1524 int slot; local
[all...]
/external/chromium_org/courgette/
H A Dadjustment_method_2.cc217 LabelInfo& slot = label_infos_[label]; local
218 if (slot.label_ == NULL) {
219 slot.label_ = label;
220 slot.is_model_ = is_model;
221 slot.debug_index_ = ++debug_label_index_gen_;
223 slot.positions_.push_back(position);
224 ++slot.refs_;
225 return &slot;
1087 int* slot = &maxima[program_info][model_info];
1088 *slot
[all...]
H A Dassembly_program.cc250 Label*& slot = (*labels)[rva]; local
251 if (slot == NULL) {
252 slot = new(std::nothrow) Label(rva);
254 slot->count_++;
255 return slot;
/external/chromium/chrome/browser/search_engines/
H A Dtemplate_url_model.h230 void SetSearchEngineDialogSlot(int slot) { argument
231 search_engine_dialog_chosen_slot_ = slot;
410 // Used for UX testing. Gives the slot in the search engine dialog that was
/external/chromium_org/net/cert/
H A Dx509_certificate_nss.cc66 if (type == USER_CERT && cert_handle_->slot) {
71 cert_handle_->slot,
/external/chromium_org/third_party/skia/src/core/
H A DSkOrderedWriteBuffer.cpp171 int32_t slot = fBitmapHeap->insert(bitmap); local
172 fWriter.write32(slot);
177 // and the instance currently being written is re-using the same slot from the
/external/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
H A DSpdyWriter.java46 int slot, List<String> nameValueBlock) throws IOException {
56 out.writeShort((priority & 0x7) << 13 | (unused & 0x1f) << 8 | (slot & 0xff));
45 synStream(int flags, int streamId, int associatedStreamId, int priority, int slot, List<String> nameValueBlock) argument
/external/qemu/
H A Dsysemu.h186 void qemu_system_device_hot_add(int pcibus, int slot, int state);
201 void pci_device_hot_remove_success(int pcibus, int slot);
/external/skia/src/core/
H A DSkOrderedWriteBuffer.cpp171 int32_t slot = fBitmapHeap->insert(bitmap); local
172 fWriter.write32(slot);
177 // and the instance currently being written is re-using the same slot from the
/external/srec/srec/ca/
H A Dsyn_srec.c53 int CA_AddWordToSyntax(CA_Syntax* syntax, const char* slot, argument
58 rc = FST_AddWordToGrammar(syntax->synx, slot, phrase, pronunciation, weight);
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DStylePropertySet.cpp53 void* slot = WTF::fastMalloc(sizeForImmutableStylePropertySetWithPropertyCount(count)); local
54 return adoptRef(new (slot) ImmutableStylePropertySet(properties, count, cssParserMode));
258 void MutableStylePropertySet::setProperty(const CSSProperty& property, CSSProperty* slot) argument
261 CSSProperty* toReplace = slot ? slot : findCSSPropertyWithID(property.id());
/external/chromium_org/third_party/freetype/include/freetype/internal/
H A Dftobjs.h354 /* into the glyph slot. */
548 /* It is sometimes useful to have more than one glyph slot for a */
557 /* aslot :: A handle to a new glyph slot object. */
573 /* Destroys a given glyph slot. Remember however that all slots are */
578 /* slot :: A handle to a target glyph slot. */
581 FT_Done_GlyphSlot( FT_GlyphSlot slot ); variable
626 ft_glyphslot_free_bitmap( FT_GlyphSlot slot ); variable
629 /* Allocate a new bitmap buffer in a glyph slot. */
631 ft_glyphslot_alloc_bitmap( FT_GlyphSlot slot,
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/vbo/
H A Dvbo_split_copy.c245 GLuint slot = elt & (ELT_TABLE_SIZE-1); local
252 if (copy->vert_cache[slot].in != elt) {
287 copy->vert_cache[slot].in = elt;
288 copy->vert_cache[slot].out = copy->dstbuf_nr++;
298 /* printf(" --> emit %d\n", copy->vert_cache[slot].out); */
299 copy->dstelt[copy->dstelt_nr++] = copy->vert_cache[slot].out;
/external/freetype/include/freetype/internal/
H A Dftobjs.h383 /* into the glyph slot. */
575 /* It is sometimes useful to have more than one glyph slot for a */
584 /* aslot :: A handle to a new glyph slot object. */
600 /* Destroys a given glyph slot. Remember however that all slots are */
605 /* slot :: A handle to a target glyph slot. */
608 FT_Done_GlyphSlot( FT_GlyphSlot slot ); variable
653 ft_glyphslot_free_bitmap( FT_GlyphSlot slot ); variable
656 /* Allocate a new bitmap buffer in a glyph slot. */
658 ft_glyphslot_alloc_bitmap( FT_GlyphSlot slot,
[all...]
/external/mesa3d/src/mesa/vbo/
H A Dvbo_split_copy.c245 GLuint slot = elt & (ELT_TABLE_SIZE-1); local
252 if (copy->vert_cache[slot].in != elt) {
287 copy->vert_cache[slot].in = elt;
288 copy->vert_cache[slot].out = copy->dstbuf_nr++;
298 /* printf(" --> emit %d\n", copy->vert_cache[slot].out); */
299 copy->dstelt[copy->dstelt_nr++] = copy->vert_cache[slot].out;

Completed in 774 milliseconds

<<1112131415161718