| /external/XNNPACK/src/math/ |
| D | expm1.sollya | 3 // This source code is licensed under the BSD-style license found in the 9 minus_ln2_hi = round(-log(2), single, RN); 10 minus_ln2_lo = round(-log(2) - minus_ln2_hi, single, RN); 11 print("-log(2):hi =", minus_ln2_hi); 12 print("-log(2):lo =", minus_ln2_lo); 15 minus_ln2_o8_hi = round(-log(2)/8, single, RN); 16 minus_ln2_o8_lo = round(-log(2)/8 - minus_ln2_o8_hi, single, RN); 17 print("-log(2):hi / 8 =", minus_ln2_o8_hi); 18 print("-log(2):lo / 8 =", minus_ln2_o8_lo); 20 lb = round(-log(2)/2, single, RN); [all …]
|
| D | exp.sollya | 3 // This source code is licensed under the BSD-style license found in the 9 minus_ln2_hi = round(-log(2), single, RN); 10 minus_ln2_lo = round(-log(2) - minus_ln2_hi, single, RN); 11 print("-log(2):hi =", minus_ln2_hi); 12 print("-log(2):lo =", minus_ln2_lo); 14 lb = round(-log(2)/2, single, RN); 15 ub = round(log(2)/2, single, RN); 16 print("-log(2)/2 = ", lb); 17 print("+log(2)/2 =", ub); 19 print("Degree-5 P[exp(x)] with 1 constraint on [-log(2)/2, log(2)/2] =", horner(P)); [all …]
|
| /external/rust/crates/libz-sys/src/zlib/examples/ |
| D | gzlog.c | 30 Files (log name "foo"): 31 foo.gz -- gzip file with the complete log 32 foo.add -- last message to append or last data to compress 33 foo.dict -- dictionary of the last 32K of data for next compression 34 foo.temp -- temporary dictionary file for compression after this one 35 foo.lock -- lock file for reading and writing the other files 36 foo.repairs -- log file for log file recovery operations (not compressed) 39 - fixed-length (no file name) header with extra field (see below) 40 - compressed data ending initially with empty stored block 41 - uncompressed data filling out originally empty stored block and [all …]
|
| /external/deqp/framework/qphelper/ |
| D | qpTestLog.c | 1 /*------------------------------------------------------------------------- 3 * ---------------------------- 11 * http://www.apache.org/licenses/LICENSE-2.0 22 *//*--------------------------------------------------------------------*/ 92 return stack->numElements == 0; in ContainerStack_isEmpty() 97 if (stack->numElements == MAX_CONTAINER_STACK_DEPTH) in ContainerStack_push() 100 if (stack->numElements > 0 && !childContainersOk(stack->elements[stack->numElements - 1])) in ContainerStack_push() 103 stack->elements[stack->numElements] = type; in ContainerStack_push() 104 stack->numElements += 1; in ContainerStack_push() 111 DE_ASSERT(stack->numElements > 0); in ContainerStack_pop() [all …]
|
| /external/libnl/lib/netfilter/ |
| D | log_obj.c | 1 /* SPDX-License-Identifier: LGPL-2.1-only */ 3 * Copyright (c) 2003-2008 Thomas Graf <tgraf@suug.ch> 9 #include "nl-default.h" 12 #include <netlink/netfilter/log.h> 14 #include "nl-priv-dynamic-core/object-api.h" 15 #include "nl-priv-dynamic-core/cache-api.h" 16 #include "nl-priv-dynamic-core/nl-core.h" 43 struct nfnl_log *log = (struct nfnl_log *) a; in nfnl_log_dump() local 48 if (log->ce_mask & LOG_ATTR_GROUP) in nfnl_log_dump() 49 nl_dump(p, "group=%u ", log->log_group); in nfnl_log_dump() [all …]
|
| /external/iptables/extensions/ |
| D | libipt_LOG.t | 2 -j LOG;-j LOG;OK 3 -j LOG --log-prefix "test: ";=;OK 4 -j LOG --log-prefix "test: " --log-level 1;=;OK 5 # iptables displays the log-level output using the number; not the string 6 -j LOG --log-prefix "test: " --log-level alert;-j LOG --log-prefix "test: " --log-level 1;OK 7 -j LOG --log-prefix "test: " --log-tcp-sequence;=;OK 8 -j LOG --log-prefix "test: " --log-tcp-options;=;OK 9 -j LOG --log-prefix "test: " --log-ip-options;=;OK 10 -j LOG --log-prefix "test: " --log-uid;=;OK 11 -j LOG --log-prefix "test: " --log-level bad;;FAIL [all …]
|
| D | libip6t_LOG.t | 2 -j LOG;-j LOG;OK 3 -j LOG --log-prefix "test: ";=;OK 4 -j LOG --log-prefix "test: " --log-level 1;=;OK 5 # iptables displays the log-level output using the number; not the string 6 -j LOG --log-prefix "test: " --log-level alert;-j LOG --log-prefix "test: " --log-level 1;OK 7 -j LOG --log-prefix "test: " --log-tcp-sequence;=;OK 8 -j LOG --log-prefix "test: " --log-tcp-options;=;OK 9 -j LOG --log-prefix "test: " --log-ip-options;=;OK 10 -j LOG --log-prefix "test: " --log-uid;=;OK 11 -j LOG --log-prefix "test: " --log-level bad;;FAIL [all …]
|
| /external/angle/third_party/abseil-cpp/absl/log/ |
| D | log_sink_test.cc | 8 // https://www.apache.org/licenses/LICENSE-2.0 16 #include "absl/log/log_sink.h" 21 #include "absl/log/internal/test_actions.h" 22 #include "absl/log/internal/test_helpers.h" 23 #include "absl/log/internal/test_matchers.h" 24 #include "absl/log/log.h" 25 #include "absl/log/log_sink_registry.h" 26 #include "absl/log/scoped_mock_log.h" 43 // Tests for global log sink registration. 44 // --------------------------------------- [all …]
|
| /external/cronet/third_party/abseil-cpp/absl/log/ |
| D | log_sink_test.cc | 8 // https://www.apache.org/licenses/LICENSE-2.0 16 #include "absl/log/log_sink.h" 21 #include "absl/log/internal/test_actions.h" 22 #include "absl/log/internal/test_helpers.h" 23 #include "absl/log/internal/test_matchers.h" 24 #include "absl/log/log.h" 25 #include "absl/log/log_sink_registry.h" 26 #include "absl/log/scoped_mock_log.h" 43 // Tests for global log sink registration. 44 // --------------------------------------- [all …]
|
| /external/abseil-cpp/absl/log/ |
| D | log_sink_test.cc | 8 // https://www.apache.org/licenses/LICENSE-2.0 16 #include "absl/log/log_sink.h" 21 #include "absl/log/internal/test_actions.h" 22 #include "absl/log/internal/test_helpers.h" 23 #include "absl/log/internal/test_matchers.h" 24 #include "absl/log/log.h" 25 #include "absl/log/log_sink_registry.h" 26 #include "absl/log/scoped_mock_log.h" 43 // Tests for global log sink registration. 44 // --------------------------------------- [all …]
|
| /external/libtextclassifier/abseil-cpp/absl/log/ |
| D | log_sink_test.cc | 8 // https://www.apache.org/licenses/LICENSE-2.0 16 #include "absl/log/log_sink.h" 21 #include "absl/log/internal/test_actions.h" 22 #include "absl/log/internal/test_helpers.h" 23 #include "absl/log/internal/test_matchers.h" 24 #include "absl/log/log.h" 25 #include "absl/log/log_sink_registry.h" 26 #include "absl/log/scoped_mock_log.h" 43 // Tests for global log sink registration. 44 // --------------------------------------- [all …]
|
| /external/webrtc/third_party/abseil-cpp/absl/log/ |
| D | log_sink_test.cc | 8 // https://www.apache.org/licenses/LICENSE-2.0 16 #include "absl/log/log_sink.h" 22 #include "absl/log/internal/test_actions.h" 23 #include "absl/log/internal/test_helpers.h" 24 #include "absl/log/internal/test_matchers.h" 25 #include "absl/log/log.h" 26 #include "absl/log/log_sink_registry.h" 27 #include "absl/log/scoped_mock_log.h" 44 // Tests for global log sink registration. 45 // --------------------------------------- [all …]
|
| /external/private-join-and-compute/third_party/abseil-cpp-20230125.2/absl/log/ |
| D | log_sink_test.cc | 8 // https://www.apache.org/licenses/LICENSE-2.0 16 #include "absl/log/log_sink.h" 22 #include "absl/log/internal/test_actions.h" 23 #include "absl/log/internal/test_helpers.h" 24 #include "absl/log/internal/test_matchers.h" 25 #include "absl/log/log.h" 26 #include "absl/log/log_sink_registry.h" 27 #include "absl/log/scoped_mock_log.h" 44 // Tests for global log sink registration. 45 // --------------------------------------- [all …]
|
| /external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/log/ |
| D | log_sink_test.cc | 8 // https://www.apache.org/licenses/LICENSE-2.0 16 #include "absl/log/log_sink.h" 22 #include "absl/log/internal/test_actions.h" 23 #include "absl/log/internal/test_helpers.h" 24 #include "absl/log/internal/test_matchers.h" 25 #include "absl/log/log.h" 26 #include "absl/log/log_sink_registry.h" 27 #include "absl/log/scoped_mock_log.h" 44 // Tests for global log sink registration. 45 // --------------------------------------- [all …]
|
| /external/aws-sdk-java-v2/utils/src/main/java/software/amazon/awssdk/utils/ |
| D | Logger.java | 27 private final org.slf4j.Logger log; field in Logger 29 Logger(org.slf4j.Logger log) { in Logger() argument 30 this.log = log; in Logger() 34 return log; in logger() 39 * @param msg - supplier for the log message 42 if (log.isInfoEnabled()) { in info() 43 log.info(msg.get()); in info() 49 * @param msg - supplier for the log message 50 * @param throwable - a throwable to log 53 if (log.isInfoEnabled()) { in info() [all …]
|
| /external/e2fsprogs/tests/scripts/ |
| D | resize_test | 6 [ "$1" = "-s" ] && size=$2 && shift 2 8 if ! truncate -s $size $1 >> $LOG 2>&1 ; then 9 dd if=/dev/zero of=$1 bs=1 count=0 seek=$size >> $LOG 2>&1 16 echo $test_description starting > $LOG 17 rm -f $TMPFILE 22 if do_truncate -s $SIZE_2 $TMPFILE 2> /dev/null; then 23 echo "using $TMPFILE" >> $LOG 28 echo "using $TMPFILE" >> $LOG 29 if ! do_truncate -s $SIZE_2 $TMPFILE >> $LOG 2>&1; then 36 echo $MKE2FS $FEATURES -qF $TMPFILE $SIZE_1 >> $LOG [all …]
|
| /external/slf4j/jcl-over-slf4j/src/main/java/org/apache/commons/logging/ |
| D | Log.java | 2 * Copyright 2001-2004 The Apache Software Foundation. 8 * http://www.apache.org/licenses/LICENSE-2.0 23 * parameter representing the "name" of this Log. 25 * <p> The six logging levels used by <code>Log</code> are (in order): 34 * The mapping of these log levels to the concepts used by the underlying 46 * if (log.isDebugEnabled()) { 48 * log.debug(theResult); 57 …* <p style="color: #E40; font-weight: bold;">Please note that this interface is identical to that … 61 * @version $Id: Log.java,v 1.19 2004/06/06 21:16:04 rdonkin Exp $ 63 public interface Log { interface [all …]
|
| /external/parameter-framework/upstream/test/functional-tests-legacy/PfwTestCase/Functions/ |
| D | tFunction_Export_Import_Domains.py | 1 # -*-coding:utf-8 -* 3 # Copyright (c) 2011-2015, Intel Corporation 35 -------------------------- 36 - [exportDomainsWithSettingsXML] function 37 - [importDomainsWithSettingsXML] function 38 - [exportDomainsXML] function 39 - [importDomainsXML] function 42 ------------ 43 - Testing importDomainsWithSettingsXML nominal case 44 - Testing exportDomainsWithSettingsXML nominal case [all …]
|
| /external/apache-http/src/org/apache/commons/logging/ |
| D | Log.java | 2 * Copyright 2001-2004 The Apache Software Foundation. 8 * http://www.apache.org/licenses/LICENSE-2.0 24 * parameter representing the "name" of this Log.</p> 26 * <p> The six logging levels used by <code>Log</code> are (in order): 35 * The mapping of these log levels to the concepts used by the underlying 47 * if (log.isDebugEnabled()) { 49 * log.debug(theResult); 60 * @version $Id: Log.java 381838 2006-02-28 23:57:11Z skitching $ 63 …* Please visit <a href="http://android-developers.blogspot.com/2011/09/androids-http-clients.h… 67 public interface Log { interface [all …]
|
| /external/sg3_utils/doc/ |
| D | sg_logs.8 | 1 .TH SG_LOGS "8" "November 2022" "sg3_utils\-1.48" SG3_UTILS 3 sg_logs \- access log pages with SCSI LOG SENSE command 6 [\fI\-\-ALL\fR] [\fI\-\-all\fR] [\fI\-\-brief\fR] [\fI\-\-exclude\fR] 7 [\fI\-\-filter=FL\fR] [\fI\-\-full\fR] [\fI\-\-hex\fR] [\fI\-\-json[=JO]\fR] 8 [\fI\-\-list\fR] [\fI\-\-maxlen=LEN\fR] [\fI\-\-name\fR] [\fI\-\-no_inq\fR] 9 [\fI\-\-page=PG\fR] [\fI\-\-paramp=PP\fR] [\fI\-\-pcb\fR] [\fI\-\-ppc\fR] 10 [\fI\-\-pdt=DT\fR] [\fI\-\-raw\fR] [\fI\-\-readonly\fR] [\fI\-\-sp\fR] 11 [\fI\-\-temperature\fR] [\fI\-\-transport\fR] [\fI\-\-undefined\fR] 12 [\fI\-\-vendor=VP\fR] [\fI\-\-verbose\fR] \fIDEVICE\fR 15 \fI\-\-in=FN\fR [\fI\-\-brief\fR] [\fI\-\-exclude\fR] [\fI\-\-filter=FL\fR] [all …]
|
| /external/parameter-framework/upstream/test/functional-tests-legacy/PfwTestCase/Domains/ |
| D | tDomain_Rules.py | 1 # -*-coding:utf-8 -* 3 # Copyright (c) 2011-2015, Intel Corporation 35 -------------------------- 36 - [setRule] function 37 - [clearRule] function 38 - [getRule] function 41 ------------ 42 - Testing clearRule errors 43 - Testing setRule errors 44 - Testing getRule errors [all …]
|
| D | tDomain_Configuration.py | 1 # -*-coding:utf-8 -* 3 # Copyright (c) 2011-2015, Intel Corporation 35 -------------------------- 36 - [listConfigurations] function 37 - [createConfiguration] function 38 - [deleteConfiguration] function 39 - [renameConfiguration] function 42 ------------ 43 - Testing configuration creation error 44 - Testing configuration renaming error [all …]
|
| D | tDomain_rename.py | 1 # -*-coding:utf-8 -* 3 # Copyright (c) 2011-2015, Intel Corporation 35 -------------------------- 36 - [renameDomain] function 39 ------------ 40 - Nominal cases 41 - Renaming errors 42 - Special cases 47 log=ACTLogging.Logger() variable 49 # Test of Domains - Rename [all …]
|
| /external/clang/test/Driver/ |
| D | darwin-ld.c | 3 // RUN: %clang -target i386-apple-darwin9 -arch i386 -arch x86_64 %s -### -o foo 2> %t.log 4 // RUN: grep '".*ld.*" .*"-arch_multiple" "-final_output" "foo"' %t.log 7 // RUN: %clang -target i386-apple-darwin9 -### -g %s -o BAR 2> %t.log 8 // RUN: grep '".*dsymutil" "-o" "BAR.dSYM" "BAR"' %t.log 9 // RUN: %clang -target i386-apple-darwin9 -### -g -filelist FOO %s -o BAR 2> %t.log 10 // RUN: grep '".*dsymutil" "-o" "BAR.dSYM" "BAR"' %t.log 14 // RUN: %clang -target i386-apple-darwin9 -### -arch armv6 -miphoneos-version-min=3.0 %t.o 2> %t.log 15 // RUN: %clang -target i386-apple-darwin9 -### -arch armv6 -miphoneos-version-min=3.0 -dynamiclib %… 16 // RUN: %clang -target i386-apple-darwin9 -### -arch armv6 -miphoneos-version-min=3.0 -bundle %t.o … 17 // RUN: FileCheck -check-prefix=LINK_IPHONE_3_0 %s < %t.log [all …]
|
| /external/libwebsockets/READMEs/ |
| D | README.logging.md | 12 or custom log emission is possible if you point it to your own. 14 Currently the following log levels are defined 17 |---|---|---|---| 31 The first four log levels are built into lws even on Release builds, the others 34 You can select between Debug and Release builds using cmake `-DCMAKE_BUILD_TYPE=` 38 see emitted, only log levels that were built in can be enabled since the code for them 41 ## Finegrained control of log level build 43 You can deviate from the default log inclusion for release / debug by overriding it 46 For example you can set `-DLWS_LOGGING_BITFIELD_SET="LLL_INFO|LLL_DEBUG"`, which will 47 cause those log level traces to be built in even in Release mode. Clear works [all …]
|