HomeSort by relevance Sort by last modified time
    Searched refs:stack (Results 1201 - 1225 of 2132) sorted by null

<<41424344454647484950>>

  /external/python/cpython3/Python/
ceval.c 477 PyErr_SetString(PyExc_MemoryError, "Stack overflow");
489 Py_FatalError("Cannot recover from stack overflow.");
504 /* Status code for main loop (reason for stack unwind) */
556 PyObject **stack_pointer; /* Next free slot in value stack */
560 enum why_code why; /* Reason for block stack unwind */
751 /* Stack manipulation macros */
753 /* The stack can grow at most MAXINT deep, as co_nlocals and
2945 PyObject* stack[3]; local
4561 PyObject **stack = (*pp_stack) - nargs - nkwargs; local
4756 PyObject* stack[5]; local
    [all...]
  /external/tensorflow/tensorflow/contrib/tensor_forest/python/
tensor_forest.py 520 all_predict = array_ops.stack(probabilities, axis=1)
525 tree_paths = array_ops.stack(paths, axis=1)
545 math_ops.cast(array_ops.stack(sizes), dtypes.float32))
565 return math_ops.reduce_mean(array_ops.stack(impurities))
570 total_counts = math_ops.reduce_sum(array_ops.stack(tree_counts, 0), 0)
  /external/tensorflow/tensorflow/python/framework/
ops.py 414 stack = [self._op]
416 while stack:
417 op = stack.pop()
420 stack.extend(t.op for t in op.inputs if t._shape_val is None)
    [all...]
  /external/tensorflow/tensorflow/python/ops/
array_grad.py 44 return array_ops.stack(grads, axis=op.get_attr("axis"))
145 array_ops.stack(sizes, axis=1), [non_neg_concat_dim, 0],
246 shape = array_ops.stack([input_rank, 1])
582 array_ops.transpose(array_ops.stack([op.inputs[1], input_shape])), [-1])
610 array_ops.stack([array_ops.rank(x), 1]))
    [all...]
  /external/python/cpython3/Objects/
typeobject.c 6087 PyObject *stack[2]; local
6152 PyObject *stack[2]; local
6194 PyObject* stack[2] = {other, modulus}; local
6284 PyObject *stack[1] = {arg1}; local
6403 PyObject *stack[1] = {name}; local
6471 PyObject *stack[2]; local
6583 PyObject* stack[2]; local
    [all...]
funcobject.c 573 PyObject **stack; local
576 stack = &PyTuple_GET_ITEM(args, 0);
578 return _PyFunction_FastCallDict(func, stack, nargs, kwargs);
  /external/libchrome/third_party/ply/
yacc.py 152 # Format stack entries when the parser is running in debug mode
192 def __init__(self,s,stack=None):
194 self.stack = stack
199 else: return self.stack[n].value
284 lookaheadstack = [ ] # Stack of lookahead symbols
316 statestack = [ ] # Stack of parsing states
318 symstack = [ ] # Stack of grammar symbols
321 pslice.stack = symstack # Put in the production
351 debug.debug('Stack : %s'
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
pycodegen.py 206 self.locals = misc.Stack()
207 self.setups = misc.Stack()
573 stack = []
581 stack.insert(0, (start, cont, anchor))
586 for start, cont, anchor in stack:
597 stack = []
605 stack.insert(0, (start, cont, anchor))
610 for start, cont, anchor in stack:
621 stack = []
629 stack.insert(0, (start, cont, anchor))
    [all...]
  /external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
BaseRecognizer.cs 242 * more information such as the stack frame with
406 * follow that rule reference on the stack; this amounts to
433 * that rule is pushed on a stack. Here are the various "local"
444 * and, hence, the follow context stack is:
557 // what is exact? it seems to only add sets from above on stack
    [all...]
  /external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/
BaseRecognizer.cs 267 * more information such as the stack frame with
478 * follow that rule reference on the stack; this amounts to
505 * that rule is pushed on a stack. Here are the various "local"
516 * and, hence, the follow context stack is:
631 // what is exact? it seems to only add sets from above on stack
    [all...]
  /external/freetype/include/freetype/internal/
psaux.h 640 FT_Fixed stack[PS_MAX_OPERANDS + 1]; member in struct:PS_Decoder_
885 * T1_MAX_CHARSTRING_OPERANDS is the charstring stack's capacity. A
952 FT_Long stack[T1_MAX_CHARSTRINGS_OPERANDS]; member in struct:T1_DecoderRec_
1180 FT_Fixed stack[CFF_MAX_OPERANDS + 1]; member in struct:CFF_Decoder_
    [all...]
  /external/libavc/common/arm/
ih264_inter_pred_filters_luma_vert_a9q.s 105 stmfd sp!, {r4-r12, r14} @store register values to stack
106 vstmdb sp!, {d8-d15} @push neon registers to stack
299 ldmfd sp!, {r4-r12, pc} @Restoring registers from stack
ih264_inter_pred_luma_bilinear_a9q.s 122 stmfd sp!, {r4-r12, r14} @store register values to stack
123 vstmdb sp!, {d8-d15} @push neon registers to stack
396 ldmfd sp!, {r4-r12, pc} @Restoring registers from stack
  /external/libunwind_llvm/src/
DwarfInstructions.hpp 195 // By definition, the CFA is the stack pointer at the call site, so
261 pint_t stack[100]; local
262 pint_t *sp = stack;
267 for (pint_t *t = sp; t > stack; --t) {
286 // pop stack, dereference, push result
382 // push top of stack
386 fprintf(stderr, "duplicate top of stack\n");
393 fprintf(stderr, "pop top of stack\n");
401 fprintf(stderr, "duplicate second in stack\n");
411 fprintf(stderr, "duplicate %d in stack\n", reg)
    [all...]
  /external/lz4/tests/
test-lz4-speed.py 344 stack = traceback.format_exc() variable
346 send_email(args.emails, email_topic, stack, have_mutt, have_mail)
347 print(stack)
  /external/mesa3d/src/intel/compiler/
brw_eu.c 278 assert(p->current != &p->stack[BRW_EU_MAX_INSN_STACK-1]);
285 assert(p->current != p->stack);
308 p->current = p->stack;
320 /* Set up control flow stack */
  /external/python/cpython2/Lib/compiler/
