/external/python/cpython2/Lib/test/decimaltestdata/ |
D | dqOr.decTest | 2 -- dqOr.decTest -- digitwise logical OR for decQuads -- 13 -- or specification. The tests are not exhaustive. -- 30 dqor001 or 0 0 -> 0 31 dqor002 or 0 1 -> 1 32 dqor003 or 1 0 -> 1 33 dqor004 or 1 1 -> 1 34 dqor005 or 1100 1010 -> 1110 36 dqor006 or 0000000000000000000000000000000000 0000000000000000000000000000000000 -> 0 37 dqor007 or 0000000000000000000000000000000000 1000000000000000000000000000000000 -> 1000000000000… 38 dqor008 or 1000000000000000000000000000000000 0000000000000000000000000000000000 -> 1000000000000… [all …]
|
D | or.decTest | 2 -- or.decTest -- digitwise logical OR -- 13 -- or specification. The tests are not exhaustive. -- 29 orx001 or 0 0 -> 0 30 orx002 or 0 1 -> 1 31 orx003 or 1 0 -> 1 32 orx004 or 1 1 -> 1 33 orx005 or 1100 1010 -> 1110 35 orx006 or 000000000 000000000 -> 0 36 orx007 or 000000000 100000000 -> 100000000 37 orx008 or 100000000 000000000 -> 100000000 [all …]
|
D | ddOr.decTest | 2 -- ddOr.decTest -- digitwise logical OR for decDoubles -- 13 -- or specification. The tests are not exhaustive. -- 30 ddor001 or 0 0 -> 0 31 ddor002 or 0 1 -> 1 32 ddor003 or 1 0 -> 1 33 ddor004 or 1 1 -> 1 34 ddor005 or 1100 1010 -> 1110 36 ddor006 or 0000000000000000 0000000000000000 -> 0 37 ddor007 or 0000000000000000 1000000000000000 -> 1000000000000000 38 ddor008 or 1000000000000000 0000000000000000 -> 1000000000000000 [all …]
|
/external/python/cpython3/Lib/test/decimaltestdata/ |
D | dqOr.decTest | 2 -- dqOr.decTest -- digitwise logical OR for decQuads -- 13 -- or specification. The tests are not exhaustive. -- 30 dqor001 or 0 0 -> 0 31 dqor002 or 0 1 -> 1 32 dqor003 or 1 0 -> 1 33 dqor004 or 1 1 -> 1 34 dqor005 or 1100 1010 -> 1110 36 dqor006 or 0000000000000000000000000000000000 0000000000000000000000000000000000 -> 0 37 dqor007 or 0000000000000000000000000000000000 1000000000000000000000000000000000 -> 1000000000000… 38 dqor008 or 1000000000000000000000000000000000 0000000000000000000000000000000000 -> 1000000000000… [all …]
|
D | or.decTest | 2 -- or.decTest -- digitwise logical OR -- 13 -- or specification. The tests are not exhaustive. -- 29 orx001 or 0 0 -> 0 30 orx002 or 0 1 -> 1 31 orx003 or 1 0 -> 1 32 orx004 or 1 1 -> 1 33 orx005 or 1100 1010 -> 1110 35 orx006 or 000000000 000000000 -> 0 36 orx007 or 000000000 100000000 -> 100000000 37 orx008 or 100000000 000000000 -> 100000000 [all …]
|
D | ddOr.decTest | 2 -- ddOr.decTest -- digitwise logical OR for decDoubles -- 13 -- or specification. The tests are not exhaustive. -- 30 ddor001 or 0 0 -> 0 31 ddor002 or 0 1 -> 1 32 ddor003 or 1 0 -> 1 33 ddor004 or 1 1 -> 1 34 ddor005 or 1100 1010 -> 1110 36 ddor006 or 0000000000000000 0000000000000000 -> 0 37 ddor007 or 0000000000000000 1000000000000000 -> 1000000000000000 38 ddor008 or 1000000000000000 0000000000000000 -> 1000000000000000 [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/InstSimplify/ |
D | or-icmps-same-ops.ll | 4 ; There are 10 * 10 combinations of icmp predicates that can be OR'd together. 5 ; The majority of these can be simplified to always true or just one of the icmps. 14 %or = or i1 %cmp1, %cmp2 15 ret i1 %or 24 %or = or i1 %cmp1, %cmp2 25 ret i1 %or 35 %or = or i1 %cmp1, %cmp2 36 ret i1 %or 43 ; CHECK-NEXT: [[OR:%.*]] = or i1 [[CMP1]], [[CMP2]] 44 ; CHECK-NEXT: ret i1 [[OR]] [all …]
|
/external/ipsec-tools/ |
D | NOTICE | 4 Redistribution and use in source and binary forms, with or without 11 documentation and/or other materials provided with the distribution. 13 may be used to endorse or promote products derived from this software 17 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 19 ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE 20 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 22 OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 24 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 33 Redistribution and use in source and binary forms, with or without 40 documentation and/or other materials provided with the distribution. [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/InstCombine/ |
D | masked-merge-and-of-ors.ll | 20 ; CHECK-NEXT: [[OR:%.*]] = or i32 [[NEG]], [[X:%.*]] 21 ; CHECK-NEXT: [[OR1:%.*]] = or i32 [[Y:%.*]], [[M]] 22 ; CHECK-NEXT: [[RET:%.*]] = and i32 [[OR]], [[OR1]] 26 %or = or i32 %neg, %x 27 %or1 = or i32 %y, %m 28 %ret = and i32 %or, %or1 35 ; CHECK-NEXT: [[OR:%.*]] = or <2 x i32> [[NEG]], [[X:%.*]] 36 ; CHECK-NEXT: [[OR1:%.*]] = or <2 x i32> [[Y:%.*]], [[M]] 37 ; CHECK-NEXT: [[RET:%.*]] = and <2 x i32> [[OR]], [[OR1]] 41 %or = or <2 x i32> %neg, %x [all …]
|
/external/ipsec-tools/src/racoon/ |
D | NOTICE | 4 Redistribution and use in source and binary forms, with or without 11 documentation and/or other materials provided with the distribution. 13 may be used to endorse or promote products derived from this software 17 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 19 ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE 20 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 22 OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 24 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 33 Redistribution and use in source and binary forms, with or without 40 documentation and/or other materials provided with the distribution. [all …]
|
/external/cldr/ |
D | NOTICE | 14 or under the directories 20 BY DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S 21 DATA FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"), 24 IF YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE 25 THE DATA FILES OR SOFTWARE. 34 (the "Data Files") or Unicode software and any associated documentation 35 (the "Software") to deal in the Data Files or Software 37 copy, modify, merge, publish, distribute, and/or sell copies of 38 the Data Files or Software, and to permit persons to whom the Data Files 39 or Software are furnished to do so, provided that either [all …]
|
D | LICENSE | 14 or under the directories 20 BY DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S 21 DATA FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"), 24 IF YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE 25 THE DATA FILES OR SOFTWARE. 34 (the "Data Files") or Unicode software and any associated documentation 35 (the "Software") to deal in the Data Files or Software 37 copy, modify, merge, publish, distribute, and/or sell copies of 38 the Data Files or Software, and to permit persons to whom the Data Files 39 or Software are furnished to do so, provided that either [all …]
|
D | ICU-LICENSE | 8 (the "Data Files") or Unicode software and any associated documentation 9 (the "Software") to deal in the Data Files or Software 11 copy, modify, merge, publish, distribute, and/or sell copies of 12 the Data Files or Software, and to permit persons to whom the Data Files 13 or Software are furnished to do so, provided that either 15 of the Data Files or Software, or 20 ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE 23 IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS 24 NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL 25 DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, [all …]
|
/external/google-styleguide/ |
D | NOTICE | 15 COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY 16 COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS 17 AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. 27 a. "Adaptation" means a work based upon the Work, or upon the Work and 29 derivative work, arrangement of music or other alterations of a 30 literary or artistic work, or phonogram or performance and includes 31 cinematographic adaptations or any other form in which the Work may be 32 recast, transformed, or adapted including in any form recognizably 36 work, performance or phonogram, the synchronization of the Work in 39 b. "Collection" means a collection of literary or artistic works, such as [all …]
|
D | LICENSE | 15 COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY 16 COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS 17 AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. 27 a. "Adaptation" means a work based upon the Work, or upon the Work and 29 derivative work, arrangement of music or other alterations of a 30 literary or artistic work, or phonogram or performance and includes 31 cinematographic adaptations or any other form in which the Work may be 32 recast, transformed, or adapted including in any form recognizably 36 work, performance or phonogram, the synchronization of the Work in 39 b. "Collection" means a collection of literary or artistic works, such as [all …]
|
/external/llvm/test/CodeGen/SystemZ/ |
D | or-04.ll | 10 %or = or i64 %a, 1 11 ret i64 %or 19 %or = or i64 %a, 65535 20 ret i64 %or 28 %or = or i64 %a, 65536 29 ret i64 %or 37 %or = or i64 %a, 4294901759 38 ret i64 %or 46 %or = or i64 %a, 4294901760 47 ret i64 %or [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/SystemZ/ |
D | or-04.ll | 10 %or = or i64 %a, 1 11 ret i64 %or 19 %or = or i64 %a, 65535 20 ret i64 %or 28 %or = or i64 %a, 65536 29 ret i64 %or 37 %or = or i64 %a, 4294901759 38 ret i64 %or 46 %or = or i64 %a, 4294901760 47 ret i64 %or [all …]
|
/external/apache-commons-math/ |
D | LICENSE | 13 "Licensor" shall mean the copyright owner or entity authorized by 17 other entities that control, are controlled by, or are under common 19 "control" means (i) the power, direct or indirect, to cause the 20 direction or management of such entity, whether by contract or 21 otherwise, or (ii) ownership of fifty percent (50%) or more of the 22 outstanding shares, or (iii) beneficial ownership of such entity. 24 "You" (or "Your") shall mean an individual or Legal Entity 32 transformation or translation of a Source form, including but 36 "Work" shall mean the work of authorship, whether in Source or 38 copyright notice that is included in or attached to the work [all …]
|
/external/icu/icu4c/ |
D | LICENSE | 8 (the "Data Files") or Unicode software and any associated documentation 9 (the "Software") to deal in the Data Files or Software 11 copy, modify, merge, publish, distribute, and/or sell copies of 12 the Data Files or Software, and to permit persons to whom the Data Files 13 or Software are furnished to do so, provided that either 15 of the Data Files or Software, or 20 ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE 23 IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS 24 NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL 25 DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, [all …]
|
/external/icu/ |
D | NOTICE | 8 (the "Data Files") or Unicode software and any associated documentation 9 (the "Software") to deal in the Data Files or Software 11 copy, modify, merge, publish, distribute, and/or sell copies of 12 the Data Files or Software, and to permit persons to whom the Data Files 13 or Software are furnished to do so, provided that either 15 of the Data Files or Software, or 20 ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE 23 IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS 24 NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL 25 DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, [all …]
|
/external/icu/icu4j/main/shared/licenses/ |
D | LICENSE | 8 (the "Data Files") or Unicode software and any associated documentation 9 (the "Software") to deal in the Data Files or Software 11 copy, modify, merge, publish, distribute, and/or sell copies of 12 the Data Files or Software, and to permit persons to whom the Data Files 13 or Software are furnished to do so, provided that either 15 of the Data Files or Software, or 20 ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE 23 IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS 24 NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL 25 DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, [all …]
|
/external/crcalc/ |
D | LICENSE | 11 Unless required by applicable law or agreed to in writing, software 13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 18 is also covered by one or both of the following: 29 KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, 31 FOR A PARTICULAR PURPOSE OR NON-INFRINGING. SGI ASSUMES NO RISK AS TO THE 33 DEFECTIVE IN ANY RESPECT, SGI ASSUMES NO COST OR LIABILITY FOR ANY 34 SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES 39 WITHOUT LIMITATION, NEGLIGENCE OR STRICT LIABILITY), CONTRACT, OR 41 INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER WITH RESPECT TO THE 43 STOPPAGE, LOSS OF DATA, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL [all …]
|
D | COPYRIGHT.txt | 11 Unless required by applicable law or agreed to in writing, software 13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 18 is also covered by one or both of the following: 29 KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, 31 FOR A PARTICULAR PURPOSE OR NON-INFRINGING. SGI ASSUMES NO RISK AS TO THE 33 DEFECTIVE IN ANY RESPECT, SGI ASSUMES NO COST OR LIABILITY FOR ANY 34 SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES 39 WITHOUT LIMITATION, NEGLIGENCE OR STRICT LIABILITY), CONTRACT, OR 41 INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER WITH RESPECT TO THE 43 STOPPAGE, LOSS OF DATA, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL [all …]
|
D | NOTICE | 11 Unless required by applicable law or agreed to in writing, software 13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 18 is also covered by one or both of the following: 29 KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, 31 FOR A PARTICULAR PURPOSE OR NON-INFRINGING. SGI ASSUMES NO RISK AS TO THE 33 DEFECTIVE IN ANY RESPECT, SGI ASSUMES NO COST OR LIABILITY FOR ANY 34 SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES 39 WITHOUT LIMITATION, NEGLIGENCE OR STRICT LIABILITY), CONTRACT, OR 41 INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER WITH RESPECT TO THE 43 STOPPAGE, LOSS OF DATA, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL [all …]
|
/external/flatbuffers/dart/ |
D | LICENSE | 5 Redistribution and use in source and binary forms, with or without 12 disclaimer in the documentation and/or other materials provided 15 contributors may be used to endorse or promote products derived 18 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 21 OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 22 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 23 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 24 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE [all …]
|