HomeSort by relevance Sort by last modified time
    Searched refs:program (Results 226 - 250 of 3450) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /art/tools/dexfuzz/src/dexfuzz/fuzzers/
Fuzzer.java 38 import dexfuzz.program.Mutation;
39 import dexfuzz.program.Program;
75 private Timer timerProgGen = new Timer("Program Generation");
191 * Called from each Fuzzer subclass that we can instantiate. Parses the program, fuzzes it,
193 * the mutation phase, if we wanted to verify that a test program itself works.
195 protected Program fuzz() {
197 Program program = loadProgram(inputFile, null); local
198 if (program == null)
386 Program program = null; local
    [all...]
  /device/generic/goldfish-opengl/shared/OpenglCodecCommon/
GLSharedGroup.cpp 330 void GLSharedGroup::addProgramData(GLuint program)
333 ProgramData *pData = m_programs.valueFor(program);
336 m_programs.removeItem(program);
340 m_programs.add(program,new ProgramData());
343 void GLSharedGroup::initProgramData(GLuint program, GLuint numIndexes)
346 ProgramData *pData = m_programs.valueFor(program);
353 bool GLSharedGroup::isProgramInitialized(GLuint program)
356 ProgramData* pData = m_programs.valueFor(program);
361 if (m_shaderProgramIdMap.find(program) == m_shaderProgramIdMap.end()) return false;
362 ShaderProgramData* spData = m_shaderPrograms.valueFor(m_shaderProgramIdMap[program]);
    [all...]
  /external/deqp/modules/gles31/functional/
es31fNegativeShaderApiTests.cpp 2 * drawElements Quality Program OpenGL ES 3.1 Module
117 GLuint program = ctx.glCreateProgram(); local
118 ctx.glShaderSource(program, 0, 0, 0);
122 ctx.glDeleteProgram(program);
137 GLuint program = ctx.glCreateProgram(); local
138 ctx.glCompileShader(program);
142 ctx.glDeleteProgram(program);
217 ctx.beginSection("GL_INVALID_VALUE is generated if shaders contains anything other than shader or program objects.");
222 ctx.beginSection("GL_INVALID_OPERATION is generated if shaders refers to a program object.");
236 GLuint program = ctx.glCreateProgram() local
285 GLuint program = ctx.glCreateProgram(); local
545 GLuint program = ctx.glCreateProgram(); local
909 GLuint program = ctx.glCreateProgram(); local
2284 GLuint program = ctx.glCreateProgram(); local
2315 GLuint program = ctx.glCreateProgram(); local
    [all...]
  /external/antlr/antlr-3.4/runtime/Perl5/examples/tweak/
tweak.pl 15 $parser->program();
  /external/linux-kselftest/tools/testing/selftests/ptp/
testptp.mk 1 # PTP 1588 clock support - User space test program
5 # This program is free software; you can redistribute it and/or modify
10 # This program is distributed in the hope that it will be useful,
16 # along with this program; if not, write to the Free Software
  /external/skia/infra/bots/recipes/
check_generated_files.py 41 program="""import os
66 program="""
  /external/skia/src/sksl/
SkSLHCodeGenerator.h 29 HCodeGenerator(const Context* context, const Program* program, ErrorReporter* errors,
42 static String GetHeader(const Program& program, ErrorReporter& errors);
  /external/skqp/infra/bots/recipes/
check_generated_files.py 41 program="""import os
66 program="""
  /external/skqp/src/sksl/
SkSLHCodeGenerator.h 29 HCodeGenerator(const Context* context, const Program* program, ErrorReporter* errors,
42 static String GetHeader(const Program& program, ErrorReporter& errors);
  /external/valgrind/none/tests/s390x/
op_exception.stderr.exp 5 Your program just tried to execute an instruction that Valgrind
7 1. Your program has a bug and erroneously jumped to a non-code
9 warning about a bad jump, it's probably your program's fault.
14 probably kill your program.
18 Your program just tried to execute an instruction that Valgrind
20 1. Your program has a bug and erroneously jumped to a non-code
22 warning about a bad jump, it's probably your program's fault.
27 probably kill your program.
31 Your program just tried to execute an instruction that Valgrind
33 1. Your program has a bug and erroneously jumped to a non-cod
    [all...]
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
ProgramPort.java 40 return "Program " + super.toString();
49 Program program = (Program)fieldValue; local
50 program.setHostValue(mVarName, mValue);
55 "Access to program field '" + mField.getName() + "' was denied!");
57 throw new RuntimeException("Non Program field '" + mField.getName()
  /frameworks/support/room/runtime/src/test/java/androidx/room/
RoomSQLiteQueryTest.java 81 SupportSQLiteProgram program = mock(SupportSQLiteProgram.class); local
82 query.bindTo(program);
84 verify(program).bindBlob(1, myBlob);
85 verify(program).bindLong(2, myLong);
86 verify(program).bindNull(3);
87 verify(program).bindDouble(4, myDouble);
88 verify(program).bindString(5, myString);
89 verify(program).bindNull(6);
  /packages/apps/TV/src/com/android/tv/data/
ProgramDataManager.java 64 // To prevent from too many program update operations at the same time, we give random interval
103 private final Map<Long, Program> mChannelIdCurrentProgramMap = new ConcurrentHashMap<>();
115 private Map<Long, ArrayList<Program>> mChannelIdProgramCache = new HashMap<>();
117 // Any program that ends prior to this time will be removed from the cache
118 // when a channel's current program is updated.
123 private final LruCache<Long, Program> mZeroLengthProgramCache = new LruCache<>(10);
177 * Set the program prefetch update wait which gives the delay to query all programs from DB to
227 /** Returns the current program at the specified channel. */
229 public Program getCurrentProgram(long channelId) {
235 public List<Program> getCurrentPrograms()
513 Program program = Program.fromCursor(c); local
606 Program program = Program.fromCursor(c); local
663 Program program = null; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/rpcsvc/
rquota.x 47 program RQUOTAPROG {
  /system/update_engine/
test_subprocess.cc 17 // This is a simple program used to test interaction with update_engine when
18 // executing other programs. This program receives pre-programmed actions in the
31 void usage(const char* program, const char* error) {
34 fprintf(stderr, "Usage: %s <cmd> [args..]\n", program);
  /external/deqp/modules/gles3/functional/
es3fNegativeStateApiTests.cpp 2 * drawElements Quality Program OpenGL ES 3.0 Module
186 GLuint program = glCreateProgram();
189 m_log << TestLog::Section("", "GL_INVALID_VALUE is generated if program is not a value generated by OpenGL.");
194 m_log << TestLog::Section("", "GL_INVALID_OPERATION is generated if program is not a program object.");
200 glGetAttachedShaders(program, -1, &count[0], &shaders[0]);
205 glDeleteProgram(program);
214 GLuint program = glCreateProgram();
228 glGetShaderiv(program, GL_SHADER_TYPE, &param[0]);
233 glDeleteProgram(program);
    [all...]
  /external/webrtc/webrtc/modules/video_render/ios/
open_gles20.mm 208 GLuint program = glCreateProgram();
209 if (program) {
210 glAttachShader(program, vertex_shader);
211 glAttachShader(program, fragment_shader);
212 glLinkProgram(program);
214 glGetProgramiv(program, GL_LINK_STATUS, &link_status);
217 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &info_len);
220 glGetProgramInfoLog(program, info_len, NULL, buf);
224 "%s: Could not link program: %s",
229 glDeleteProgram(program);
    [all...]
  /packages/apps/TV/src/com/android/tv/dvr/ui/list/
DvrHistoryRowAdapter.java 145 RecordedProgram program, int maxDays) {
149 program.getStartTimeUtcMillis(),
153 ScheduledRecording scheduledRecording = ScheduledRecording.builder(program).build();
154 mRecordedProgramScheduleMap.put(program.getId(), scheduledRecording);
170 public void onScheduledRecordingAdded(RecordedProgram program) {
172 Log.d(TAG, "onScheduledRecordingAdded: " + program);
174 if (mRecordedProgramScheduleMap.get(program.getId()) != null) {
178 recordedProgramsToScheduledRecordings(program, MAX_HISTORY_DAYS);
196 public void onScheduledRecordingRemoved(RecordedProgram program) {
198 Log.d(TAG, "onScheduledRecordingRemoved: " + program);
    [all...]
  /art/tools/dexfuzz/src/dexfuzz/program/
MInsn.java 17 package dexfuzz.program;
  /art/tools/dexfuzz/src/dexfuzz/program/mutators/
InstructionDuplicator.java 17 package dexfuzz.program.mutators;
21 import dexfuzz.program.MInsn;
22 import dexfuzz.program.MutatableCode;
23 import dexfuzz.program.Mutation;
RegisterClobber.java 17 package dexfuzz.program.mutators;
21 import dexfuzz.program.MInsn;
22 import dexfuzz.program.MutatableCode;
23 import dexfuzz.program.Mutation;
  /external/autotest/client/deps/glbench/src/
trianglesetuptest.cc 54 GLuint program = local
56 GLint attribute_index = glGetAttribLocation(program, "c");
60 GLint color_uniform = glGetUniformLocation(program, "color");
99 glDeleteProgram(program);
  /external/clang/utils/
CaptureCmd 4 invocations of another program.
36 program = os.getenv('CAPTURE_CMD_PROGRAM')
39 if not program:
60 os.execv(program, sys.argv)
69 os.execv(program, sys.argv)
  /external/deqp/external/vulkancts/framework/vulkan/
vkSpirVAsm.hpp 34 //! Assemble SPIR-V program. Will fail with NotSupportedError if compiler is not available.
35 bool assembleSpirV (const SpirVAsmSource* program, std::vector<deUint32>* dst, SpirVProgramInfo* buildInfo, SpirvVersion spirvVersion);
  /external/mesa3d/src/mesa/state_tracker/
st_mesa_to_tgsi.h 52 const struct gl_program *program,

Completed in 802 milliseconds

1 2 3 4 5 6 7 8 91011>>