HomeSort by relevance Sort by last modified time
    Searched refs:cmds (Results 1 - 25 of 140) sorted by null

1 2 3 4 5 6

  /build/core/
process_wrapper_gdb.sh 17 gdb -q -x $2/process_wrapper_gdb.cmds --args "$@"
  /external/chromium_org/gpu/command_buffer/client/
gles2_cmd_helper_autogen.h 15 gles2::cmds::ActiveTexture* c = GetCmdSpace<gles2::cmds::ActiveTexture>();
22 gles2::cmds::AttachShader* c = GetCmdSpace<gles2::cmds::AttachShader>();
31 gles2::cmds::BindAttribLocationBucket* c =
32 GetCmdSpace<gles2::cmds::BindAttribLocationBucket>();
39 gles2::cmds::BindBuffer* c = GetCmdSpace<gles2::cmds::BindBuffer>();
46 gles2::cmds::BindFramebuffer* c = GetCmdSpace<gles2::cmds::BindFramebuffer>()
    [all...]
gles2_cmd_helper.h 31 gles2::cmds::GetAttribLocation* c =
32 GetCmdSpace<gles2::cmds::GetAttribLocation>();
41 gles2::cmds::GetUniformLocation* c =
42 GetCmdSpace<gles2::cmds::GetUniformLocation>();
52 gles2::cmds::CreateAndConsumeTextureCHROMIUMImmediate::ComputeSize();
53 gles2::cmds::CreateAndConsumeTextureCHROMIUMImmediate* c =
55 gles2::cmds::CreateAndConsumeTextureCHROMIUMImmediate>(size);
gles2_implementation_unittest_autogen.h 17 struct Cmds {
18 cmds::AttachShader cmd;
20 Cmds expected;
29 struct Cmds {
30 cmds::BindBuffer cmd;
32 Cmds expected;
43 struct Cmds {
44 cmds::BindFramebuffer cmd;
46 Cmds expected;
57 struct Cmds {
    [all...]
gles2_implementation_unittest.cc 439 sizeof(cmds::GetShaderPrecisionFormat::Result) * 12);
513 const uint8* cmds = reinterpret_cast<const uint8*>(ring_buffer->memory()); local
514 const uint8* end = cmds + ring_buffer->size();
515 for (; cmds < end; ++cmds) {
516 if (*cmds != kInitialValue) {
594 GetExpectedResultMemory(sizeof(cmds::GetError::Result));
772 struct Cmds {
785 Cmds expected;
814 struct Cmds {
    [all...]
  /external/chromium_org/gpu/command_buffer/service/
gles2_cmd_decoder_unittest_2_autogen.h 17 SpecializedSetup<cmds::Scissor, 0>(true);
18 cmds::Scissor cmd;
26 SpecializedSetup<cmds::Scissor, 0>(false);
27 cmds::Scissor cmd;
35 SpecializedSetup<cmds::Scissor, 0>(false);
36 cmds::Scissor cmd;
47 SpecializedSetup<cmds::StencilFunc, 0>(true);
48 cmds::StencilFunc cmd;
56 SpecializedSetup<cmds::StencilFuncSeparate, 0>(true);
57 cmds::StencilFuncSeparate cmd
    [all...]
gles2_cmd_decoder_unittest_1_autogen.h 19 SpecializedSetup<cmds::AttachShader, 0>(true);
20 cmds::AttachShader cmd;
29 SpecializedSetup<cmds::BindBuffer, 0>(true);
30 cmds::BindBuffer cmd;
40 SpecializedSetup<cmds::BindBuffer, 0>(true);
41 cmds::BindBuffer cmd;
50 SpecializedSetup<cmds::BindBuffer, 0>(false);
51 cmds::BindBuffer cmd;
59 SpecializedSetup<cmds::BindFramebuffer, 0>(true);
60 cmds::BindFramebuffer cmd
    [all...]
gles2_cmd_decoder_unittest_2.cc 55 cmds::Uniform1i cmd;
64 cmds::Uniform1ivImmediate& cmd =
65 *GetImmediateAs<cmds::Uniform1ivImmediate>();
75 cmds::Uniform2i cmd;
84 cmds::Uniform2ivImmediate& cmd =
85 *GetImmediateAs<cmds::Uniform2ivImmediate>();
95 cmds::Uniform3i cmd;
104 cmds::Uniform3ivImmediate& cmd =
105 *GetImmediateAs<cmds::Uniform3ivImmediate>();
115 cmds::Uniform4i cmd
    [all...]
gles2_cmd_decoder_unittest_1.cc 43 void GLES2DecoderTestBase::SpecializedSetup<cmds::GenerateMipmap, 0>(
58 void GLES2DecoderTestBase::SpecializedSetup<cmds::CheckFramebufferStatus, 0>(
73 void GLES2DecoderTestBase::SpecializedSetup<cmds::Clear, 0>(bool valid) {
80 void GLES2DecoderTestBase::SpecializedSetup<cmds::ColorMask, 0>(
89 void GLES2DecoderTestBase::SpecializedSetup<cmds::CopyTexImage2D, 0>(
100 void GLES2DecoderTestBase::SpecializedSetup<cmds::CopyTexSubImage2D, 0>(
111 void GLES2DecoderTestBase::SpecializedSetup<cmds::DetachShader, 0>(bool valid) {
117 cmds::AttachShader attach_cmd;
124 void GLES2DecoderTestBase::SpecializedSetup<cmds::FramebufferRenderbuffer, 0>(
137 void GLES2DecoderTestBase::SpecializedSetup<cmds::FramebufferTexture2D, 0>
    [all...]
gles2_cmd_decoder_autogen.h 17 const gles2::cmds::ActiveTexture& c) {
25 const gles2::cmds::AttachShader& c) {
34 const gles2::cmds::BindBuffer& c) {
47 const gles2::cmds::BindFramebuffer& c) {
60 const gles2::cmds::BindRenderbuffer& c) {
73 const gles2::cmds::BindTexture& c) {
86 const gles2::cmds::BlendColor& c) {
104 const gles2::cmds::BlendEquation& c) {
121 const gles2::cmds::BlendEquationSeparate& c) {
145 const gles2::cmds::BlendFunc& c)
    [all...]
  /external/clang/bindings/python/tests/cindex/
test_cdb.py 32 cmds = cdb.getCompileCommands('/home/john.doe/MyProject/project.cpp')
33 assert len(cmds) != 0
38 cmds = cdb.getAllCompileCommands()
39 assert len(cmds) == 3
51 for i in range(len(cmds)):
52 assert cmds[i].directory == expected[i]['wd']
53 for arg, exp in zip(cmds[i].arguments, expected[i]['line']):
59 cmds = cdb.getCompileCommands('/home/john.doe/MyProject/project.cpp')
60 assert len(cmds) == 1
61 assert cmds[0].directory == '/home/john.doe/MyProject
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
help.c 8 void add_cmdname(struct cmdnames *cmds, const char *name, size_t len)
16 ALLOC_GROW(cmds->names, cmds->cnt + 1, cmds->alloc);
17 cmds->names[cmds->cnt++] = ent;
20 static void clean_cmdnames(struct cmdnames *cmds)
24 for (i = 0; i < cmds->cnt; ++i)
25 free(cmds->names[i]);
26 free(cmds->names)
    [all...]
help.h 22 void add_cmdname(struct cmdnames *cmds, const char *name, size_t len);
24 void exclude_cmds(struct cmdnames *cmds, struct cmdnames *excludes);
  /ndk/sources/host-tools/make-3.81/
commands.h 39 extern void print_commands PARAMS ((struct commands *cmds));
41 extern void chop_commands PARAMS ((struct commands *cmds));
default.c 556 /* Don't clobber cmds given in a makefile if there were any. */
557 if (f->cmds == 0)
559 f->cmds = (struct commands *) xmalloc (sizeof (struct commands));
560 f->cmds->fileinfo.filenm = 0;
561 f->cmds->commands = s[1];
562 f->cmds->command_lines = 0;
commands.c 122 if (file->cmds == default_file->cmds)
267 /* Chop CMDS up into individual command lines if necessary.
271 chop_commands (struct commands *cmds)
280 if (!cmds || cmds->command_lines != 0)
283 /* Chop CMDS->commands up into lines in CMDS->command_lines.
284 Also set the corresponding CMDS->lines_flags elements,
285 and the CMDS->any_recurse flag. *
    [all...]
rule.h 28 struct commands *cmds; /* Commands to execute. */ member in struct:rule
rule.c 159 CMDS are the commands.
164 convert_suffix_rule (char *target, char *source, struct commands *cmds)
211 create_pattern_rule (names, percents, 0, deps, cmds, 0);
245 if (f->cmds != 0)
247 convert_suffix_rule ("", dep_name (d), f->cmds);
261 if (f == 0 || f->cmds == 0)
269 f->cmds);
273 convert_suffix_rule (dep_name (d2), dep_name (d), f->cmds);
397 r->cmds = (struct commands *) xmalloc (sizeof (struct commands));
398 r->cmds->fileinfo.filenm = 0
    [all...]
  /external/chromium_org/gpu/command_buffer/common/
gles2_cmd_format_test_autogen.h 18 cmds::ActiveTexture& cmd = *GetBufferAs<cmds::ActiveTexture>();
20 EXPECT_EQ(static_cast<uint32_t>(cmds::ActiveTexture::kCmdId),
28 cmds::AttachShader& cmd = *GetBufferAs<cmds::AttachShader>();
31 EXPECT_EQ(static_cast<uint32_t>(cmds::AttachShader::kCmdId),
40 cmds::BindAttribLocationBucket& cmd =
41 *GetBufferAs<cmds::BindAttribLocationBucket>();
46 EXPECT_EQ(static_cast<uint32_t>(cmds::BindAttribLocationBucket::kCmdId),
56 cmds::BindBuffer& cmd = *GetBufferAs<cmds::BindBuffer>()
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
vgu.c 42 const VGubyte *cmds,
51 vgAppendPathData(path, num_cmds, cmds, common_data);
58 static const VGubyte cmds[] = {VG_MOVE_TO_ABS, VG_LINE_TO_ABS}; local
75 vgu_append_float_coords(path, cmds, 2, coords, 4);
85 VGubyte *cmds; local
103 cmds = malloc(sizeof(VGubyte) * count + 1);
106 cmds[0] = VG_MOVE_TO_ABS;
110 cmds[i] = VG_LINE_TO_ABS;
116 cmds[i] = VG_CLOSE_PATH;
120 vgu_append_float_coords(path, cmds, i, coords, 2*i)
132 static const VGubyte cmds[] = {VG_MOVE_TO_ABS, local
170 static const VGubyte cmds[] = {VG_MOVE_TO_ABS, local
227 static const VGubyte cmds[] = {VG_MOVE_TO_ABS, local
266 VGubyte cmds[11]; local
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vega/
vgu.c 42 const VGubyte *cmds,
51 vgAppendPathData(path, num_cmds, cmds, common_data);
58 static const VGubyte cmds[] = {VG_MOVE_TO_ABS, VG_LINE_TO_ABS}; local
75 vgu_append_float_coords(path, cmds, 2, coords, 4);
85 VGubyte *cmds; local
103 cmds = malloc(sizeof(VGubyte) * count + 1);
106 cmds[0] = VG_MOVE_TO_ABS;
110 cmds[i] = VG_LINE_TO_ABS;
116 cmds[i] = VG_CLOSE_PATH;
120 vgu_append_float_coords(path, cmds, i, coords, 2*i)
132 static const VGubyte cmds[] = {VG_MOVE_TO_ABS, local
170 static const VGubyte cmds[] = {VG_MOVE_TO_ABS, local
227 static const VGubyte cmds[] = {VG_MOVE_TO_ABS, local
266 VGubyte cmds[11]; local
    [all...]
  /external/chromium_org/third_party/brotli/src/brotli/enc/
histogram.cc 30 const std::vector<Command>& cmds,
44 for (int i = 0; i < cmds.size(); ++i) {
45 const Command &cmd = cmds[i];
69 const std::vector<Command>& cmds,
78 for (int i = 0; i < cmds.size(); ++i) {
79 const Command &cmd = cmds[i];
block_splitter.h 60 void CopyLiteralsToByteArray(const std::vector<Command>& cmds,
64 void SplitBlock(const std::vector<Command>& cmds,
  /frameworks/native/opengl/tools/glgen2/
glgen.py 131 self.cmds = []
138 self.cmds.append({'rtype': rtype, 'name': fname, 'params': params})
174 self.cmds.sort(key=itemgetter('name'))
175 cmds = []
176 for cmd in self.cmds:
177 if len(cmds) == 0 or cmd != cmds[-1]:
178 cmds.append(cmd)
179 self.cmds = cmds
    [all...]
  /frameworks/native/cmds/installd/tests/
Android.mk 21 frameworks/native/cmds/installd

Completed in 389 milliseconds

1 2 3 4 5 6