Home
last modified time | relevance | path

Searched refs:except (Results 1 – 25 of 2943) sorted by relevance

12345678910>>...118

/titanic_53/usr/src/lib/libgen/common/
H A Dstrecpy.c54 strecpy(char *pout, const char *pin, const char *except) in strecpy() argument
56 (void) streadd(pout, pin, except); in strecpy()
62 streadd(char *pout, const char *pin, const char *except) in streadd() argument
67 if (!isprint(c) && (!except || !strchr(except, c))) { in streadd()
99 if (c == '\\' && (!except || !strchr(except, c))) in streadd()
/titanic_53/usr/src/lib/libbc/libc/gen/common/
H A Dgetauditflags.c90 except_t except[2]; in getauditflagschar() local
110 except[i].type = -1; in getauditflagschar()
111 except[i].exception = -1; in getauditflagschar()
184 except[0].type = i; in getauditflagschar()
185 except[0].exception = lists[i].off; in getauditflagschar()
195 except[0].type = COMMON; in getauditflagschar()
196 except[0].exception = lists[COMMON].off; in getauditflagschar()
199 except[1].type = i; in getauditflagschar()
200 except[1].exception = lists[i].off; in getauditflagschar()
208 except[j].type = i; in getauditflagschar()
[all …]
/titanic_53/usr/src/lib/libnsl/dial/
H A Dstrecpy.c47 strecpy(char *pout, char *pin, char *except) in strecpy() argument
54 if (!isprint(c) && (!except || !strchr(except, c))) { in strecpy()
83 if (c == '\\' && (!except || !strchr(except, c))) in strecpy()
/titanic_53/usr/src/lib/libm/amd64/src/
H A Dpowl.s36 / NaN ** y (except 0) is NaN
43 / +0 ** +y (except 0, NaN) is +0
44 / -0 ** +y (except 0, NaN, odd int) is +0
45 / +0 ** -y (except 0, NaN) is +inf (z flag)
46 / -0 ** -y (except 0, NaN, odd int) is +inf (z flag)
48 / +inf ** +y (except 0, NaN) is +inf
49 / +inf ** -y (except 0, NaN) is +0
50 / -inf ** +-y (except 0, NaN) is -0 ** -+y (NO z flag)
135 / NaN ** y (except 0) is NaN
164 / +0 ** +y (except 0, NaN) is +0
[all …]
/titanic_53/usr/src/lib/libm/i386/src/
H A Dpowf.s39 / NaN ** y (except 0) is NaN
46 / +0 ** +y (except 0, NaN) is +0
47 / -0 ** +y (except 0, NaN, odd int) is +0
48 / +0 ** -y (except 0, NaN) is +inf (z flag)
49 / -0 ** -y (except 0, NaN, odd int) is +inf (z flag)
51 / +inf ** +y (except 0, NaN) is +inf
52 / +inf ** -y (except 0, NaN) is +0
53 / -inf ** +-y (except 0, NaN) is -0 ** -+y (NO z flag)
141 / NaN ** y (except 0) is NaN
171 / +0 ** +y (except 0, NaN) is +0
[all …]
H A Dpowl.s36 / NaN ** y (except 0) is NaN
43 / +0 ** +y (except 0, NaN) is +0
44 / -0 ** +y (except 0, NaN, odd int) is +0
45 / +0 ** -y (except 0, NaN) is +inf (z flag)
46 / -0 ** -y (except 0, NaN, odd int) is +inf (z flag)
48 / +inf ** +y (except 0, NaN) is +inf
49 / +inf ** -y (except 0, NaN) is +0
50 / -inf ** +-y (except 0, NaN) is -0 ** -+y (NO z flag)
137 / NaN ** y (except 0) is NaN
167 / +0 ** +y (except 0, NaN) is +0
[all …]
H A Dpow.s39 / NaN ** y (except 0) is NaN
46 / +0 ** +y (except 0, NaN) is +0
47 / -0 ** +y (except 0, NaN, odd int) is +0
49 / +-0 ** -y (except 0, NaN) _SVID_libm_err
50 / +inf ** +y (except 0, NaN) is +inf
51 / +inf ** -y (except 0, NaN) is +0
52 / -inf ** +-y (except 0, NaN) is -0 ** -+y (NO z flag)
155 / NaN ** y (except 0) is NaN
185 / +0 ** +y (except 0, NaN) is +0
186 / -0 ** +y (except 0, NaN, odd int) is +0
[all …]
/titanic_53/usr/src/boot/sys/boot/i386/btx/btx/
H A Dbtx.S330 jmp except # Double fault
332 jmp except # Invalid TSS
334 jmp except # Segment not present
336 jmp except # Stack segment fault
338 jmp except # General protection
340 jmp except # Page fault
351 except: cld # String ops inc label
360 jne except.1 # No
362 jmp except.2 # Join common code
363 except.1: pushl 0x50(%esp,1) # Set SS
[all …]
/titanic_53/usr/src/common/ficl/
H A Dfileaccess.c195 int except = FICL_VM_STATUS_OUT_OF_TEXT; in ficlPrimitiveIncludeFile() local
211 except = ficlVmExecuteString(vm, s); in ficlPrimitiveIncludeFile()
215 if ((except < 0) && (except != FICL_VM_STATUS_OUT_OF_TEXT)) in ficlPrimitiveIncludeFile()
216 ficlVmThrow(vm, except); in ficlPrimitiveIncludeFile()
H A Dvm.c253 int except; in ficlVmInnerLoop() local
271 except = setjmp(exceptionHandler); in ficlVmInnerLoop()
275 if (except) { in ficlVmInnerLoop()
278 ficlVmThrow(vm, except); in ficlVmInnerLoop()
2348 ficlVmThrow(ficlVm *vm, int except) in ficlVmThrow() argument
2351 longjmp(*(vm->exceptionHandler), except); in ficlVmThrow()
2424 int except; in ficlVmExecuteString() local
2442 except = setjmp(vmState); in ficlVmExecuteString()
2444 switch (except) { in ficlVmExecuteString()
2458 except = FICL_VM_STATUS_OUT_OF_TEXT; in ficlVmExecuteString()
[all …]
/titanic_53/usr/src/cmd/ipf/examples/
H A Dexample.1116 # allow any connections to be made, except to BSD print/r-services
22 # allow any connections to be made, except to BSD print/r-services
/titanic_53/usr/src/cmd/mailx/misc/
H A DMail.rc5 # (the "License"). You may not use this file except in compliance
30 # except...
/titanic_53/usr/src/cmd/lp/filter/postscript/postscript/
H A Dps.requests6 % (the "License"). You may not use this file except in compliance
23 % and includes everything up to next keyword line, except for comments which are
/titanic_53/usr/src/test/zfs-tests/tests/functional/inheritance/
H A Dstate011.cfg6 # You may not use this file except in compliance with the License.
35 # no effect except at the bottom level where the property values are
/titanic_53/usr/src/test/test-runner/cmd/
H A Drun69 except IOError as err:
182 except:
234 except OSError as e:
244 except KeyboardInterrupt:
579 except ConfigParser.NoOptionError:
593 except ConfigParser.NoOptionError:
622 except IOError:
676 except OSError as e:
700 except OSError:
750 except KeyError:
/titanic_53/usr/src/cmd/power/
H A Dpower.dfl9 # (the "License"). You may not use this file except in compliance
37 # - nobody except super-user can change
/titanic_53/usr/src/uts/common/io/fibre-channel/fca/qlc/
H A DFIRMWARELICENSE48 copyrights, trademarks or any other intellectual property except as
56 QLogic and its licensors retain all title to and, except as
68 code, or underlying ideas or algorithms of the Software (except to
72 except as specified in the applicable user documentation, modify,
76 Software; (v) make any copies of the Software except as required to
77 use the Software as licensed hereunder, except for one (1) copy
113 information and not use or disclose such information except as
/titanic_53/usr/src/uts/common/smbsrv/ndl/
H A Ddssetup.ndl6 * You may not use this file except in compliance with the License.
34 * except DsRoleGetPrimaryDomainInfo have been deprecated (MS04-011).
/titanic_53/usr/src/common/mpi/
H A DTHIRDPARTYLICENSE5 * 1.1 (the "License"); you may not use this file except in compliance with
42 * 1.1 (the "License"); you may not use this file except in compliance with
80 * 1.1 (the "License"); you may not use this file except in compliance with
117 * 1.1 (the "License"); you may not use this file except in compliance with
154 * 1.1 (the "License"); you may not use this file except in compliance with
192 * 1.1 (the "License"); you may not use this file except in compliance with
228 * 1.1 (the "License"); you may not use this file except in compliance with
267 * 1.1 (the "License"); you may not use this file except in compliance with
/titanic_53/usr/src/pkg/license_files/
H A Dlic_OSBL_preamble2 by the terms of the OpenSolaris Binary License (below); except that, if
/titanic_53/usr/src/common/crypto/ecc/
H A DTHIRDPARTYLICENSE5 * 1.1 (the "License"); you may not use this file except in compliance with
43 * 1.1 (the "License"); you may not use this file except in compliance with
80 * 1.1 (the "License"); you may not use this file except in compliance with
117 * 1.1 (the "License"); you may not use this file except in compliance with
156 * 1.1 (the "License"); you may not use this file except in compliance with
193 * 1.1 (the "License"); you may not use this file except in compliance with
231 * 1.1 (the "License"); you may not use this file except in compliance with
268 * 1.1 (the "License"); you may not use this file except in compliance with
306 * 1.1 (the "License"); you may not use this file except in compliance with
343 * 1.1 (the "License"); you may not use this file except in compliance with
[all …]
/titanic_53/usr/src/common/
H A DGPLDISCLAIMER1 For the avoidance of doubt, except that if any license choice other than GPL or
/titanic_53/usr/src/lib/libldap5/
H A DTHIRDPARTYLICENSE3 * except in compliance with the License. You may obtain a copy of
/titanic_53/usr/src/cmd/ldap/
H A DTHIRDPARTYLICENSE3 * except in compliance with the License. You may obtain a copy of
/titanic_53/usr/src/uts/i86pc/io/fipe/
H A DTHIRDPARTYLICENSE6 * You may not use this file except in compliance with the License.

12345678910>>...118