HomeSort by relevance Sort by last modified time
    Searched refs:Unit (Results 251 - 275 of 601) sorted by null

<<11121314151617181920>>

  /external/autotest/client/deps/glbench/src/
windowmanagercompositingtest.cc 28 virtual const char* Unit() const { return "1280x768_fps"; }
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
GMRES.h 107 v = VectorType::Unit(m, k - 1);
  /external/llvm/test/tools/dsymutil/Inputs/scattered-reloc/
1.s 80 .long 52 @ Length of Unit
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_swtcl.c 190 if (ctx->Texture.Unit[i]._Current &&
191 ctx->Texture.Unit[i]._Current->Target == GL_TEXTURE_CUBE_MAP) {
200 if (ctx->Texture.Unit[i]._Current &&
201 ctx->Texture.Unit[i]._Current->Target == GL_TEXTURE_CUBE_MAP) {
  /external/mesa3d/src/mesa/state_tracker/
st_atom_texture.c 68 texObj = ctx->Texture.Unit[texUnit]._Current;
113 GLuint unit; local
122 for (unit = 0; unit < max_units; unit++, samplers_used >>= 1) {
128 const GLuint texUnit = prog->SamplerUnits[unit];
136 *num_textures = unit + 1;
138 else if (samplers_used == 0 && unit >= old_max) {
143 pipe_sampler_view_reference(&(sampler_views[unit]), sampler_view);
155 GLuint unit = u_bit_scan(&external_samplers_used) local
    [all...]
  /external/python/cpython2/Lib/lib2to3/
patcomp.py 98 assert node.type == self.syms.Unit
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/
patcomp.py 98 assert node.type == self.syms.Unit
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/
patcomp.py 98 assert node.type == self.syms.Unit
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/
patcomp.py 98 assert node.type == self.syms.Unit
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/
patcomp.py 98 assert node.type == self.syms.Unit
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-p2-facade/0.18.1/
tycho-p2-facade-0.18.1.jar 
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Scala/
Scala.stg 282 def <ruleName>_fragment(<ruleDescriptor.parameterScope:parameterScope()>): Unit = {
480 final def m<ruleName>(<ruleDescriptor.parameterScope:parameterScope()>): Unit = {
517 def mTokens(): Unit = {
    [all...]
  /external/mesa3d/src/mesa/drivers/common/
meta.c 617 save->EnvMode = ctx->Texture.Unit[0].EnvMode;
621 save->TexEnabled[u] = ctx->Texture.Unit[u].Enabled;
622 save->TexGenEnabled[u] = ctx->Texture.Unit[u].TexGenEnabled;
623 if (ctx->Texture.Unit[u].Enabled ||
624 ctx->Texture.Unit[u].TexGenEnabled) {
641 /* save current texture objects for unit[0] only */
644 ctx->Texture.Unit[0].CurrentTex[tgt]);
647 /* set defaults for unit[0] */
    [all...]
  /external/llvm/lib/IR/
LLVMContextImpl.h 534 Metadata *Unit;
544 bool IsOptimized, Metadata *Unit, Metadata *TemplateParams,
551 Flags(Flags), IsOptimized(IsOptimized), Unit(Unit),
562 IsOptimized(N->isOptimized()), Unit(N->getRawUnit()),
578 Unit == RHS->getUnit() &&
    [all...]
  /art/cmdline/
cmdline_parser_test.cc 567 EXPECT_KEY_VALUE(map, M::Help, Unit{}); // NOLINT [whitespace/braces] [5]
570 EXPECT_KEY_VALUE(map, M::MethodTrace, Unit{}); // NOLINT [whitespace/braces] [5]
  /device/linaro/bootloader/edk2/QuarkPlatformPkg/Library/PlatformSecLib/Ia32/
Flat32.asm 289 ; Before we get going, check SOC Unit Registers to see if we are required to issue a warm/cold reset
331 ; Enable interrupts to Remote Management Unit when a IMR/SMM/HMBOUND violation occurs.
409 ; Issue Warm Reset request to Remote Management Unit via iLB
418 ; Issue Cold Reset request to Remote Management Unit via iLB
  /external/eigen/Eigen/src/Core/
MatrixBase.h 117 /** \internal the return type of unit vectors */
265 EIGEN_DEVICE_FUNC static const BasisReturnType Unit(Index size, Index i);
266 EIGEN_DEVICE_FUNC static const BasisReturnType Unit(Index i);
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_sampler_state.c 404 * Sets the sampler state for a single unit based off of the sampler key
561 int unit,
566 const struct gl_texture_unit *texUnit = &ctx->Texture.Unit[unit];
568 const struct gl_sampler_object *sampler = _mesa_get_samplerobj(ctx, unit);
608 const unsigned unit = prog->SamplerUnits[s]; local
609 if (ctx->Texture.Unit[unit]._Current) {
610 update_sampler_state(brw, unit, sampler_state,
  /external/mesa3d/src/mesa/main/
get.c 57 * unit, or maybe it's a computed value. So we need to also track
621 GLuint unit, *p; local
647 unit = ctx->Texture.CurrentUnit;
648 v->value_float_4[0] = ctx->Current.RasterTexCoords[unit][0];
649 v->value_float_4[1] = ctx->Current.RasterTexCoords[unit][1];
650 v->value_float_4[2] = ctx->Current.RasterTexCoords[unit][2];
651 v->value_float_4[3] = ctx->Current.RasterTexCoords[unit][3];
655 unit = ctx->Texture.CurrentUnit;
656 v->value_float_4[0] = ctx->Current.Attrib[VERT_ATTRIB_TEX0 + unit][0];
657 v->value_float_4[1] = ctx->Current.Attrib[VERT_ATTRIB_TEX0 + unit][1]
1344 struct gl_texture_unit *unit; local
    [all...]
  /external/webrtc/webrtc/voice_engine/test/android/android_test/jni/
android_test.cc 107 Unit = 3,
396 tType = Unit;
    [all...]
  /frameworks/support/room/compiler/src/test/kotlin/android/arch/persistence/room/processor/
DaoProcessorTest.kt 195 fun singleDao(vararg inputs: String, handler: (Dao, TestInvocation) -> Unit):
  /frameworks/support/room/compiler/src/test/kotlin/android/arch/persistence/room/solver/query/
QueryWriterTest.kt 279 handler: (QueryWriter) -> Unit):
  /frameworks/support/room/compiler/src/test/kotlin/android/arch/persistence/room/verifier/
DatabaseVerifierTest.kt 165 private fun validQueryTest(sql: String, cb: (QueryResultInfo) -> Unit) {
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplusenums.h 696 typedef enum Unit {
704 } Unit;
gdiplusflat.h 110 GpStatus WINGDIPAPI GdipCreateFont(GDIPCONST GpFontFamily*,REAL,INT,Unit,GpFont**);
116 GpStatus WINGDIPAPI GdipGetFontUnit(GpFont*,Unit*);
261 GpStatus WINGDIPAPI GdipEnumerateMetafileSrcRectDestPoint(GpGraphics*,GDIPCONST GpMetafile*,GDIPCONST PointF&,GDIPCONST RectF&,Unit,EnumerateMetafileProc,VOID*,GDIPCONST GpImageAttributes*);
262 GpStatus WINGDIPAPI GdipEnumerateMetafileSrcRectDestPointI(GpGraphics*,GDIPCONST GpMetafile*,GDIPCONST Point&,GDIPCONST Rect&,Unit,EnumerateMetafileProc,VOID*,GDIPCONST GpImageAttributes*);
263 GpStatus WINGDIPAPI GdipEnumerateMetafileSrcRectDestRect(GpGraphics*,GDIPCONST GpMetafile*,GDIPCONST RectF&,GDIPCONST RectF&,Unit,EnumerateMetafileProc,VOID*,GDIPCONST GpImageAttributes*);
264 GpStatus WINGDIPAPI GdipEnumerateMetafileSrcRectDestRectI(GpGraphics*,GDIPCONST GpMetafile*,GDIPCONST Rect&,GDIPCONST Rect&,Unit,EnumerateMetafileProc,VOID*,GDIPCONST GpImageAttributes*);
265 GpStatus WINGDIPAPI GdipEnumerateMetafileSrcRectDestPoints(GpGraphics*,GDIPCONST GpMetafile*,GDIPCONST PointF*,INT,GDIPCONST RectF&,Unit,EnumerateMetafileProc,VOID*,GDIPCONST GpImageAttributes*);
266 GpStatus WINGDIPAPI GdipEnumerateMetafileSrcRectDestPointsI(GpGraphics*,GDIPCONST GpMetafile*,GDIPCONST Point*,INT,GDIPCONST Rect&,Unit,EnumerateMetafileProc,VOID*,GDIPCONST GpImageAttributes*);
    [all...]

Completed in 8156 milliseconds

<<11121314151617181920>>