| /titanic_53/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/ |
| H A D | KernelStackRecord.java | 104 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() 159 KernelStackRecord(StackFrame[] frames, byte[] rawBytes) in KernelStackRecord() argument 161 if (frames != null) { in KernelStackRecord() 162 stackFrames = frames.clone(); in KernelStackRecord() 201 setStackFrames(StackFrame[] frames) in setStackFrames() argument 205 stackFrames = frames; in setStackFrames() [all …]
|
| H A D | UserStackRecord.java | 113 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 D | ProbeData.java | 258 StackFrame[] frames = KernelStackRecord.parse(framesString); in addStackRecord() local 260 KernelStackRecord.class.cast(stack).setStackFrames(frames); in addStackRecord() 262 UserStackRecord.class.cast(stack).setStackFrames(frames); in addStackRecord()
|
| /titanic_53/usr/src/cmd/audio/utilities/ |
| H A D | AudioGain.cc | 246 size_t frames; in process_dcfilter() local 250 frames = (size_t)inhdr.Time_to_Samples(inbuf->GetLength()); in process_dcfilter() 261 for (i = 0; i < frames; i++, inptr += inhdr.channels) { in process_dcfilter() 298 size_t frames; in process_instant() local 302 frames = (size_t)inhdr.Time_to_Samples(inbuf->GetLength()); in process_instant() 308 for (i = 0; i < frames; i++, inptr += inhdr.channels) { in process_instant() 312 sum /= (double)frames; in process_instant() 346 size_t frames; in process_weighted() local 351 frames = (size_t)inhdr.Time_to_Samples(inbuf->GetLength()); in process_weighted() 352 sz = (Double) frames; in process_weighted() [all …]
|
| H A D | AudioTypePcm.cc | 217 size_t frames; in Convert() local 258 frames = (size_t)inhdr.Time_to_Samples(length) in Convert() 262 #define COPY(N) if (inptr != outptr) memcpy(outptr, inptr, frames * N) in Convert() 270 while (frames-- > 0) F ## 2 ## T(ip, op); \ in Convert() 275 while (frames-- > 0) F /* */ 2 /* */ T(ip, op);\ in Convert()
|
| /titanic_53/usr/src/uts/common/xen/os/ |
| H A D | gnttab.c | 513 gnttab_frame_t *frames; in gnttab_setup() local 515 frames = kmem_alloc(pset->nr_frames * sizeof (gnttab_frame_t), in gnttab_setup() 519 set_xen_guest_handle(pset->frame_list, frames); in gnttab_setup() 532 return (frames); in gnttab_setup() 576 gnttab_frame_t *frames; in gnttab_init() local 591 frames = gnttab_setup(&set); in gnttab_init() 602 xen_assign_pfn(frames[i]), in gnttab_init() 617 kmem_free(frames, set.nr_frames * sizeof (gnttab_frame_t)); in gnttab_init() 634 gnttab_frame_t *frames; in gnttab_resume() local 649 frames = gnttab_setup(&set); in gnttab_resume() [all …]
|
| /titanic_53/usr/src/boot/sys/boot/forth/ |
| H A D | frames.4th | 27 marker task-frames.4th 42 \ ASCII frames (used when serial console is detected) 48 \ Single frames 55 \ Double frames 78 : f_ascii ( -- ) ( -- ) \ set frames to ascii 87 : f_single ( -- ) \ set frames to single 97 : f_double ( -- ) \ set frames to double
|
| H A D | Makefile.inc | 12 FORTH += frames.4th
|
| /titanic_53/usr/src/stand/lib/inet/ |
| H A D | ibd.c | 294 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 D | ethernet.c | 295 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 D | udp.c | 102 int frames = 0, header_len; in udp_input() local 152 frames++; in udp_input() 156 return (frames); in udp_input()
|
| /titanic_53/usr/src/contrib/ast/src/lib/libast/misc/ |
| H A D | stk.c | 343 register int frames = 0; in stkset() local 364 if(frames) in stkset() 378 frames++; in stkset() 382 if(frames) in stkset()
|
| /titanic_53/usr/src/lib/libumem/common/ |
| H A D | umem_impl.h | 118 #define UMEM_BUFCTL_AUDIT_SIZE_DEPTH(frames) \ argument 119 ((size_t)(&((umem_bufctl_audit_t *)0)->bc_stack[frames]))
|
| /titanic_53/usr/src/uts/common/io/usb/clients/audio/usb_ac/ |
| H A D | usb_ac.c | 5348 unsigned frames; in usb_ac_get_audio() local 5363 for (i = 0; i < reqframes; i += frames) { in usb_ac_get_audio() 5366 frames = reqframes - i; in usb_ac_get_audio() 5367 if (frames > engp->fragfr) in usb_ac_get_audio() 5368 frames = engp->fragfr; in usb_ac_get_audio() 5370 sz = (frames << engp->frsmshift) << engp->smszshift; in usb_ac_get_audio() 5374 engp->frames += frames; in usb_ac_get_audio() 5397 unsigned frames; in usb_ac_send_audio() local 5413 for (i = 0; i < reqframes; i += frames) { in usb_ac_send_audio() 5416 frames = reqframes - i; in usb_ac_send_audio() [all …]
|
| /titanic_53/usr/src/lib/libdtrace_jni/common/ |
| H A D | dtj_consume.c | 1313 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()
|
| /titanic_53/usr/src/uts/common/io/usb/hcd/ |
| H A D | README | 353 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.
|
| /titanic_53/usr/src/uts/common/io/usb/clients/video/usbvc/ |
| H A D | usbvc.c | 1908 if (fmtgrp->frames) { in usbvc_free_stream_descr() 1909 kmem_free(fmtgrp->frames, in usbvc_free_stream_descr() 2483 fmtgrp->frames = NULL; in usbvc_parse_frames() 2489 fmtgrp->frames = (usbvc_frames_t *) in usbvc_parse_frames() 2519 frm = &fmtgrp->frames[i]; in usbvc_parse_frames() 3814 ctrl.bFrameIndex = curr_fmtgrp->frames[0].descr->bFrameIndex; in usbvc_set_default_stream_fmt() 3817 bcopy(&(curr_fmtgrp->frames[0].descr->dwDefaultFrameInterval[0]), in usbvc_set_default_stream_fmt() 3859 strm_if->cur_format_group->frames[0].descr->bFrameIndex; in usbvc_set_default_stream_fmt() 3862 &strm_if->cur_format_group->frames[index]; in usbvc_set_default_stream_fmt()
|
| H A D | usbvc_v4l2.c | 766 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()
|
| /titanic_53/usr/src/uts/common/sys/usb/clients/video/usbvc/ |
| H A D | usbvc_var.h | 94 usbvc_frames_t *frames; member
|
| /titanic_53/usr/src/uts/common/sys/usb/clients/audio/usb_ac/ |
| H A D | usb_ac.h | 156 uint64_t frames; member
|
| /titanic_53/usr/src/uts/common/io/cxgbe/common/ |
| H A D | common.h | 132 u64 frames; member 166 u32 frames; member
|
| /titanic_53/usr/src/cmd/dtrace/test/tst/common/java_api/src/ |
| H A D | TestBean.java | 413 StackFrame[] frames = new StackFrame[] { in getUserStackRecord() local 418 UserStackRecord r = new UserStackRecord(123456, frames, in getUserStackRecord()
|
| /titanic_53/usr/src/tools/scripts/ |
| H A D | webrev.sh | 960 print "$FRAMEHTML<head>$STDHEAD" > $WDIR/$DIR/$TNAME.frames.html 962 "$TPATH/$TNAME</title> </head>" >> $WDIR/$DIR/$TNAME.frames.html 963 cat >> $WDIR/$DIR/$TNAME.frames.html <<-EOF 973 Alas 'frames' webrev requires that your browser supports frames
|
| /titanic_53/usr/src/uts/sparc/dtrace/ |
| H A D | dtrace_asm.s | 214 ! CWP minus the number of frames is negative; we must perform the
|
| /titanic_53/usr/src/cmd/lockstat/ |
| H A D | lockstat.c | 873 int frames, i; in lsrec_fill() local 876 frames = rec->dtrd_size / sizeof (pc_t); in lsrec_fill() 880 for (i = 1; i < frames; i++) in lsrec_fill()
|