HomeSort by relevance Sort by last modified time
    Searched defs:InputCount (Results 1 - 4 of 4) sorted by null

  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/otvalid/
otvcommn.c 787 FT_UInt BacktrackCount, InputCount, LookaheadCount;
801 InputCount = FT_NEXT_USHORT( p );
802 if ( InputCount == 0 )
805 OTV_TRACE(( " (InputCount = %d)\n", InputCount ));
807 OTV_LIMIT_CHECK( InputCount * 2 );
808 p += ( InputCount - 1 ) * 2;
825 if ( FT_NEXT_USHORT( p ) >= InputCount )
  /external/v8/src/compiler/
linkage.h 224 size_t InputCount() const { return 1 + machine_sig_->parameter_count(); }
node.h 48 bool IsDead() const { return InputCount() > 0 && !InputAt(0); }
60 int InputCount() const {
69 if (index < 0 || index >= InputCount()) { \
356 DCHECK_LT(index, use_->from()->InputCount());
429 return Node::InputEdges::iterator(this->node_, this->node_->InputCount());
472 return const_iterator(this->node_, this->node_->InputCount());
wasm-compiler.cc 313 unsigned WasmGraphBuilder::InputCount(Node* node) {
314 return static_cast<unsigned>(node->InputCount());
325 int new_size = merge->InputCount();
332 int new_size = phi->InputCount();
333 phi->InsertInput(jsgraph()->zone(), phi->InputCount() - 1, from);
    [all...]

Completed in 219 milliseconds