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

<<11121314151617181920>>

  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-sh/
fdpic-stack-size.d 9 There are 2 program headers, starting at offset 52
11 Program Headers:
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-x86-64/
pr14207.d 9 There are 4 program headers, starting at offset 64
11 Program Headers:
  /packages/apps/TV/usbtuner/src/com/android/usbtuner/tvinput/
TunerRecordingSessionWorker.java 374 private static class Program {
407 public Program(Cursor cursor) {
425 public Program(long channelId) {
442 public static Program onQuery(Cursor c) {
443 Program program = null; local
445 program = new Program(c);
447 return program;
470 private Program getRecordedProgram()
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir.cpp 281 Symbol::Symbol(Program *prog, DataFile f, ubyte fidx)
295 Program *prog = pol.context()->getProgram();
319 ImmediateValue::ImmediateValue(Program *prog, uint32_t uval)
332 ImmediateValue::ImmediateValue(Program *prog, float fval)
345 ImmediateValue::ImmediateValue(Program *prog, double dval)
369 Program *prog = pol.context()->getProgram();
995 Program::Program(Type type, Target *arch)
1020 Program::~Program()
    [all...]
nv50_ir.h 296 class Program;
527 Symbol(Program *, DataFile file = FILE_MEMORY_CONST, ubyte fileIdx = 0);
561 ImmediateValue(Program *, uint32_t);
562 ImmediateValue(Program *, float);
563 ImmediateValue(Program *, double);
564 // NOTE: not added to program with
698 unsigned exit : 1; // terminate program after insn
875 Program *getProgram() const { return program; }
927 Program *program
    [all...]
nv50_ir_build_util.h 32 BuildUtil(Program *);
34 inline void setProgram(Program *);
35 inline Program *getProgram() const { return prog; }
169 void init(Program *);
174 Program *prog;
191 void BuildUtil::setProgram(Program *program)
193 prog = program;
  /external/ceres-solver/internal/ceres/
callbacks.cc 33 #include "ceres/program.h"
40 StateUpdatingCallback::StateUpdatingCallback(Program* program,
42 : program_(program), parameters_(parameters) {}
program_evaluator.h 96 #include "ceres/program.h"
112 ProgramEvaluator(const Evaluator::Options &options, Program* program)
114 program_(program),
115 jacobian_writer_(options, program),
124 BuildResidualLayout(*program, &residual_layout_);
125 evaluate_scratch_.reset(CreateEvaluatorScratch(*program,
334 static void BuildResidualLayout(const Program& program,
336 const vector<ResidualBlock*>& residual_blocks = program.residual_blocks()
    [all...]
reorder_program.cc 43 #include "ceres/program.h"
44 #include "ceres/program.h"
66 << "Did you forget to call Program::SetParameterOffsetsAndIndex()? "
140 Program* program,
142 const int num_parameter_blocks = program->NumParameterBlocks();
153 program->mutable_parameter_blocks();
182 Program* program,
191 vector<ResidualBlock*>* residual_blocks = program->mutable_residual_blocks()
    [all...]
  /external/dnsmasq/contrib/dnslist/
dnslist.pl 8 # This program is free software; you can redistribute it and/or modify
13 # This program is distributed in the hope that it will be useful,
19 # along with this program*; if not, write to the Free Software
284 Foundation's software and to any other program whose authors commit to
301 For example, if you distribute copies of such a program, whether
318 Finally, any free program is threatened constantly by software
320 program will individually obtain patent licenses, in effect making the
321 program proprietary. To prevent this, we have made it clear that any
330 0. This License applies to any program or other work which contains
332 under the terms of this General Public License. The "Program", below
    [all...]
  /external/valgrind/gdbserver_tests/
mcbreak.stdoutB.exp 45 Program received signal SIGTRAP, Trace/breakpoint trap.
51 Program received signal SIGTRAP, Trace/breakpoint trap.
  /frameworks/base/libs/hwui/
Dither.cpp 85 // Program management
88 void Dither::setupProgram(Program& program, GLuint* textureUnit) {
94 glUniform1i(program.getUniform("ditherSampler"), textureSlot);
  /frameworks/base/libs/hwui/renderstate/
MeshState.h 28 class Program;
  /frameworks/base/rs/java/android/renderscript/
ProgramFragment.java 23 * <p>The RenderScript fragment program, also known as fragment shader is responsible
25 * shader string containing the program body, textures inputs, and a Type object
26 * that describes the constants used by the program. Similar to the vertex programs,
28 * are sent to the graphics program automatically.</p>
30 * calls using the same program object, the runtime needs to be notified of that
33 * GLSL code. For example, if the fragment program is expecting a varying input called
34 * varTex0, the GLSL code inside the program vertex must provide it.
38 public class ProgramFragment extends Program {
51 * @param rs Context to which the program will belong.
  /frameworks/native/services/surfaceflinger/RenderEngine/
GLES20RenderEngine.cpp 32 #include "Program.h"
248 glEnableVertexAttribArray(Program::texCoords);
249 glVertexAttribPointer(Program::texCoords,
256 glVertexAttribPointer(Program::position,
265 glDisableVertexAttribArray(Program::texCoords);
  /packages/apps/TV/src/com/android/tv/guide/
ProgramManager.java 27 import com.android.tv.data.Program;
42 * Manages the channels and programs for the program guide.
67 private Program mSelectedProgram;
70 * Entry for program guide table. An "entry" can be either an actual program or a gap between
78 /** Program corresponding to the entry. {@code null} means that this entry is a gap. */
79 public final Program program; field in class:ProgramManager.TableEntry
100 private TableEntry(long channelId, Program program, long entryStartUtcMillis
    [all...]
  /developers/build/prebuilts/gradle/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/
OpenGLWatchFaceService.java 148 // Create program for drawing triangles.
149 Gles2ColoredTriangleList.Program triangleProgram =
150 new Gles2ColoredTriangleList.Program();
152 // We only draw triangles which all use the same program so we don't need to switch
153 // programs mid-frame. This means we can tell OpenGL to use this program only once
251 * @param program program for drawing triangles
256 private Gles2ColoredTriangleList createHand(Gles2ColoredTriangleList.Program program,
265 return new Gles2ColoredTriangleList(program, triangleCoords, color)
    [all...]
  /developers/samples/android/wearable/wear/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/
OpenGLWatchFaceService.java 148 // Create program for drawing triangles.
149 Gles2ColoredTriangleList.Program triangleProgram =
150 new Gles2ColoredTriangleList.Program();
152 // We only draw triangles which all use the same program so we don't need to switch
153 // programs mid-frame. This means we can tell OpenGL to use this program only once
251 * @param program program for drawing triangles
256 private Gles2ColoredTriangleList createHand(Gles2ColoredTriangleList.Program program,
265 return new Gles2ColoredTriangleList(program, triangleCoords, color)
    [all...]
  /development/samples/browseable/WatchFace/Wearable/src/com.example.android.wearable.watchface/
OpenGLWatchFaceService.java 148 // Create program for drawing triangles.
149 Gles2ColoredTriangleList.Program triangleProgram =
150 new Gles2ColoredTriangleList.Program();
152 // We only draw triangles which all use the same program so we don't need to switch
153 // programs mid-frame. This means we can tell OpenGL to use this program only once
251 * @param program program for drawing triangles
256 private Gles2ColoredTriangleList createHand(Gles2ColoredTriangleList.Program program,
265 return new Gles2ColoredTriangleList(program, triangleCoords, color)
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/
r300_tgsi_to_rc.c 276 dst = rc_insert_new_instruction(ttr->compiler, ttr->compiler->Program.Instructions.Prev);
293 &ttr->compiler->Program.ShadowSamplers);
327 rc_constants_add(&ttr->compiler->Program.Constants, &constant);
350 rc_constants_add(&ttr->compiler->Program.Constants, &constant);
353 ttr->immediate_offset = ttr->compiler->Program.Constants.Count;
  /frameworks/av/cmds/screenrecord/
TextRenderer.cpp 181 void TextRenderer::drawString(const Program& program, const float* texMatrix,
249 program.drawTriangles(mTextureName, texMatrix, vertices, texes,
253 float TextRenderer::drawWrappedString(const Program& texRender,
281 drawString(texRender, Program::kIdentity, xpos, ypos, str);
294 drawString(texRender, Program::kIdentity, xposAdj, ypos,
301 drawString(texRender, Program::kIdentity, xposAdj, ypos,
  /external/deqp/modules/gles3/functional/
es3fShaderApiTests.cpp 2 * drawElements Quality Program OpenGL ES 3.0 Module
188 void drawWithProgram (glu::RenderContext& renderCtx, deUint32 program)
201 gl.useProgram(program);
208 glu::draw(renderCtx, program, DE_LENGTH_OF_ARRAY(vertexArrays), &vertexArrays[0], glu::pr::Triangles(DE_LENGTH_OF_ARRAY(quadIndices), &quadIndices[0]));
348 void logProgram (TestLog& log, glu::RenderContext& renderCtx, glu::Program& program, ShaderAllocator& shaders)
350 log << TestLog::ShaderProgram(program.getLinkStatus(), program.getInfoLog());
363 void logVertexFragmentProgram (TestLog& log, glu::RenderContext& renderCtx, glu::Program& program, glu::Shader& vertShader, glu::Shader& fragShader
482 const GLuint program = glCreateProgram(); local
1365 log << program; local
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineImageSamplingInstance.cpp 179 static MovePtr<Program> createRefProgram(const tcu::TextureFormat& renderTargetFormat,
188 MovePtr<Program> program; local
212 program = MovePtr<Program>(new SamplerProgram<tcu::Texture1D>(renderTargetFormat, texture, sampler, samplerLod, lookupScale, lookupBias, componentMapping));
226 program = MovePtr<Program>(new SamplerProgram<tcu::Texture1DArray>(renderTargetFormat, textureView, sampler, samplerLod, lookupScale, lookupBias, componentMapping));
230 program = MovePtr<Program>(new SamplerProgram<tcu::Texture1DArray>(renderTargetFormat, texture, sampler, samplerLod, lookupScale, lookupBias, componentMapping));
239 program = MovePtr<Program>(new SamplerProgram<tcu::Texture2D>(renderTargetFormat, texture, sampler, sample (…)
978 MovePtr<Program> program; local
    [all...]
  /external/deqp/modules/gles2/functional/
es2fShaderApiTests.cpp 2 * drawElements Quality Program OpenGL ES 2.0 Module
294 void logProgram (TestLog& log, glu::RenderContext& renderCtx, glu::Program& program, ShaderAllocator& shaders)
296 log << TestLog::ShaderProgram(program.getLinkStatus(), program.getInfoLog());
309 void logVertexFragmentProgram (TestLog& log, glu::RenderContext& renderCtx, glu::Program& program, glu::Shader& vertShader, glu::Shader& fragShader)
313 log << TestLog::ShaderProgram(program.getLinkStatus(), program.getInfoLog());
386 // Base class for simple program API test
428 const GLuint program = glCreateProgram(); local
    [all...]
  /packages/apps/TV/tests/unit/src/com/android/tv/data/
ProgramDataManagerTest.java 131 Program currentProgram = mProgramDataManager.getCurrentProgram(channelId);
138 List<Program> programs =
142 for (Program program : programs) {
145 assertProgramEquals(startTimeMs, programInfoAt, program);
148 // Case #2: Corner cases where there's a program that starts at the start of the range.
156 for (Program program : programs) {
157 assertTrue(program.getEndTimeUtcMillis() >= prefetchTimeRangeStartMs);
174 // Set current time to few seconds before the current program ends
    [all...]

Completed in 1897 milliseconds

<<11121314151617181920>>