Searched defs:unit (Results 226 - 250 of 405) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_build_util.cpp319 BuildUtil::mkClobber(DataFile f, uint32_t rMask, int unit) argument
340 reg->reg.size = size1 << unit;
346 reg->reg.size = size2 << unit;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
H A Dsvga_tgsi_emit.h59 int unit; member in struct:svga_shader_emitter
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_wm_fp.c48 /** An invalid texture unit */
242 TEX_UNIT_NONE, TEX_TARGET_NONE, 0, /* unit, tgt, shadow */
667 const GLuint unit = c->fp->program.Base.SamplerUnits[inst->TexSrcUnit]; local
674 if (c->key.tex.swizzles[unit] != SWIZZLE_NOOP) {
680 assert(unit < BRW_MAX_TEX_UNIT);
744 unit,
774 if (c->key.tex.yuvtex_mask & (1 << unit)) {
776 bool swap_uv = c->key.tex.yuvtex_swap_mask & (1 << unit);
801 unit,
862 unit,
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
H A Dradeon_texstate.c260 * Texture unit state management
263 static GLboolean radeonUpdateTextureEnv( struct gl_context *ctx, int unit )
266 const struct gl_texture_unit *texUnit = &ctx->Texture.Unit[unit];
276 /* texUnit->_Current can be NULL if and only if the texture unit is
283 fprintf( stderr, "%s( %p, %d )\n", __FUNCTION__, (void *)ctx, unit );
295 rmesa->state.texture.unit[unit].format = 0;
296 rmesa->state.texture.unit[unit].envMode = 0;
324 color_arg[i] = radeon_texture_color[op][unit];
781 import_tex_obj_state( r100ContextPtr rmesa, int unit, radeonTexObjPtr texobj ) argument
828 set_texgen_matrix( r100ContextPtr rmesa, GLuint unit, const GLfloat *s_plane, const GLfloat *t_plane, const GLfloat *r_plane, const GLfloat *q_plane ) argument
976 setup_hardware_state(r100ContextPtr rmesa, radeonTexObj *t, int unit) argument
1055 radeon_validate_texture(struct gl_context *ctx, struct gl_texture_object *texObj, int unit) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dtexobj.c1041 struct gl_texture_unit *unit = &ctx->Texture.Unit[u]; local
1043 if (texObj == unit->CurrentTex[tex]) {
1044 _mesa_reference_texobj(&unit->CurrentTex[tex],
1046 ASSERT(unit->CurrentTex[tex]);
1063 * texture unit, unbind the texture first. Decrement the reference
H A Duniforms.c53 * particular texture unit. We know the sampler's texture target
54 * (1D/2D/3D/etc) from compile time but the sampler's texture unit is
59 * Each value of TexturesUsed[unit] is one of zero, TEXTURE_1D_INDEX,
74 GLuint unit = shProg->SamplerUnits[s]; local
76 assert(unit < Elements(prog->TexturesUsed));
78 prog->TexturesUsed[unit] |= (1 << tgt);
/external/chromium_org/third_party/mesa/src/src/mesa/program/
H A Dprog_execute.c393 const GLuint unit = machine->Samplers[inst->TexSrcUnit]; local
405 lodBias, unit, color);
408 machine->FetchTexelLod(ctx, texcoord, lodBias, unit, color);
/external/chromium_org/third_party/skia/tests/
H A DMathTest.cpp98 static float float_blend(int src, int dst, float unit) { argument
99 return dst + (src - dst) * unit;
/external/deqp/framework/common/
H A DtcuTestLog.cpp330 void TestLog::writeFloat (const char* name, const char* description, const char* unit, qpKeyValueTag tag, float value) argument
332 if (qpTestLog_writeFloat(m_log, name, description, unit, tag, value) == DE_FALSE)
336 void TestLog::writeInteger (const char* name, const char* description, const char* unit, qpKeyValueTag tag, deInt64 value) argument
338 if (qpTestLog_writeInteger(m_log, name, description, unit, tag, value) == DE_FALSE)
390 void TestLog::writeValueInfo (const std::string& name, const std::string& description, const std::string& unit, qpSampleValueTag tag) argument
392 if (qpTestLog_writeValueInfo(m_log, name.c_str(), description.c_str(), unit.empty() ? DE_NULL : unit.c_str(), tag) == DE_FALSE)
H A DtcuTestLog.hpp150 void writeFloat (const char* name, const char* description, const char* unit, qpKeyValueTag tag, float value);
151 void writeInteger (const char* name, const char* description, const char* unit, qpKeyValueTag tag, deInt64 value);
163 void writeValueInfo (const std::string& name, const std::string& description, const std::string& unit, qpSampleValueTag tag);
362 LogValueInfo (const std::string& name, const std::string& description, const std::string& unit, qpSampleValueTag tag) argument
365 , m_unit (unit)
383 LogNumber (const std::string& name, const std::string& desc, const std::string& unit, qpKeyValueTag tag, T value) argument
386 , m_unit (unit)
/external/deqp/modules/glshared/
H A DglsRandomShaderCase.cpp88 void TextureManager::bindTexture (int unit, const glu::Texture2D* tex2D) argument
90 m_tex2D[unit] = tex2D;
93 void TextureManager::bindTexture (int unit, const glu::TextureCube* texCube) argument
95 m_texCube[unit] = texCube;
/external/guava/guava/src/com/google/common/collect/
H A DMapMaker.java223 * expireAfterWrite}{@code (0, unit)} or {@link #expireAfterAccess expireAfterAccess}{@code (0,
224 * unit)}. It can be useful in testing, or to disable caching temporarily without a code change.
436 MapMaker expiration(long duration, TimeUnit unit) { argument
437 return expireAfterWrite(duration, unit);
456 * @param unit the unit that {@code duration} is expressed in
465 MapMaker expireAfterWrite(long duration, TimeUnit unit) { argument
466 checkExpiration(duration, unit);
467 this.expireAfterWriteNanos = unit.toNanos(duration);
476 private void checkExpiration(long duration, TimeUnit unit) { argument
514 expireAfterAccess(long duration, TimeUnit unit) argument
[all...]
/external/ipsec-tools/src/racoon/
H A Disakmp_cfg.c2111 size_t unit; local
2114 unit = sizeof(*isakmp_cfg_config.port_pool);
2117 bzero((char *)new_pool + (old_size * unit),
2118 (size - old_size) * unit);
/external/kernel-headers/original/uapi/linux/
H A Dhiddev.h104 __u32 unit; member in struct:hiddev_field_info
/external/libnl/lib/
H A Dutils.c96 * @arg unit destination unit pointer
99 * unit. The chosen unit is assigned to \a unit.
101 * @return The cancelled down byte counter in the new unit.
103 double nl_cancel_down_bytes(unsigned long long l, char **unit) argument
106 *unit = "TiB";
109 *unit = "GiB";
112 *unit
133 nl_cancel_down_bits(unsigned long long l, char **unit) argument
164 nl_cancel_down_us(uint32_t l, char **unit) argument
[all...]
/external/libpcap/
H A Dpcap-dlpi.c375 * Split the device name into a device type name and a unit number;
376 * chop off the unit number, so "dname" is just a device type name.
422 * table for the specified device type name and unit number.
443 * Get the unit number, and a pointer to the end of the device
453 * Make a copy of the device pathname, and then remove the unit
459 /* Try device without unit number */
469 /* Try again with unit number */
505 /* XXX Assume unit zero */
786 * Split a device name into a device type name and a unit number;
787 * return the a pointer to the beginning of the unit numbe
798 long unit; local
1442 get_dlpi_ppa(register int fd, register const char *device, register int unit, register char *ebuf) argument
1629 get_dlpi_ppa(register int fd, register const char *ifname, register int unit, register char *ebuf) argument
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/
H A Dbuiltin-report.c414 char unit; local
433 nr_samples = convert_unit(nr_samples, &unit);
434 ret = fprintf(fp, "# Samples: %lu%c", nr_samples, unit);
/external/llvm/include/llvm/Target/
H A DTargetRegisterInfo.h399 // Regunits are numerically ordered. Find a common unit.
614 /// Get the weight in units of pressure for this register unit.
620 /// Get the name of this register unit pressure set.
623 /// Get the register unit pressure limit for this dimension.
632 /// Get the dimensions of register pressure impacted by this register unit.
924 PrintRegUnit(unsigned unit, const TargetRegisterInfo *tri) argument
925 : TRI(tri), Unit(unit) {}
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_tgsi.h107 unsigned unit:8; /* Sampler unit */ member in struct:lp_tgsi_texture_info
175 unsigned unit,
187 unsigned unit,
199 unsigned unit,
/external/mesa3d/src/gallium/drivers/nv30/
H A Dnvfx_fragprog.c217 if(insn.unit >= 0)
219 hw[0] |= (insn.unit << NVFX_FP_OP_TEX_UNIT_SHIFT);
447 int mask, sat, unit = 0; local
516 unit = fsrc->Register.Index;
774 nvfx_fp_emit(fpc, tex(sat, TEX, unit, dst, mask, src[0], none, none));
790 nvfx_fp_emit(fpc, tex(sat, TXB, unit, dst, mask, src[0], none, none));
794 nvfx_fp_emit(fpc, tex(sat, TXL_NV40, unit, dst, mask, src[0], none, none));
796 nvfx_fp_emit(fpc, tex(sat, TEX, unit, dst, mask, src[0], none, none));
799 nvfx_fp_emit(fpc, tex(sat, TXP, unit, dst, mask, src[0], none, none));
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_build_util.cpp319 BuildUtil::mkClobber(DataFile f, uint32_t rMask, int unit) argument
340 reg->reg.size = size1 << unit;
346 reg->reg.size = size2 << unit;
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_tgsi_emit.h59 int unit; member in struct:svga_shader_emitter
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_wm_fp.c48 /** An invalid texture unit */
242 TEX_UNIT_NONE, TEX_TARGET_NONE, 0, /* unit, tgt, shadow */
667 const GLuint unit = c->fp->program.Base.SamplerUnits[inst->TexSrcUnit]; local
674 if (c->key.tex.swizzles[unit] != SWIZZLE_NOOP) {
680 assert(unit < BRW_MAX_TEX_UNIT);
744 unit,
774 if (c->key.tex.yuvtex_mask & (1 << unit)) {
776 bool swap_uv = c->key.tex.yuvtex_swap_mask & (1 << unit);
801 unit,
862 unit,
[all...]
/external/mesa3d/src/mesa/drivers/dri/radeon/
H A Dradeon_texstate.c260 * Texture unit state management
263 static GLboolean radeonUpdateTextureEnv( struct gl_context *ctx, int unit )
266 const struct gl_texture_unit *texUnit = &ctx->Texture.Unit[unit];
276 /* texUnit->_Current can be NULL if and only if the texture unit is
283 fprintf( stderr, "%s( %p, %d )\n", __FUNCTION__, (void *)ctx, unit );
295 rmesa->state.texture.unit[unit].format = 0;
296 rmesa->state.texture.unit[unit].envMode = 0;
324 color_arg[i] = radeon_texture_color[op][unit];
781 import_tex_obj_state( r100ContextPtr rmesa, int unit, radeonTexObjPtr texobj ) argument
828 set_texgen_matrix( r100ContextPtr rmesa, GLuint unit, const GLfloat *s_plane, const GLfloat *t_plane, const GLfloat *r_plane, const GLfloat *q_plane ) argument
976 setup_hardware_state(r100ContextPtr rmesa, radeonTexObj *t, int unit) argument
1055 radeon_validate_texture(struct gl_context *ctx, struct gl_texture_object *texObj, int unit) argument
[all...]
/external/mesa3d/src/mesa/main/
H A Dtexobj.c1041 struct gl_texture_unit *unit = &ctx->Texture.Unit[u]; local
1043 if (texObj == unit->CurrentTex[tex]) {
1044 _mesa_reference_texobj(&unit->CurrentTex[tex],
1046 ASSERT(unit->CurrentTex[tex]);
1063 * texture unit, unbind the texture first. Decrement the reference

Completed in 934 milliseconds

1234567891011>>