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

1 2 3 4 56 7 8 91011>>

  /external/google-breakpad/src/processor/
stackwalker_x86_unittest.cc 153 const vector<StackFrame *> *frames; member in class:StackwalkerX86Fixture
176 frames = call_stack.frames();
177 StackFrameX86 *frame = static_cast<StackFrameX86 *>(frames->at(0));
202 frames = call_stack.frames();
203 StackFrameX86 *frame = static_cast<StackFrameX86 *>(frames->at(0));
225 frames = call_stack.frames();
226 StackFrameX86 *frame = static_cast<StackFrameX86 *>(frames->at(0))
    [all...]
  /external/iw/
event.c 145 uint32_t frames; local
148 frames = nla_get_u32(cqm[NL80211_ATTR_CQM_PKT_LOSS_EVENT]);
150 printf("peer %s didn't ACK %d packets\n", buf, frames);
  /external/libunwind/src/x86_64/
Gtrace.c 40 unw_tdep_frame_t *frames; member in struct:__anon25830
71 munmap (cache->frames, (1u << cache->log_size) * sizeof(unw_tdep_frame_t));
88 unw_tdep_frame_t *frames; local
91 GET_MEMORY(frames, n * sizeof (unw_tdep_frame_t));
92 if (likely(frames != NULL))
94 frames[i] = empty_frame;
96 return frames;
122 if (! (cache->frames = trace_cache_buckets(1u << HASH_MIN_BITS)))
153 munmap(cache->frames, old_size * sizeof(unw_tdep_frame_t));
154 cache->frames = new_frames
    [all...]
  /external/libusb/libusb/os/
darwin_usb.h 144 uint64_t frames[256]; member in struct:darwin_device_handle_priv::darwin_interface
  /external/libvpx/libvpx/test/
