/external/mesa3d/src/gallium/drivers/nv50/codegen/ |
nv50_ir_ra.cpp | 61 return size >> unit[f]; 82 return (size < 4) ? u : ((u << unit[f]) / 4); 90 int unit[LAST_REGISTER_FILE + 1]; // log2 of allocation granularity member in class:nv50_ir::RegisterSet 112 unit[rf] = targ->getFileUnit(f); 160 return occupy(v->reg.file, v->reg.data.id, v->reg.size >> unit[v->reg.file]); [all...] |
/external/mesa3d/src/gallium/drivers/svga/ |
svga_tgsi_insn.c | 201 if (emit->unit == PIPE_SHADER_FRAGMENT) { 1639 const unsigned unit = src1.base.num; local 3067 const unsigned unit = ffs(inverted_texcoords) - 1; local [all...] |
/external/mesa3d/src/mesa/main/ |
ff_fragment_shader.cpp | 129 } unit[MAX_TEXTURE_UNITS]; member in struct:state_key 429 const struct gl_texture_unit *texUnit = &ctx->Texture.Unit[i]; 441 key->unit[i].enabled = 1; 446 key->unit[i].source_index = 449 key->unit[i].shadow = 454 key->unit[i].NumArgsRGB = comb->_NumArgsRGB; 455 key->unit[i].NumArgsA = comb->_NumArgsA; 457 key->unit[i].ModeRGB = 459 key->unit[i].ModeA = 462 key->unit[i].ScaleShiftRGB = comb->ScaleShiftRGB 1220 GLuint unit; local 1289 unsigned int unit; local [all...] |
ffvertex_prog.c | 86 } unit[NUM_UNITS]; member in struct:state_key 191 key->unit[i].light_enabled = 1; 194 key->unit[i].light_eyepos3_is_zero = 1; 197 key->unit[i].light_spotcutoff_is_180 = 1; 202 key->unit[i].light_attenuated = 1; 243 struct gl_texture_unit *texUnit = &ctx->Texture.Unit[i]; 246 key->unit[i].texunit_really_enabled = 1; 250 key->unit[i].coord_replace = 1; 253 key->unit[i].texmat_enabled = 1; 256 key->unit[i].texgen_enabled = 1 [all...] |
get.c | 51 * unit, or maybe it's a computed value. So we need to also track 1505 GLuint unit, *p; local 2000 struct gl_texture_unit *unit; local [all...] |
/external/ppp/pppd/ |
sys-solaris.c | 609 /* Assign a new PPA and get its unit number. */ 624 * IP will assign a unit number which hopefully is the same as ifunit. 657 * Assign ppa according to the unit number returned by ppp device 665 fatal("Can't set ppa for unit %d: %m", ifunit); 681 * Assign ppa according to the unit number returned by ppp device 688 fatal("Can't set ifname for unit %d: %m", ifunit); 2227 int unit, iffd, adrlen; local [all...] |
/external/toybox/toys/pending/ |
fdisk.c | 770 unsigned long unit = (disp_unit_cyl && (g_heads * g_sectors))? g_heads * g_sectors : 1; local 772 unit = unit * g_sect_size; 773 bytes += unit/2; // rounding 774 bytes /= unit; [all...] |
/external/toybox/toys/posix/ |
ps.c | 447 int unit = 60, pad = 2, j = TT.ticks; local 450 if (which!=PS_TIME_) unit *= 60*24; 459 if (!s && (seconds>unit || j == 1+(which!=PS_TIME))) s = out; 461 s += sprintf(s, j ? "%0*ld": "%*ld", pad, (long)(seconds/unit)); 465 seconds %= unit; 466 unit /= j ? 60 : 24; [all...] |
/frameworks/av/media/libstagefright/httplive/ |
PlaylistFetcher.cpp | 923 // this means we haven't even find the first access unit, 2073 sp<ABuffer> unit = new ABuffer(aac_frame_length); local [all...] |
/frameworks/base/media/java/android/media/ |
TtmlRenderer.java | 151 String unit = matcher.group(2); local 152 if (unit.equals("h")) { 154 } else if (unit.equals("m")) { 156 } else if (unit.equals("s")) { 158 } else if (unit.equals("ms")) { 160 } else if (unit.equals("f")) { 162 } else if (unit.equals("t")) {
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/ |
CameraMetadataTest.java | 17 package com.android.mediaframeworktest.unit; 50 import static com.android.mediaframeworktest.unit.ByteArrayHelpers.*; 60 * -e class 'com.android.mediaframeworktest.unit.CameraMetadataTest' \ [all...] |
/libcore/ojluni/src/main/java/java/util/ |
GregorianCalendar.java | 1164 int unit = max + 1; \/\/ 12 or 24 hours local [all...] |
/prebuilts/go/darwin-x86/src/regexp/testdata/ |
testregex.c | 1252 char unit[64]; local 1268 p = unit; 1270 while (p < &unit[sizeof(unit)-1] && (*p = *version++) && !isspace(*p)) 1305 fprintf(stderr, "%s: out of space [stack]", unit); 1332 fprintf(stderr, "%s: %c: invalid option\n", unit, *p); 1349 fprintf(stderr, "%s: %s: cannot read\n", unit, state.file); 1358 printf("TEST\t%s ", unit); [all...] |
/prebuilts/go/linux-x86/src/regexp/testdata/ |
testregex.c | 1252 char unit[64]; local 1268 p = unit; 1270 while (p < &unit[sizeof(unit)-1] && (*p = *version++) && !isspace(*p)) 1305 fprintf(stderr, "%s: out of space [stack]", unit); 1332 fprintf(stderr, "%s: %c: invalid option\n", unit, *p); 1349 fprintf(stderr, "%s: %s: cannot read\n", unit, state.file); 1358 printf("TEST\t%s ", unit); [all...] |
/sdk/apps/DeviceConfig/src/com/example/android/deviceconfig/ |
ConfigGenerator.java | 148 public static final String ATTR_UNIT = "unit"; 453 String unit = UNIT_BYTES; local 466 unit = vals[2]; 478 if (unit.equals("B")) { 479 unit = UNIT_BYTES; 480 } else if (unit.equals("kB")) { 481 unit = UNIT_KIBIBYTES; 482 } else if (unit.equals("MB")) { 483 unit = UNIT_MEBIBYTES; 484 } else if (unit.equals("GB")) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ |
Hyperlinks.java | 1443 IJavaElement unit = element.getAncestor(IJavaElement.COMPILATION_UNIT); local [all...] |
/toolchain/binutils/binutils-2.25/include/opcode/ |
metag.h | 44 enum metag_unit unit; member in struct:__anon74603 590 #define DSP_ARGS_XACC 0x0000008 /* Cross-unit accumulator op */ 597 #define DSP_ARGS_SPLIT8 0x0000400 /* Data unit split 8 operations */ [all...] |
/toolchain/binutils/binutils-2.25/opcodes/ |
metag-dis.c | 104 /* Return the short interpretation of UNIT. */ 106 short_unit (unsigned int unit) 108 if (unit == UNIT_CT) 111 return unit; 114 /* Return the register corresponding to UNIT and NUMBER or NULL. */ 116 lookup_reg (unsigned int unit, unsigned int number) 124 if (reg->unit == unit && reg->no == number) 131 /* Return the register name corresponding to UNIT and NUMBER or NULL. */ 133 lookup_reg_name (unsigned int unit, unsigned int number 2331 unsigned int addr_unit, base_no, unit; local [all...] |
/prebuilts/tools/common/m2/repository/backport-util-concurrent/backport-util-concurrent/3.1/ |
backport-util-concurrent-3.1.jar | |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/ |
RVCVXCheckAnalyzer.java | 88 // unit in rad 94 // unit in rad 296 float unit=0.02f; local 302 (2 * (j / cn) + i % 2) * (float) unit; 304 i * unit; [all...] |
/external/deqp/modules/gles2/functional/ |
es2fUniformApiTests.cpp | 245 int unit; 511 result.val.intV[0] = sampler.val.samplerV.unit; 567 result << value.val.samplerV.unit; 578 static VarValue generateRandomVarValue (const glu::DataType type, Random& rnd, int samplerUnit = -1 /* Used if type is a sampler type. \note Samplers' unit numbers are not randomized. */) 603 result.val.samplerV.unit = samplerUnit; 637 result.val.samplerV.unit = 0; 675 if (a.val.samplerV.unit != b.val.samplerV.unit) 1410 GLint unit = -1; local 1629 const GLint unit = uniform.finalValue.val.samplerV.unit; local [all...] |
/external/deqp/modules/gles3/functional/ |
es3fUniformApiTests.cpp | 306 int unit; 595 result.val.intV[0] = sampler.val.samplerV.unit; 676 result << value.val.samplerV.unit; 687 static VarValue generateRandomVarValue (const glu::DataType type, Random& rnd, int samplerUnit = -1 /* Used if type is a sampler type. \note Samplers' unit numbers are not randomized. */) 721 result.val.samplerV.unit = samplerUnit; 773 result.val.samplerV.unit = 0; 826 if (a.val.samplerV.unit != b.val.samplerV.unit) 1776 GLint unit = -1; local 2041 const GLint unit = uniform.finalValue.val.samplerV.unit; local [all...] |
/external/deqp/modules/gles31/functional/ |
es31fProgramUniformTests.cpp | 286 int unit; member in struct:deqp::gles31::Functional::__anon10625::VarValue::__anon10626::__anon10627 546 result.val.intV[0] = sampler.val.samplerV.unit; 627 result << value.val.samplerV.unit; 638 static VarValue generateRandomVarValue (const glu::DataType type, Random& rnd, int samplerUnit = -1 /* Used if type is a sampler type. \note Samplers' unit numbers are not randomized. */) 672 result.val.samplerV.unit = samplerUnit; 725 if (a.val.samplerV.unit != b.val.samplerV.unit) 1335 GLint unit = -1; local 1544 const GLint unit = uniform.finalValue.val.samplerV.unit; local [all...] |
/external/mesa3d/src/gallium/drivers/nv30/ |
nvfx_shader.h | 90 * 17-20: texture unit number 437 int8_t unit; member in struct:nvfx_insn 452 nvfx_insn(boolean sat, unsigned op, int unit, struct nvfx_reg dst, unsigned mask, struct nvfx_src s0, struct nvfx_src s1, struct nvfx_src s2) 457 .unit = unit,
|
/external/mesa3d/src/mesa/drivers/dri/radeon/ |
radeon_context.h | 67 #define RADEON_ST_BIT(unit) \ 68 (unit == 0 ? RADEON_CP_VC_FRMT_ST0 : (RADEON_CP_VC_FRMT_ST1 >> 2) << (2 * unit)) 70 #define RADEON_Q_BIT(unit) \ 71 (unit == 0 ? RADEON_CP_VC_FRMT_Q0 : (RADEON_CP_VC_FRMT_Q1 >> 2) << (2 * unit)) 80 struct radeon_texture_env_state unit[RADEON_MAX_TEXTURE_UNITS]; member in struct:radeon_texture_state 390 * 3 floats for each texture unit (9 floats total).
|