HomeSort by relevance Sort by last modified time
    Searched defs:frames (Results 51 - 75 of 573) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/mesa3d/src/gallium/auxiliary/util/
u_debug_refcnt.c 182 struct debug_stack_frame frames[STACK_LEN]; local
190 debug_backtrace_capture(frames, 1, STACK_LEN);
192 if (frames[i].function)
193 symbols[i] = debug_symbol_name_cached(frames[i].function);
  /external/python/cpython2/Lib/
cgitb.py 117 frames = [] variable
169 frames.append('''
181 return head + ''.join(frames) + ''.join(exception) + '''
205 frames = [] variable
243 frames.append('\n%s\n' % '\n'.join(rows))
251 return head + ''.join(frames) + ''.join(exception) + '''
  /external/python/cpython3/Lib/
cgitb.py 116 frames = [] variable
168 frames.append('''
179 return head + ''.join(frames) + ''.join(exception) + '''
203 frames = [] variable
241 frames.append('\n%s\n' % '\n'.join(rows))
248 return head + ''.join(frames) + ''.join(exception) + '''
  /external/replicaisland/src/com/replica/replicaisland/
SpriteAnimation.java 45 final FixedSizeArray<AnimationFrame> frames = mFrames; local
46 assert frames.getCount() == frames.getCapacity();
47 final int frameCount = frames.getCount();
48 result = frames.get(frameCount - 1);
58 // When there are very few frames it's actually slower to do a binary search
66 result = frames.get(index);
69 AnimationFrame frame = frames.get(x);
  /external/smali/smalidea/src/main/java/org/jf/smalidea/debugging/value/
LazyThreadReference.java 61 public List<StackFrame> frames() throws IncompatibleThreadStateException { method in class:LazyThreadReference
62 return getValue().frames();
65 public List<StackFrame> frames(int start, int length) throws IncompatibleThreadStateException { method in class:LazyThreadReference
66 return getValue().frames(start, length);
  /external/swiftshader/src/Main/
FrameBufferX11.cpp 151 static int frames = -1; local
155 frames++;
162 FPS = frames / delta;
165 frames = 0;
  /frameworks/av/media/extractors/mp3/
XINGSeeker.cpp 133 if (flags & 0x0001) { // Frames field is present
138 int32_t frames = U32_AT(buffer); local
143 if (frames) {
144 seeker->mDurationUs = (int64_t)frames * samples_per_frame * 1000000LL / sampling_rate;
  /frameworks/base/libs/hwui/
JankTracker.h 68 RingBuffer<FrameInfo, 120>& frames() { return mFrames; } function in class:android::uirenderer::JankTracker
91 // Ring buffer large enough for 2 seconds worth of frames
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
Mosaic.h 34 The class Mosaic provides a simple interface to the panoramic mosaicing algorithm. The class allows passing in individual image frames to be stitched together, computes the alignment transformation between them, and then stitches and blends them together into a single panoramic output which can then be accessed as a single image. \
47 while (<image frames are available>)
56 // Add to list of frames
93 * \param nframes Number of frames to pre-allocate; default value -1 will allocate each frame as it comes
95 * \param thresh_still Minimum number of pixels of translation detected between the new frame and the last frame before this frame is added to be mosaiced. For the low-res processing at 320x180 resolution input, we set this to 5 pixels. To reject no frames, set this to 0.0 (default value).
115 * After adding all frames, call this function to perform the final blending.
155 * Size of image frames making up mosaic
172 * Collection of frames that will make up mosaic.
174 MosaicFrame **frames; member in class:Mosaic
177 * Subset of frames that are considered as relevant
    [all...]
  /packages/apps/TV/tests/jank/src/com/android/tv/tests/jank/
MenuJankTest.java 29 * The minimum number of frames expected during each jank test. If there is less the test will
30 * fail. To be safe we loop the action in each test to create twice this many frames under
52 int frames = 40; // measured by hand. local
53 int repeat = EXPECTED_FRAMES * 2 / frames;
  /prebuilts/gdb/darwin-x86/lib/python2.7/
cgitb.py 117 frames = [] variable
169 frames.append('''
181 return head + ''.join(frames) + ''.join(exception) + '''
205 frames = [] variable
243 frames.append('\n%s\n' % '\n'.join(rows))
251 return head + ''.join(frames) + ''.join(exception) + '''
  /prebuilts/gdb/linux-x86/lib/python2.7/
cgitb.py 117 frames = [] variable
169 frames.append('''
181 return head + ''.join(frames) + ''.join(exception) + '''
205 frames = [] variable
243 frames.append('\n%s\n' % '\n'.join(rows))
251 return head + ''.join(frames) + ''.join(exception) + '''
  /prebuilts/go/darwin-x86/src/image/gif/
writer_test.go 161 var frames = []string{ var
170 Image: make([]*image.Paletted, len(frames)),
171 Delay: make([]int, len(frames)),
174 for i, f := range frames {
  /prebuilts/go/linux-x86/src/image/gif/
writer_test.go 161 var frames = []string{ var
170 Image: make([]*image.Paletted, len(frames)),
171 Delay: make([]int, len(frames)),
174 for i, f := range frames {
  /prebuilts/misc/windows/sdl2/test/
testgles.c 110 Uint32 then, now, frames; local
286 frames = 0;
291 ++frames;
335 SDL_Log("%2.2f frames per second\n",
336 ((double) frames * 1000) / (now - then));
testrendercopyex.c 139 int frames; local
181 frames = 0;
186 ++frames;
200 double fps = ((double) frames * 1000) / (now - then);
201 SDL_Log("%2.2f frames per second\n", fps);
testscale.c 129 int frames; local
171 frames = 0;
176 ++frames;
190 double fps = ((double) frames * 1000) / (now - then);
191 SDL_Log("%2.2f frames per second\n", fps);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
cgitb.py 117 frames = [] variable
169 frames.append('''
181 return head + ''.join(frames) + ''.join(exception) + '''
205 frames = [] variable
243 frames.append('\n%s\n' % '\n'.join(rows))
251 return head + ''.join(frames) + ''.join(exception) + '''
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
cgitb.py 117 frames = [] variable
169 frames.append('''
181 return head + ''.join(frames) + ''.join(exception) + '''
205 frames = [] variable
243 frames.append('\n%s\n' % '\n'.join(rows))
251 return head + ''.join(frames) + ''.join(exception) + '''
  /system/core/healthd/
AnimationParser.cpp 89 std::vector<animation::frame> frames; local
121 frames.push_back(std::move(frame));
128 if (anim->animation_file.empty() || frames.empty()) {
134 anim->num_frames = frames.size();
135 anim->frames = new animation::frame[frames.size()];
136 std::copy(frames.begin(), frames.end(), anim->frames);
  /system/core/libmemunreachable/include/memunreachable/
memunreachable.h 51 uintptr_t frames[max_frames]; member in struct:android::Leak::Backtrace
  /system/extras/simpleperf/
OfflineUnwinder.cpp 177 std::vector<backtrace_frame_data_t> frames; local
179 if (Backtrace::UnwindOffline(unwind_regs.get(), cached_map.map.get(), stack_info, &frames, &error)) {
180 for (auto& frame : frames) {
  /external/annotation-tools/asmx/src/org/objectweb/asm/attrs/
StackMapTableAttribute.java 47 * more stack map frames. Each stack map frame specifies (either explicitly or
90 * the actual byte code offset we ensure, by definition, that stack map frames
92 * formula <code>offset_delta + 1</code> for all explicit frames, we guarantee
410 private List frames; field in class:StackMapTableAttribute
416 public StackMapTableAttribute(List frames) {
418 this.frames = frames;
422 return frames;
426 for (int i = 0; i < frames.size(); i++) {
427 StackMapFrame frame = (StackMapFrame) frames.get(i)
452 ArrayList frames = new ArrayList(); local
    [all...]
  /bionic/libc/kernel/uapi/linux/can/
bcm.h 34 struct can_frame frames[0]; member in struct:bcm_msg_head
  /development/tools/bugreport/src/com/android/bugreport/stacks/
ThreadSnapshot.java 38 public ArrayList<StackFrameSnapshot> frames = new ArrayList<StackFrameSnapshot>(); field in class:ThreadSnapshot
76 N = that.frames.size();
78 this.frames.add(that.frames.get(i).clone());

Completed in 1405 milliseconds

1 23 4 5 6 7 8 91011>>