vp9_arf_freq_test.cc 114 int frames = (marker & 0x7) + 1; local
115 const unsigned int index_sz = 2 + mag * frames;
122 frames = 1;
124 return frames;
129 const int frames = GetNumFramesInPkt(pkt); local
130 if (frames == 1) {
132 } else if (frames == 2) {
  /external/python/cpython2/Lib/test/
test_aifc.py 28 frames = audiotests.fromhex("""\
45 frames = audiotests.fromhex("""\
64 frames = audiotests.fromhex("""\
89 frames = audiotests.fromhex("""\
114 frames = audiotests.fromhex("""\
123 frames = audiotests.byteswap2(frames) variable in class:AifcULAWTest
330 frames = '\x00' * fout.getnchannels() * sampwidth
331 fout.writeframes(frames)
  /external/python/cpython3/Lib/test/
test_aifc.py 28 frames = bytes.fromhex("""\
45 frames = bytes.fromhex("""\
64 frames = bytes.fromhex("""\
89 frames = bytes.fromhex("""\
114 frames = bytes.fromhex("""\
123 frames = byteswap(frames, 2) variable in class:AifcULAWTest
135 frames = bytes.fromhex("""\
144 frames = byteswap(frames, 2 variable in class:AifcALAWTest
    [all...]
  /external/skia/tests/
PathOpsConicIntersectionTest.cpp 230 const SkDConic* frames[] = { variable
248 const SkDConic& dC = frames[index][fIndex];
277 const SkDConic& dC = frames[index][fIndex];
  /external/skqp/tests/
PathOpsConicIntersectionTest.cpp 230 const SkDConic* frames[] = { variable
248 const SkDConic& dC = frames[index][fIndex];
277 const SkDConic& dC = frames[index][fIndex];
  /external/tinyalsa/
tinycap.c 81 unsigned int frames; local
177 frames = capture_sample(file, card, device, header.num_channels,
180 printf("Captured %u frames\n", frames);
183 header.data_sz = frames * header.block_align;
203 unsigned int frames = 0; local
254 frames = pcm_bytes_to_frames(pcm, bytes_read);
257 return frames;
  /external/v4l2_codec2/vda/
vp9_parser.cc 279 // With this optimization, we may be able to parse more frames while previous
455 // No frames to be decoded, if there is no more stream, request more.
538 // size of each frame to frames.
539 std::deque<FrameInfo> frames; local
552 frames.push_back(FrameInfo(stream, size));
559 return frames;
  /external/v8/src/inspector/
v8-stack-trace-impl.cc 50 std::vector<V8StackTraceImpl::Frame>& frames,
61 frames.push_back(toFrame(stackFrame, wasmTranslation, contextGroupId));
122 std::vector<V8StackTraceImpl::Frame> frames; local
124 toFramesVector(stackTrace, frames, maxStackSize, isolate, debugger,
154 contextGroupId, description, frames,
193 std::vector<Frame> frames; local
195 frames.push_back(m_frames.at(i).clone());
197 new V8StackTraceImpl(m_contextGroupId, m_description, frames, nullptr));
202 std::vector<Frame>& frames,
207 m_frames.swap(frames);
252 std::unique_ptr<protocol::Array<protocol::Runtime::CallFrame>> frames = local
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/opus/
opus_interface.c 22 /* The format allows up to 120 ms frames. Since we don't control the other
411 int frames, samples; local
412 frames = opus_packet_get_nb_frames(payload, (opus_int32)payload_length_bytes);
413 if (frames < 0) {
417 samples = frames * opus_packet_get_samples_per_frame(payload, 48000);
451 int frames, channels, payload_length_ms; local
472 frames = 1;
476 frames = 2;
480 frames = 3;
499 if (frame_data[0][0] & (0x80 >> ((n + 1) * (frames + 1) - 1))
    [all...]
  /external/webrtc/webrtc/modules/video_coding/
video_sender_unittest.cc 143 int frames = 0; local
149 frames++;
151 return frames;
397 // Note: SetChannelParameters fails if less than 2 frames are in the
  /frameworks/av/media/libmedia/
IMediaMetadataRetriever.cpp 215 status_t getFrameAtIndex(std::vector<sp<IMemory> > *frames,
239 frames->push_back(interface_cast<IMemory>(reply.readStrongBinder()));
442 std::vector<sp<IMemory> > frames; local
444 &frames, frameIndex, numFrames, colorFormat, metaOnly);
447 reply->writeInt32(frames.size());
448 for (size_t i = 0; i < frames.size(); i++) {
449 reply->writeStrongBinder(IInterface::asBinder(frames[i]));
  /frameworks/base/tools/locked_region_code_injection/src/lockedregioncodeinjection/
LockFindingClassVisitor.java 107 Frame[] frames = a.getFrames(); local
109 frameMap.addAll(Arrays.asList(frames));
  /frameworks/native/libs/vr/libvrflinger/
display_surface.cpp 412 int frames = 0; local
415 // missing, this code will skip frames to catch up by checking if
421 if (frames > 0 && skipped_buffer)
423 ++frames;
426 if (frames == 2)
  /hardware/intel/img/hwcomposer/merrifield/common/base/
HwcLayer.cpp 271 int frames = mFrames.size(); local
272 while (frames && now - mFrames[0] > 5000000000LL) {
274 frames--;
277 if (frames > 1) {
278 fps = frames * 1000000000.0/ (now - mFrames[0]);
  /prebuilts/misc/windows/sdl2/test/
testgles2.c 415 Uint32 then, now, frames; local
626 frames = 0;
631 ++frames;
675 SDL_Log("%2.2f frames per second\n",
676 ((double) frames * 1000) / (now - then));
testintersections.c 200 Uint32 then, now, frames; local
268 frames = 0;
273 ++frames;
333 double fps = ((double) frames * 1000) / (now - then);
334 SDL_Log("%2.2f frames per second\n", fps);
  /system/media/audio_utils/
echo_reference.c 50 size_t buf_size; // main buffer size in frames
51 size_t frames_in; // number of frames in main buffer
53 size_t wr_buf_size; // size of conversion buffer in frames
54 size_t wr_frames_in; // number of frames in conversion buffer
55 size_t wr_curr_frame_size; // number of frames given to current write() function
152 ALOGV("echo_reference_write() START trying to write %zu frames", buffer->frame_count);
157 //ALOGV("echo_reference_write() %d frames", buffer->frame_count);
215 size_t frames = buffer->frame_count; local
216 while (frames--) {
242 // resampler to get new frames
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/log/
LogUtil.java 79 // frame 2: skip frames 0 (#getClassName) and 1 (this method)
91 // frame 2: skip frames 0 (#getClassName) and 1 (this method)
101 // frame 2: skip frames 0 (#getClassName) and 1 (this method)
113 // frame 2: skip frames 0 (#getClassName) and 1 (this method)
123 // frame 2: skip frames 0 (#getClassName) and 1 (this method)
135 // frame 2: skip frames 0 (#getClassName) and 1 (this method)
145 // frame 2: skip frames 0 (#getClassName) and 1 (this method)
156 // frame 2: skip frames 0 (#getClassName) and 1 (this method)
168 // frame 2: skip frames 0 (#getClassName) and 1 (this method)
178 // frame 2: skip frames 0 (#getClassName) and 1 (this method
335 StackTraceElement[] frames = (new Throwable()).getStackTrace(); local
364 StackTraceElement[] frames = t.getStackTrace(); local
    [all...]
  /art/tools/ahat/src/main/com/android/ahat/heapdump/
Parser.java 51 * Class serial numbers, stack frames, and stack traces individually satisfy
89 * Class serial numbers, stack frames, and stack traces individually satisfy
149 DenseMap<ProguardMap.Frame> frames = new DenseMap<ProguardMap.Frame>("Stack Frame"); local
210 frames.put(frameId, frame);
221 trace[i] = frames.get(frameId);
    [all...]
  /art/tools/dmtracedump/
createtesttrace.cc 78 dataRecord** frames; member in struct:stack
148 callStack[ii].frames = nullptr;
186 if (callStack[threadId].frames == nullptr) {
188 callStack[threadId].frames = stk;
241 callStack[threadId].frames[indentLevel] = &records[nextRecord];
245 if (callStack[threadId].frames[indentLevel - 1] == nullptr) {
249 callStack[threadId].frames[indentLevel - 1] = &records[nextRecord];
258 char* name = callStack[threadId].frames[indentLevel - 1]->fullName;
265 callStack[threadId].frames[indentLevel - 1]->fullName);
284 // frames than we entered
    [all...]
  /external/adhd/cras/src/server/
dev_stream.c 165 size_t frames = 0; local
185 rstream, buffer_offset + fr_read, &frames);
186 if (frames == 0)
189 read_frames = frames;
198 dev_frames = MIN(frames, num_to_write - fr_written);
287 &rstream->audio_area->frames);
288 num_frames = MIN(rstream->audio_area->frames - offset,
294 rstream->audio_area->frames,
308 dev_stream->conv_area->frames = write_frames;
353 area->frames - area_offset)
398 int frames; local
    [all...]

Completed in 1613 milliseconds

1 2 3 4 56 7 8 91011>>