/external/mesa3d/src/gallium/drivers/ilo/shader/ |
D | toy_helpers.h | 133 bool eot, in tsrc_imm_mdesc() argument 145 desc = eot << 31 | in tsrc_imm_mdesc() 164 const bool eot = false; in tsrc_imm_mdesc_sampler() local 184 return tsrc_imm_mdesc(tc, eot, message_length, in tsrc_imm_mdesc_sampler() 190 bool eot, in tsrc_imm_mdesc_data_port() argument 220 return tsrc_imm_mdesc(tc, eot, message_length, in tsrc_imm_mdesc_data_port() 234 const bool eot = false; in tsrc_imm_mdesc_data_port_scratch() local 248 return tsrc_imm_mdesc(tc, eot, message_length, in tsrc_imm_mdesc_data_port_scratch() 254 bool eot, in tsrc_imm_mdesc_urb() argument 291 return tsrc_imm_mdesc(tc, eot, message_length, in tsrc_imm_mdesc_urb()
|
D | ilo_shader_gs.c | 226 bool eot) in gs_write_vue() argument 264 eot, msg_len, !eot, true, true, !eot, in gs_write_vue() 396 bool eot; in gs_lower_opcode_emit_vue_static() local 398 eot = (gcc->static_data.num_vertices == gcc->static_data.total_vertices); in gs_lower_opcode_emit_vue_static() 404 if (eot && gcc->write_so) { in gs_lower_opcode_emit_vue_static() 424 gcc->shader->out.count, eot); in gs_lower_opcode_emit_vue_static() 426 if (!eot) { in gs_lower_opcode_emit_vue_static()
|
D | ilo_shader_vs.c | 937 bool eot; in vs_write_vue() local 940 eot = true; in vs_write_vue() 957 eot = false; in vs_write_vue() 980 eot = false; in vs_write_vue() 990 desc = tsrc_imm_mdesc_urb(tc, eot, msg_len, 0, in vs_write_vue() 991 eot, true, false, true, sent_attrs / 2, 0); in vs_write_vue()
|
/external/antlr/antlr-3.4/runtime/Python/antlr3/ |
D | dfa.py | 49 eot, eof, min, max, accept, special, transition argument 55 self.eot = eot 108 if self.eot[s] >= 0: # EOT Transition to accept state? 111 s = self.eot[s] 128 if self.eot[s] >= 0: 131 s = self.eot[s]
|
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/ |
D | DFA.as | 15 protected var eot:Array; // short[] 33 eot:Array, eof:Array, min:Array, max:Array, accept:Array, special:Array, transition:Array, 39 this.eot = eot; 101 // eot[s]>=0 indicates that an EOT edge goes to another 103 if ( eot[s]>=0 ) { // EOT Transition to accept state? 105 s = eot[s]; 107 // TODO: I had this as return accept[eot[s]] 121 if ( eot[s]>=0 ) { // EOT Transition? 123 s = eot[s]; 135 trace("eot["+s+"]="+eot[s]);
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/ |
D | DFA.java | 42 protected short[] eot; field in DFA 105 if ( eot[s]>=0 ) { // EOT Transition to accept state? in predict() 107 s = eot[s]; in predict() 123 if ( eot[s]>=0 ) { // EOT Transition? in predict() 125 s = eot[s]; in predict() 137 System.err.println("eot["+s+"]="+eot[s]); in predict()
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
D | DFA.cs | 61 protected short[] eot; field in Antlr.Runtime.DFA 126 if (eot[s] >= 0) { // EOT Transition to accept state? in Predict() 129 s = eot[s]; in Predict() 145 if (eot[s] >= 0) { // EOT Transition? in Predict() 148 s = eot[s]; in Predict() 161 Console.Error.WriteLine("eot[" + s + "]=" + eot[s]); in Predict()
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/ |
D | DFA.cs | 56 protected short[] eot; field in Antlr.Runtime.DFA 150 if ( eot[s] >= 0 ) in Predict() 154 s = eot[s]; in Predict() 170 if ( eot[s] >= 0 ) in Predict() 174 s = eot[s]; in Predict() 189 Console.Error.WriteLine( "eot[" + s + "]=" + eot[s] ); in Predict()
|
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/ |
D | DFA.js | 58 if ( this.eot[s]>=0 ) { // EOT Transition to accept state? 59 s = this.eot[s]; 75 if ( this.eot[s]>=0 ) { // EOT Transition? 76 s = this.eot[s];
|
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/ |
D | DFA.pm | 98 if ($self->eot->[$s] >= 0) { # EOT Transition to accept state? 99 $s = $self->eot->[$s]; 118 if ($self->eot->[$s] >= 0) { # EOT Transition? 119 $s = $self->eot->[$s];
|
/external/antlr/antlr-3.4/runtime/C/src/ |
D | antlr3cyclicdfa.c | 148 if (cdfa->eot[s] >= 0) in antlr3dfapredict() 150 s = cdfa->eot[s]; in antlr3dfapredict() 167 if (cdfa->eot[s] >= 0) in antlr3dfapredict() 169 s = cdfa->eot[s]; in antlr3dfapredict()
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
D | ANTLRDFA.m | 91 // eot[s]>=0 indicates that an EOT edge goes to another 93 if (eot[s] >= 0) { 95 s = eot[s]; 97 // TODO: I had this as return accept[eot[s]] 112 if (eot[s] >= 0) {// EOT transition? we may still accept the input in the next state 114 s = eot[s]; 126 NSLog(@"eot[%d] = %d\n", s, min[s]); 255 @synthesize eot;
|
D | ANTLRDFA.h | 34 const int *eot; variable 71 @property const int *eot;
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/ |
D | NFAState.java | 246 public void setEOTTargetState(boolean eot) { in setEOTTargetState() argument 247 EOTTargetState = eot; in setEOTTargetState()
|
D | DFA.java | 209 public Vector eot; field in DFA 324 public List getJavaCompressedEOT() { return getRunLengthEncoding(eot); } 405 eot = new Vector(this.getNumberOfStates()); // Vector<int> 406 eot.setSize(this.getNumberOfStates()); 599 eot.set(s.stateNumber, Utils.integer(edge.target.stateNumber)); 612 eot.set(s.stateNumber, Utils.integer(edge.target.stateNumber));
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/ |
D | dfa.rb | 145 eot = nil, eof = nil, min = nil, max = nil, argument 150 @eot = eot || self.class::EOT #.eot
|
/external/antlr/antlr-3.4/runtime/Ruby/test/unit/ |
D | test-dfa.rb | 24 dfa.eot.should == DFASubclass::EOT
|
/external/harfbuzz_ng/util/ |
D | options.hh | 183 bot = eot = preserve_default_ignorables = false; in shape_options_t() 212 (eot ? HB_BUFFER_FLAG_EOT : 0) | in setup_buffer() 271 hb_bool_t eot; member
|
/external/antlr/antlr-3.4/runtime/Python/unittests/ |
D | testdfa.py | 32 eot=[],
|
/external/antlr/antlr-3.4/runtime/C/include/ |
D | antlr3cyclicdfa.h | 77 const ANTLR3_INT32 * const eot; member
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | brw_fs_visitor.cpp | 149 write->eot = true; in emit_dummy_fs() 508 inst->eot = true; in emit_fb_writes() 628 inst->eot = true; in emit_urb_writes() 789 inst->eot = slot == last_slot && stage != MESA_SHADER_GEOMETRY; in emit_urb_writes() 818 inst->eot = true; in emit_cs_terminate()
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/ |
D | ANTLRDFA.h | 34 const int *eot; variable
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/ |
D | ANTLRDFA.h | 34 const int *eot; variable
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/ |
D | ANTLRDFA.h | 34 const int *eot; variable
|
/external/icu/icu4c/source/test/testdata/break_rules/ |
D | sentence.txt | 30 # SB2: ÷ eot
|