Home
last modified time | relevance | path

Searched refs:frames (Results 1 – 25 of 43) sorted by relevance

12

/illumos-gate/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
H A DKernelStackRecord.java104 StackFrame[] frames; in parse() local
106 frames = EMPTY_FRAMES; in parse()
110 frames = new StackFrame[n]; in parse()
112 frames[i] = new StackFrame(f[i]); in parse()
115 return frames; in parse()
161 if (frames != null) { in KernelStackRecord()
162 stackFrames = frames.clone(); in KernelStackRecord()
201 setStackFrames(StackFrame[] frames) in setStackFrames() argument
205 stackFrames = frames; in setStackFrames()
362 if (frames.length == 0) { in toString()
[all …]
H A DUserStackRecord.java113 UserStackRecord(int pid, StackFrame[] frames, byte[] rawBytes) in UserStackRecord() argument
115 stackRecord = new KernelStackRecord(frames, rawBytes); in UserStackRecord()
135 setStackFrames(StackFrame[] frames) in setStackFrames() argument
137 stackRecord.setStackFrames(frames); in setStackFrames()
279 StackFrame[] frames = (StackFrame[])s.readObject(); in readObject() local
282 stackRecord = new KernelStackRecord(frames, rawBytes); in readObject()
H A DProbeData.java256 StackFrame[] frames = KernelStackRecord.parse(framesString); in addStackRecord() local
258 KernelStackRecord.class.cast(stack).setStackFrames(frames); in addStackRecord()
260 UserStackRecord.class.cast(stack).setStackFrames(frames); in addStackRecord()
/illumos-gate/usr/src/cmd/audio/utilities/
H A DAudioGain.cc244 size_t frames; in process_dcfilter() local
259 for (i = 0; i < frames; i++, inptr += inhdr.channels) { in process_dcfilter()
296 size_t frames; in process_instant() local
306 for (i = 0; i < frames; i++, inptr += inhdr.channels) { in process_instant()
310 sum /= (double)frames; in process_instant()
344 size_t frames; in process_weighted() local
350 sz = (Double) frames; in process_weighted()
354 gain_cache = new double[frames]; in process_weighted()
355 for (i = 0; i < frames; i++) { in process_weighted()
360 frames = (size_t)irint(gain_cache_size); in process_weighted()
[all …]
H A DAudioTypePcm.cc215 size_t frames; in Convert() local
256 frames = (size_t)inhdr.Time_to_Samples(length) in Convert()
260 #define COPY(N) if (inptr != outptr) memcpy(outptr, inptr, frames * N) in Convert()
268 while (frames-- > 0) F ## 2 ## T(ip, op); \ in Convert()
273 while (frames-- > 0) F /* */ 2 /* */ T(ip, op);\ in Convert()
/illumos-gate/usr/src/uts/common/xen/os/
H A Dgnttab.c511 gnttab_frame_t *frames; in gnttab_setup() local
517 set_xen_guest_handle(pset->frame_list, frames); in gnttab_setup()
530 return (frames); in gnttab_setup()
574 gnttab_frame_t *frames; in gnttab_init() local
589 frames = gnttab_setup(&set); in gnttab_init()
600 xen_assign_pfn(frames[i]), in gnttab_init()
615 kmem_free(frames, set.nr_frames * sizeof (gnttab_frame_t)); in gnttab_init()
632 gnttab_frame_t *frames; in gnttab_resume() local
647 frames = gnttab_setup(&set); in gnttab_resume()
651 FRAME_TO_MA(frames[i]) | PT_VALID | PT_WRITABLE, in gnttab_resume()
[all …]
/illumos-gate/usr/src/stand/lib/inet/
H A Dibd.c294 int frames = 0; /* successful frames */ in ibd_input() local
319 if (frames > IBD_MAX_FRAMES) { in ibd_input()
370 if (frames != 0) in ibd_input()
391 return (frames == 0 ? -1 : frames); in ibd_input()
400 return (frames == 0 ? -1 : frames); in ibd_input()
407 frames++; in ibd_input()
467 "T/O: %d < %d = %s\n", index, total_attempts, frames, no_data, in ibd_input()
471 return (frames); in ibd_input()
H A Dethernet.c295 int frames = 0; /* successful frames */ in ether_input() local
320 if (frames > ETHER_MAX_FRAMES) { in ether_input()
370 if (frames != 0) in ether_input()
392 return (frames == 0 ? -1 : frames); in ether_input()
401 return (frames == 0 ? -1 : frames); in ether_input()
408 frames++; in ether_input()
475 "T/O: %d < %d = %s\n", index, total_attempts, frames, no_data, in ether_input()
479 return (frames); in ether_input()
H A Dudp.c102 int frames = 0, header_len; in udp_input() local
152 frames++; in udp_input()
156 return (frames); in udp_input()
/illumos-gate/usr/src/boot/forth/
H A Dframes.4th28 marker task-frames.4th
43 \ ASCII frames (used when serial console is detected)
49 \ Single frames
56 \ Double frames
79 : f_ascii ( -- ) ( -- ) \ set frames to ascii
88 : f_single ( -- ) \ set frames to single
98 : f_double ( -- ) \ set frames to double
H A DMakefile34 FORTH += frames.4th
H A Dmenu.4th31 include /boot/forth/frames.4th
39 f_double \ Set frames to double (see frames.4th). Replace with
40 \ f_single if you want single frames.
881 f_single ( see frames.4th )
883 f_double ( see frames.4th )
/illumos-gate/usr/src/contrib/ast/src/lib/libast/misc/
H A Dstk.c343 register int frames = 0; in stkset() local
364 if(frames) in stkset()
378 frames++; in stkset()
385 if(frames) in stkset()
/illumos-gate/usr/src/lib/libumem/common/
H A Dumem_impl.h121 #define UMEM_BUFCTL_AUDIT_SIZE_DEPTH(frames) \ argument
122 ((size_t)(&((umem_bufctl_audit_t *)0)->bc_stack[frames]))
/illumos-gate/usr/src/uts/common/io/usb/clients/audio/usb_ac/
H A Dusb_ac.c5351 unsigned frames; in usb_ac_get_audio() local
5369 frames = reqframes - i; in usb_ac_get_audio()
5370 if (frames > engp->fragfr) in usb_ac_get_audio()
5371 frames = engp->fragfr; in usb_ac_get_audio()
5377 engp->frames += frames; in usb_ac_get_audio()
5400 unsigned frames; in usb_ac_send_audio() local
5419 frames = reqframes - i; in usb_ac_send_audio()
5421 frames = engp->fragfr; in usb_ac_send_audio()
5427 engp->frames += frames; in usb_ac_send_audio()
5490 engp->frames = 0; in usb_engine_open()
[all …]
/illumos-gate/usr/src/lib/libdtrace_jni/common/
H A Ddtj_consume.c1313 jobjectArray frames = NULL; in dtj_new_tuple_stack_record() local
1329 frames = (*jenv)->CallStaticObjectMethod(jenv, g_stack_jc, in dtj_new_tuple_stack_record()
1336 dtj_attach_frames(jc, jobj, frames); in dtj_new_tuple_stack_record()
1337 (*jenv)->DeleteLocalRef(jenv, frames); in dtj_new_tuple_stack_record()
1617 jobjectArray frames) in dtj_attach_frames() argument
1623 frames); in dtj_attach_frames()
1626 frames); in dtj_attach_frames()
/illumos-gate/usr/src/uts/common/io/usb/hcd/
H A DREADME353 transaction is reserved in 3 consecutive micro frames
490 split transaction needs bandwidth in next three subsequent micro frames
506 micro frame of 0,4,8,12,16,20,24,28 frames.
515 fourth micro frames of 0,4,8,12,16,20,24,28 frames.
/illumos-gate/usr/src/uts/common/io/usb/clients/video/usbvc/
H A Dusbvc.c1911 if (fmtgrp->frames) { in usbvc_free_stream_descr()
1912 kmem_free(fmtgrp->frames, in usbvc_free_stream_descr()
2486 fmtgrp->frames = NULL; in usbvc_parse_frames()
2492 fmtgrp->frames = (usbvc_frames_t *) in usbvc_parse_frames()
2522 frm = &fmtgrp->frames[i]; in usbvc_parse_frames()
3817 ctrl.bFrameIndex = curr_fmtgrp->frames[0].descr->bFrameIndex; in usbvc_set_default_stream_fmt()
3820 bcopy(&(curr_fmtgrp->frames[0].descr->dwDefaultFrameInterval[0]), in usbvc_set_default_stream_fmt()
3862 strm_if->cur_format_group->frames[0].descr->bFrameIndex; in usbvc_set_default_stream_fmt()
3865 &strm_if->cur_format_group->frames[index]; in usbvc_set_default_stream_fmt()
H A Dusbvc_v4l2.c766 descr = fmtgrp->frames[i].descr; in usbvc_match_image_size()
777 frame = &fmtgrp->frames[i]; in usbvc_match_image_size()
992 &strm_if->cur_format_group->frames[i]; in usbvc_v4l2_set_format()
/illumos-gate/usr/src/uts/common/sys/usb/clients/video/usbvc/
H A Dusbvc_var.h94 usbvc_frames_t *frames; member
/illumos-gate/usr/src/tools/scripts/
H A Dwebrev.sh1260 print "$FRAMEHTML<head>$STDHEAD" > $WDIR/$DIR/$TNAME.frames.html
1262 "$TPATH/$TNAME</title> </head>" >> $WDIR/$DIR/$TNAME.frames.html
1263 cat >> $WDIR/$DIR/$TNAME.frames.html <<-EOF
1273 Alas 'frames' webrev requires that your browser supports frames
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/java_api/src/
H A DTestBean.java413 StackFrame[] frames = new StackFrame[] { in getUserStackRecord() local
418 UserStackRecord r = new UserStackRecord(123456, frames, in getUserStackRecord()
/illumos-gate/usr/src/uts/common/sys/usb/clients/audio/usb_ac/
H A Dusb_ac.h156 uint64_t frames; member
/illumos-gate/usr/src/uts/sparc/dtrace/
H A Ddtrace_asm.S110 ! CWP minus the number of frames is negative; we must perform the
/illumos-gate/usr/src/cmd/lockstat/
H A Dlockstat.c872 int frames, i; in lsrec_fill() local
875 frames = rec->dtrd_size / sizeof (pc_t); in lsrec_fill()
879 for (i = 1; i < frames; i++) in lsrec_fill()

12