1237834Smm/*
2237834Smm * CDDL HEADER START
3237834Smm *
4237834Smm * The contents of this file are subject to the terms of the
5237834Smm * Common Development and Distribution License (the "License").
6237834Smm * You may not use this file except in compliance with the License.
7237834Smm *
8237834Smm * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9237834Smm * or http://www.opensolaris.org/os/licensing.
10237834Smm * See the License for the specific language governing permissions
11237834Smm * and limitations under the License.
12237834Smm *
13237834Smm * When distributing Covered Code, include this CDDL HEADER in each
14237834Smm * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15237834Smm * If applicable, add the following below this CDDL HEADER, with the
16237834Smm * fields enclosed by brackets "[]" replaced with your own identifying
17237834Smm * information: Portions Copyright [yyyy] [name of copyright owner]
18237834Smm *
19237834Smm * CDDL HEADER END
20237834Smm */
21237834Smm
22237834Smm/*
23237834Smm * Copyright (c) 2011, Joyent, Inc. All rights reserved.
24237834Smm */
25237834Smm
26237834Smm#pragma D option quiet
27237834Smm
28237834Smmtick-1ms
29237834Smm/i++ <= 100/
30237834Smm{
31237834Smm	@two = llquantize(i, 2, 0, 6, 2);
32237834Smm	@three = llquantize(i, 3, 0, 1, 9);
33237834Smm	@four = llquantize(i, 4, 0, 1, 4);
34237834Smm	@five = llquantize(i, 5, 0, 1, 25);
35237834Smm	@six = llquantize(i, 6, 0, 3, 12);
36237834Smm	@seven = llquantize(i, 7, 0, 1, 7);
37237834Smm	@eight = llquantize(i, 8, 0, 1, 16);
38237834Smm	@nine = llquantize(i, 9, 0, 1, 9);
39237834Smm	@ten = llquantize(i, 10, 0, 1, 10);
40237834Smm}
41237834Smm
42237834Smmtick-1ms
43237834Smm/i > 100/
44237834Smm{
45237834Smm	exit(0);
46237834Smm}
47