pycodegen.py 206 self.locals = misc.Stack()
207 self.setups = misc.Stack()
573 stack = []
581 stack.insert(0, (start, cont, anchor))
586 for start, cont, anchor in stack:
597 stack = []
605 stack.insert(0, (start, cont, anchor))
610 for start, cont, anchor in stack:
621 stack = []
629 stack.insert(0, (start, cont, anchor)
    [all...]
  /external/tensorflow/tensorflow/compiler/tests/
concat_ops_test.py 291 ValueError, r"Can't concatenate scalars \(use tf\.stack instead\)"):
355 packed = array_ops.stack([s0, s1, s2])
365 packed = array_ops.stack([s0, s1, s2])
375 packed = array_ops.stack([s0, s1, s2])
  /external/tensorflow/tensorflow/contrib/eager/python/examples/spinn/
spinn_test.py 221 stack = []
223 stack.append(tf.random_normal((batch_size, size * 2)))
224 stacks.append(stack)
  /external/tensorflow/tensorflow/python/eager/
ops_test.py 392 self.assertEqual(len(context_switches.stack), 1)
393 self.assertFalse(context_switches.stack[0].is_building_function)
394 self.assertEqual(context_switches.stack[0].enter_context_fn,
  /external/tensorflow/tensorflow/python/kernel_tests/
sparse_xent_op_test.py 213 weights_with_zeros = array_ops.stack([array_ops.zeros([2]), weights],
274 array_ops.stack([length]), 1.0, 0.0)
275 target = array_ops.reshape(target, array_ops.stack([-1, num_entries]))
  /external/v8/src/heap/
slot-set.h 9 #include <stack>
384 std::stack<uint32_t*> to_be_freed_buckets_;
638 std::stack<Chunk*> to_be_freed_chunks_;
  /external/v8/src/
value-serializer.cc 144 // from the previous stack-based implementation.
485 // If we are at the end of the stack, abort. This function may recurse.
2099 std::vector<Handle<Object>> stack; local
    [all...]
  /external/guice/extensions/persist/lib/
xwork-2.0.4.jar 
  /build/make/tools/droiddoc/templates-ndk/assets/js/
prettify.js 17 j;var u=i.ownerDocument,v=u.createElement("SPAN");v.className=d[a+1];var x=i.parentNode;x.replaceChild(v,i);v.appendChild(i);e<o&&(l[h+1]=i=u.createTextNode(t.substring(b,o)),x.insertBefore(i,v.nextSibling))}e=b;e>=o&&(h+=2);e>=c&&(a+=2)}}catch(w){"console"in window&&console.log(w&&w.stack?w.stack:w)}}var v=["break,continue,do,else,for,if,return,while"],w=[[v,"auto,case,char,const,default,double,enum,extern,float,goto,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile"],
20 J=[v,"alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END"],v=[v,"case,done,elif,esac,eval,fi,function,in,local,set,then,until"],K=/^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\d*)/,N=/\S/,O=u({keywords:[F,H,w,"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END"+

Completed in 1699 milliseconds

<<41424344454647484950>>