HomeSort by relevance Sort by last modified time
    Searched defs:frame (Results 1 - 25 of 1310) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libdrm/tests/amdgpu/
frame.h 27 const uint8_t frame[] = { variable
    [all...]
  /external/tensorflow/tensorflow/contrib/signal/python/ops/
shape_ops.py 31 """Infers the shape of the return value of `frame`."""
56 def frame(signal, frame_length, frame_step, pad_end=False, pad_value=0, axis=-1, function
73 frames = tf.contrib.signal.frame(pcm, 512, 180)
81 frame_length: The frame length in samples. An integer or scalar `Tensor`.
82 frame_step: The frame hop size in samples. An integer or scalar `Tensor`.
86 axis: A scalar integer `Tensor` indicating the axis to frame. Defaults to
97 with ops.name_scope(name, "frame", [signal, frame_length, frame_step,
166 # that indexes into the appropriate frame in subframes. For example:
172 # that indexes into the appropriate subframe within a frame. For example:
  /external/clang/test/CodeGen/
2003-08-21-BinOp-Type-Mismatch.c 7 unsigned int frame, focus; local
8 (struct bar *) focus == (focus ? ((struct bar *) frame) : 0);
  /external/sonivox/jet_tools/JetCreator/
JetHelp.py 28 frame = wx.Frame(None, -1, JetDefs.MAIN_HELPTITLE, size=(800,600)) variable
29 html1 = wx.html.HtmlWindow(frame, -1)
31 frame.Center()
32 frame.Show()
  /external/valgrind/none/tests/
stackgrowth.c 5 #define FRAME (1024)
9 volatile char frame[FRAME]; local
11 memset((char *)frame, 0xff, sizeof(frame));
  /external/webrtc/webrtc/modules/audio_processing/
audio_processing_impl_unittest.cc 44 AudioFrame frame; local
46 frame.num_channels_ = 1;
47 SetFrameSampleRate(&frame, 16000);
50 EXPECT_NOERR(mock.ProcessStream(&frame));
51 EXPECT_NOERR(mock.AnalyzeReverseStream(&frame));
54 SetFrameSampleRate(&frame, 32000);
57 EXPECT_NOERR(mock.ProcessStream(&frame));
60 frame.num_channels_ = 2;
63 EXPECT_NOERR(mock.ProcessStream(&frame));
65 frame.num_channels_ = 2
    [all...]
  /art/runtime/
managed_stack-inl.h 37 ShadowFrame* frame = top_shadow_frame_; local
38 top_shadow_frame_ = frame->GetLink();
39 return frame;
  /external/compiler-rt/test/asan/TestCases/
uar_and_exceptions.cc 22 char frame[FRAME_SIZE]; local
23 g = &frame[0];
  /external/oj-libjdwp/src/share/back/
FrameID.c 33 /* | thread frame generation (48 bits)| frame number (16 bits)| */
42 FrameID frame; local
46 frame = (frameGeneration<<FNUM_BWIDTH) | (jlong)fnum;
47 return frame;
51 getFrameNumber(FrameID frame)
54 return (FrameNumber)(((jint)frame) & FNUM_BMASK);
58 validateFrameID(jthread thread, FrameID frame)
63 if ( frameGeneration != (frame>>FNUM_BWIDTH) ) {
  /external/python/cpython2/Demo/tkinter/ttk/
roundframe.py 1 """Ttk Frame with rounded corners.
95 frame = ttk.Frame(style="RoundedFrame", padding=10) variable
96 frame.pack(fill='x')
98 frame2 = ttk.Frame(style="RoundedFrame", padding=10)
101 entry = ttk.Entry(frame, text='Test')
103 entry.bind("<FocusIn>", lambda evt: frame.state(["focus"]))
104 entry.bind("<FocusOut>", lambda evt: frame.state(["!focus"]))
  /external/tensorflow/tensorflow/compiler/tf2xla/kernels/
arg_op.cc 36 // If 'frame' is non-null, this is a function call inside an outer JIT
38 auto frame = ctx->call_frame(); variable
39 if (frame != nullptr) {
41 OP_REQUIRES_OK(ctx, frame->GetArg(index_, &val));
46 // Forwards the argument from the frame.
  /external/tensorflow/tensorflow/core/graph/
control_flow.h 28 const Node* frame = nullptr; // frame of a node member in struct:tensorflow::ControlFlowInfo
29 const Node* parent_frame = nullptr; // parent frame of a node
30 string frame_name; // frame name of a node
33 // Assign to each node the name of the frame and the level it belongs to.
35 // come from the same frame and have the same "static" iteration level.
  /frameworks/base/core/tests/coretests/src/android/widget/layout/frame/
FrameLayoutGravity.java 17 package android.widget.layout.frame;
FrameLayoutMargin.java 17 package android.widget.layout.frame;
  /frameworks/native/services/vr/hardware_composer/aidl/android/dvr/
parcelable_composer_frame.h 13 ParcelableComposerFrame(const ComposerView::Frame& frame);
16 ComposerView::Frame frame() const { return frame_; } function in class:android::dvr::ParcelableComposerFrame
22 ComposerView::Frame frame_;
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/
GLTextureTarget.java 22 import android.filterfw.core.Frame;
42 addMaskedInputPort("frame", ImageFormat.create(ImageFormat.COLORSPACE_RGBA));
47 // Get input frame
48 Frame input = pullInput("frame");
55 Frame frame = context.getFrameManager().newBoundFrame(format, GLFrame.EXISTING_TEXTURE_BINDING, mTexId); local
57 // Copy to our texture frame
58 frame.setDataFromFrame(input);
59 frame.release()
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
FrameSlotSource.java 32 .addOutputPort("frame", Signature.PORT_REQUIRED, FrameType.any())
43 Frame frame = getFrameManager().fetchFrame(mSlotName); local
44 getConnectedOutputPort("frame").pushFrame(frame);
45 frame.release();
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/tests/src/androidx/media/filterfw/
FrameTargetFilter.java 20 * a new frame has been consumed.
26 * Called each time this filter receives a new frame. The implementer of this method is
27 * responsible for releasing the frame.
29 void onFramePushed(String filterName, Frame frame);
51 Frame frame = getConnectedInputPort("input").pullFrame(); local
53 frame.retain();
54 mListener.onFramePushed(getName(), frame); local
  /art/tools/ahat/src/test/com/android/ahat/
ProguardMapTest.java 59 ProguardMap.Frame frame = map.getFrame( local
61 assertEquals("mymethod", frame.method);
62 assertEquals("(Lfoo/bar/Sludge;)V", frame.signature);
63 assertEquals("SourceFile.java", frame.filename);
64 assertEquals(123, frame.line);
74 frame = map.getFrame("foo.bar.Sludge", "mymethod", "(Lfoo/bar/Sludge;)V",
76 assertEquals("mymethod", frame.method);
77 assertEquals("(Lfoo/bar/Sludge;)V", frame.signature);
78 assertEquals("SourceFile.java", frame.filename)
    [all...]
  /external/ImageMagick/MagickCore/
xwindow.h 28 frame, member in struct:_XImportInfo
  /external/google-breakpad/src/processor/
stackwalker_ppc.cc 67 BPLOG(ERROR) << "Can't get context frame without context";
71 StackFramePPC* frame = new StackFramePPC(); local
75 frame->context = *context_;
76 frame->context_validity = StackFramePPC::CONTEXT_VALID_ALL;
77 frame->trust = StackFrame::FRAME_TRUST_CONTEXT;
78 frame->instruction = frame->context.srr0;
80 return frame;
87 BPLOG(ERROR) << "Can't get caller frame without memory or stack";
93 // its return address in the calling procedure's stack frame at 8(%r1)
124 StackFramePPC* frame = new StackFramePPC(); local
    [all...]
stackwalker_ppc64.cc 58 BPLOG(ERROR) << "Can't get context frame without context";
62 StackFramePPC64* frame = new StackFramePPC64(); local
66 frame->context = *context_;
67 frame->context_validity = StackFramePPC64::CONTEXT_VALID_ALL;
68 frame->trust = StackFrame::FRAME_TRUST_CONTEXT;
69 frame->instruction = frame->context.srr0;
71 return frame;
78 BPLOG(ERROR) << "Can't get caller frame without memory or stack";
84 // its return address in the calling procedure's stack frame at 8(%r1)
115 StackFramePPC64* frame = new StackFramePPC64(); local
    [all...]
stackwalker_sparc.cc 58 BPLOG(ERROR) << "Can't get context frame without context";
62 StackFrameSPARC* frame = new StackFrameSPARC(); local
66 frame->context = *context_;
67 frame->context_validity = StackFrameSPARC::CONTEXT_VALID_ALL;
68 frame->trust = StackFrame::FRAME_TRUST_CONTEXT;
69 frame->instruction = frame->context.pc;
71 return frame;
78 BPLOG(ERROR) << "Can't get caller frame without memory or stack";
94 // A caller frame must reside higher in memory than its callee frames
114 StackFrameSPARC* frame = new StackFrameSPARC(); local
    [all...]
  /external/mockito/subprojects/inline/src/test/java/org/mockitoinline/
StubbingLocationTest.java 22 String frame; local
23 // Initializing 'frame' at the method parameter point is to gain the exact line number of the stubbing point.
24 when(mock.concreteMethod(frame = Thread.currentThread().getStackTrace()[1].toString())).thenReturn("");
25 mock.concreteMethod(frame);
29 assertEquals("-> at " + frame, location);
  /external/opencv/cvaux/src/
cvvideo.cpp 51 CvMat frame_stub, *frame = (CvMat*)framearr; local
57 CV_CALL( frame = cvGetMat( frame, &frame_stub ));
61 if( !CV_ARE_TYPES_EQ( frame, even ) || !CV_ARE_TYPES_EQ( frame, odd ))
64 if( frame->cols != even->cols || frame->cols != odd->cols ||
65 frame->rows != even->rows*2 || odd->rows != even->rows )
74 frame->data.ptr + frame->step*y*2, size.width )
    [all...]

Completed in 1051 milliseconds

1 2 3 4 5 6 7 8 91011>>