Searched refs:octal (Results 1 - 25 of 55) sorted by relevance

123

/macosx-10.9.5/dtrace-118.1/test/tst/common/types/
H A Dtst.constants.d30 * octal or hexadecimal
43 octal = 012345;
47 printf("%d %d %d %d", decimal, octal, hexadecimal_1, hexadecimal_2);
48 printf("%d %o %x %x", decimal, octal, hexadecimal_1, hexadecimal_2);
/macosx-10.9.5/gnutar-452/gnutar/lib/
H A Dmodechange.c37 /* The traditional octal values corresponding to each mode bit. */
50 #define ALLM 07777 /* all octal mode bits */
52 /* Convert OCTAL, which uses one of the traditional octal values, to
55 octal_to_mode (unsigned int octal) argument
58 the traditional octal representation. */
63 ? octal
64 : (mode_t) ((octal & SUID ? S_ISUID : 0)
65 | (octal & SGID ? S_ISGID : 0)
66 | (octal & SVTX ? S_ISVTX : 0)
67 | (octal
[all...]
/macosx-10.9.5/bash-92/bash-3.2/examples/loadables/
H A Dmkdir.c36 int opt, pflag, omode, rval, octal, nmode, parent_mode, um; local
66 else if (ISOCTAL (*mode)) /* octal number */
74 octal = 1;
85 octal = 0;
198 "an octal number or a symbolic mode like that used by chmod(1). If",
H A Dfinfo.c63 octal(s) function
106 case 'P': flags |= OPT_PMASK; pmask = octal(sh_optarg); break;
397 " -o permissions in octal",
/macosx-10.9.5/cxxfilt-11/cxxfilt/binutils/
H A Dsize.c45 decimal, octal, hex
89 -o|-d|-x --radix={8|10|16} Display numbers in octal, decimal or hex\n\
181 radix = octal;
209 radix = octal;
218 hexa or octal if requested by `-x' or `-o'.
252 printf (((radix == octal) ? "\t%7lo\t%7lx\t" : "\t%7lu\t%7lx\t"),
388 ((radix == octal) ? "0%lo" : "0x%lx")),
401 ((radix == octal) ? "0%lo" : "0x%lx")),
444 puts ((radix == octal) ? " text\t data\t bss\t oct\t hex\tfilename" :
461 printf (((radix == octal)
44 decimal, octal, hex enumerator in enum:__anon7580
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/tools/llvm-size/
H A Dllvm-size.cpp50 enum RadixTy {octal = 8, decimal = 10, hexadecimal = 16}; enumerator in enum:RadixTy
58 cl::values(clEnumValN(octal, "o", "Print size in octal"),
80 /// including the leading 0x or 0 for hexadecimal and octal respectively.
98 case octal:
226 fmt << "%7" << (Radix == octal ? PRIo64 : PRIu64) << " "
304 << (Radix == octal ? "oct" : "dec")
/macosx-10.9.5/tcl-102/tcl_ext/incrtcl/incrTcl/itcl/tests/
H A Densemble.test121 ensemble octal {
136 test_numbers octal option ?arg arg ...?
156 list [catch "test_numbers octal base" msg] $msg
160 list [catch "test_numbers octal digits 0o 3 5 10" msg] $msg
164 list [catch "test_numbers octal" msg] $msg
166 test_numbers octal base
167 test_numbers octal digits ?prefix? ?arg arg ...?}}
171 itcl::ensemble test_numbers part octal {args} {
172 return "octal: $args"
176 } {1 {part "octal" alread
[all...]
/macosx-10.9.5/xnu-2422.115.4/SETUP/config/
H A Dlexer.l36 int octal(char *str);
126 yylval.val = octal(yytext);
193 octal(char *str)
/macosx-10.9.5/text_cmds-87/tr/
H A Dstr.c262 int stopval, octal; local
268 octal = 0;
271 stopval = backslash(s, &octal);
283 if (octal || was_octal || MB_CUR_MAX > 1) {
362 * Translate \??? into a character. Up to 3 octal digits, if no digits either
/macosx-10.9.5/CPANInternal-140/Log-Dispatch-2.34/lib/Log/Dispatch/
H A DFile.pm247 octal value, such as 0600 or the constants available from Fcntl, like
250 See L<perlfunc/chmod> for more on potential traps when passing octal
252 that looks like an octal value, like this:
/macosx-10.9.5/cctools-845/ld/
H A Dcstring_literals.c370 char octal[4], hex[9]; local
391 /* 1, 2 or 3 octal digits */
393 octal[k++] = ms->order_addr[i];
398 octal[k++] = ms->order_addr[++i];
404 octal[k++] = ms->order_addr[++i];
407 octal[k] = '\0';
408 char_value = strtol(octal, NULL, 8);
/macosx-10.9.5/CPANInternal-140/Log-Dispatch/lib/Log/Dispatch/
H A DFile.pm232 octal value, such as 0600 or the constants available from Fcntl, like
235 See L<perlfunc/chmod> for more on potential traps when passing octal
237 that looks like an octal value, like this:
/macosx-10.9.5/vim-53/runtime/syntax/
H A Dasm.vim41 " Technically, the first decNumber def is actually octal,
42 " since the value of 0-7 octal is the same as 0-7 decimal,
H A Dslice.vim39 " Flag the first zero of an octal number as something special
49 " flag an octal number with wrong digits
H A Dcuplsim.vim39 syn keyword cuplsimBaseType octal decimal hex contained
H A Dahdl.vim47 " valid integer number formats (decimal, binary, octal, hex)
H A Dmsmessages.vim70 " Flag the first zero of an octal number as something special
73 " flag an octal number with wrong digits
H A Dnqc.vim279 " Same, but without octal error (for comments)
283 " Flag the first zero of an octal number as something special
291 " flag an octal number with wrong digits
H A Dabel.vim66 " valid integer number formats (decimal, binary, octal, hex)
H A Dcupl.vim40 " Valid integer number formats (decimal, binary, octal, hex)
/macosx-10.9.5/tcl-102/tcl_ext/tclx/tclx/tests/
H A Dunixcmds.test109 } {1 {Expected octal number got: 999}}
/macosx-10.9.5/cctools-845/as/
H A Di860.c122 static unsigned char octal[256]; variable
123 #define isoctal(c) octal[c]
322 octal[i] = 1;
H A Dsparc.c157 static unsigned char octal[256]; variable
158 #define isoctal(c) octal[(unsigned char) (c)]
244 octal[i] = 1;
/macosx-10.9.5/ksh-20/ksh/src/cmd/ksh93/features/
H A Dmath.sh299 * first byte is two-digit octal number. Last digit is number of args
/macosx-10.9.5/ruby-104/ruby/test/psych/
H A Dtest_yaml.rb419 { 'canonical' => 12345, 'decimal' => 12345, 'octal' => '014'.oct, 'hexadecimal' => '0xC'.hex }, <<EOY
422 octal: 014
427 { 'canonical' => 685230, 'decimal' => 685230, 'octal' => 02472256, 'hexadecimal' => 0x0A74AE, 'sexagesimal' => 685230 }, <<EOY)
430 octal: 02472256

Completed in 369 milliseconds

123