/external/deqp/external/openglcts/modules/gl/ |
D | gl4cShaderAtomicCountersTests.cpp | 1264 GLuint prog_; member in gl4cts::BasicProgramQuery 1270 prog_ = 0; in Setup() 1294 prog_ = CreateProgram(glsl_vs, NULL, NULL, NULL, glsl_fs, true); in Run() 1298 …glGetProgramiv(prog_, GL_ACTIVE_ATOMIC_COUNTER_BUFFERS, reinterpret_cast<GLint*>(&active_buffers)); in Run() 1306 …glGetActiveAtomicCounterBufferiv(prog_, 0, GL_ATOMIC_COUNTER_BUFFER_BINDING, &buffers_binding_inde… in Run() 1309 …glGetActiveAtomicCounterBufferiv(prog_, buffers_binding_index, GL_ATOMIC_COUNTER_BUFFER_DATA_SIZE,… in Run() 1316 …glGetActiveAtomicCounterBufferiv(prog_, buffers_binding_index, GL_ATOMIC_COUNTER_BUFFER_ACTIVE_ATO… in Run() 1326 glGetActiveAtomicCounterBufferiv(prog_, buffers_binding_index, in Run() 1342 glGetActiveAtomicCounterBufferiv(prog_, buffers_binding_index, in Run() 1351 glGetActiveAtomicCounterBufferiv(prog_, buffers_binding_index, in Run() [all …]
|
/external/deqp/external/openglcts/modules/gles31/ |
D | es31cShaderAtomicCountersTests.cpp | 809 GLuint prog_; member in glcts::BasicUsageCS 815 prog_ = 0; in Setup() 950 prog_ = CreateComputeProgram(glsl_cs); in Run() 951 glLinkProgram(prog_); in Run() 952 if (!CheckProgram(prog_)) in Run() 973 glUseProgram(prog_); in Run() 1011 glDeleteProgram(prog_); in Cleanup() 1375 GLuint prog_; member in glcts::BasicProgramQuery 1381 prog_ = 0; in Setup() 1407 prog_ = CreateComputeProgram(glsl_cs); in Run() [all …]
|
/external/rust/crates/grpcio-sys/grpc/third_party/re2/re2/ |
D | bitstate.cc | 56 Prog* prog_; // program being run member in re2::BitState 77 : prog_(prog), in BitState() 91 int n = prog_->list_heads()[id] * static_cast<int>(text_.size()+1) + in ShouldVisit() 155 cap_[prog_->inst(-id)->cap()] = p; in TrySearch() 168 Prog::Inst* ip = prog_->inst(id); in TrySearch() 178 if (ip->greedy(prog_)) { in TrySearch() 237 DCHECK(id == 0 || prog_->inst(id-1)->last()); in TrySearch() 296 if (prog_->anchor_start() && context_.begin() != text.begin()) in Search() 298 if (prog_->anchor_end() && context_.end() != text.end()) in Search() 300 anchored_ = anchored || prog_->anchor_start(); in Search() [all …]
|
D | nfa.cc | 115 Prog* prog_; // underlying program member in re2::NFA 134 prog_ = prog; in NFA() 135 start_ = prog_->start(); in NFA() 141 q0_.resize(prog_->size()); in NFA() 142 q1_.resize(prog_->size()); in NFA() 144 int nstack = 2*prog_->inst_count(kInstCapture) + in NFA() 145 prog_->inst_count(kInstEmptyWidth) + in NFA() 146 prog_->inst_count(kInstNop) + 1; // + 1 for start inst in NFA() 239 Prog::Inst* ip = prog_->inst(id); in AddToThreadq() 349 Prog::Inst* ip = prog_->inst(id); in Step() [all …]
|
D | compile.cc | 235 Prog* prog_; // Program being built. member in re2::Compiler 256 prog_ = new Prog(); in Compiler() 269 delete prog_; in ~Compiler() 1153 c.prog_->set_reversed(reversed); in Compile() 1154 if (c.prog_->reversed()) { in Compile() 1155 c.prog_->set_anchor_start(is_anchor_end); in Compile() 1156 c.prog_->set_anchor_end(is_anchor_start); in Compile() 1158 c.prog_->set_anchor_start(is_anchor_start); in Compile() 1159 c.prog_->set_anchor_end(is_anchor_end); in Compile() 1162 c.prog_->set_start(all.begin); in Compile() [all …]
|
D | set.cc | 25 prog_ = NULL; in Set() 33 delete prog_; in ~Set() 100 prog_ = Prog::CompileSet(re, anchor_, options_.max_mem()); in Compile() 102 return prog_ != NULL; in Compile() 123 bool ret = prog_->SearchDFA(text, text, Prog::kAnchored, Prog::kManyMatch, in Match() 128 << "program size " << prog_->size() << ", " in Match() 129 << "list count " << prog_->list_count() << ", " in Match() 130 << "bytemap range " << prog_->bytemap_range(); in Match()
|
D | re2.cc | 188 prog_ = NULL; in Init() 221 prog_ = suffix_regexp_->CompileToProg(options_.max_mem()*2/3); in Init() 222 if (prog_ == NULL) { in Init() 240 is_one_pass_ = prog_->IsOnePass(); in Init() 266 delete prog_; in ~RE2() 277 if (prog_ == NULL) in ProgramSize() 279 return prog_->size(); in ProgramSize() 283 if (prog_ == NULL) in ReverseProgramSize() 333 if (prog_ == NULL) in ProgramFanout() 335 return Fanout(prog_, histogram); in ProgramFanout() [all …]
|
D | dfa.cc | 319 return prog_->bytemap_range(); in ByteMap() 320 return prog_->bytemap()[c]; in ByteMap() 324 Prog* prog_; // The regular expression program to run. member in re2::DFA 424 : prog_(prog), in DFA() 431 fprintf(stderr, "\nkind %d\n%s\n", kind_, prog_->DumpUnanchored().c_str()); in DFA() 434 nmark = prog_->size(); in DFA() 436 int nstack = prog_->inst_count(kInstCapture) + in DFA() 437 prog_->inst_count(kInstEmptyWidth) + in DFA() 438 prog_->inst_count(kInstNop) + in DFA() 443 mem_budget_ -= (prog_->size() + nmark) * in DFA() [all …]
|
D | set.h | 70 re2::Prog* prog_; variable
|
D | re2.h | 753 re2::Prog* prog_; // compiled program for regexp variable
|
/external/rust/crates/grpcio-sys/grpc/third_party/re2/re2/testing/ |
D | backtrack.cc | 72 Prog* prog_; // program being run member in re2::Backtracker 90 : prog_(prog), in Backtracker() 106 if (prog_->anchor_start() && text.begin() > context_.begin()) in Search() 108 if (prog_->anchor_end() && text.end() < context_.end()) in Search() 110 anchored_ = anchored | prog_->anchor_start(); in Search() 111 longest_ = longest | prog_->anchor_end(); in Search() 112 endmatch_ = prog_->anchor_end(); in Search() 129 int nvisited = prog_->size() * static_cast<int>(text.size()+1); in Search() 137 return Visit(prog_->start(), text.data()); in Search() 145 if (Visit(prog_->start(), p)) // Match must be leftmost; done. in Search() [all …]
|
D | tester.cc | 179 prog_(NULL), in TestInstance() 197 prog_ = regexp_->CompileToProg(0); in TestInstance() 198 if (prog_ == NULL) { in TestInstance() 210 << prog_->Dump(); in TestInstance() 281 delete prog_; in ~TestInstance() 314 if (prog_ == NULL) { in RunSearch() 319 prog_->UnsafeSearchBacktrack(text, context, anchor, kind_, in RunSearch() 325 if (prog_ == NULL) { in RunSearch() 330 prog_->SearchNFA(text, context, anchor, kind_, in RunSearch() 336 if (prog_ == NULL) { in RunSearch() [all …]
|
D | tester.h | 82 Prog* prog_; // compiled program variable
|
/external/rust/crates/grpcio-sys/grpc/third_party/re2/ |
D | ucs2.diff | 25 if (TrySearch(prog_->start(), p)) // Match must be leftmost; done. 27 - if (prog_->flags() & Regexp::UCS2) 173 c.prog_->set_start_unanchored(c.prog_->start()); 184 c.prog_->set_start_unanchored(unanchored.begin); 190 - bool ucs2 = prog_->flags() & Regexp::UCS2; 350 if (Visit(prog_->start(), p)) // Match must be leftmost; done. 352 - if (prog_->flags() & Regexp::UCS2) 384 prog_ = regexp_->CompileToProg(0);
|
/external/mesa3d/src/gallium/frontends/clover/api/ |
D | program.cpp | 45 prog_(prog), notifer(notifer), data_(data) { } in build_notifier() 49 notifer(prog_, data_); in ~build_notifier() 53 cl_program prog_; member in __anona6e72ce30111::build_notifier
|
/external/linux-kselftest/tools/testing/selftests/seccomp/ |
D | seccomp_bpf.c | 826 struct sock_fprog prog_##name = { \
|
/external/python/cpython3/Doc/library/ |
D | argparse.rst | 151 * prog_ - The name of the program (default: ``sys.argv[0]``)
|
/external/python/cpython2/Doc/library/ |
D | argparse.rst | 150 * prog_ - The name of the program (default: ``sys.argv[0]``)
|