HomeSort by relevance Sort by last modified time
    Searched defs:log (Results 1 - 25 of 3401) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/StdLib/LibC/Math/
w_log.c 19 * wrapper log(x)
27 log(double x) /* wrapper log */ function
36 return __kernel_standard(x,x,16); /* log(0) */
38 return __kernel_standard(x,x,17); /* log(x<0) */
  /external/autotest/client/cros/video/
method_logger.py 8 def log(method_to_log): function
9 """ A decorator method to log when 'decorated' methods have been executed.
12 To log execution of a method just decorate it with *log
  /external/autotest/server/cros/
gsutil_wrapper.py 32 log("SOURCE path: " + src)
38 log("Copying to temporary test server destination : " + tempsourcepath)
46 log("STDOUT | " + output[0])
47 log("STDERR | " + output[1])
54 log("Sent file to DUT : " + host.hostname)
57 def log(message): function
62 @param message: string, the message to log.
  /external/capstone/
functions.mk 9 define log macro
  /tools/test/connectivity/acts/framework/acts/test_utils/bt/
native_bt_test_utils.py 22 log = logging variable
bt_coc_test_utils.py 35 log = logging variable
61 client_ad.log.info(
69 client_ad.log.error("do_multi_connection_throughput: invalid "
77 client_ad.log.info("do_multi_connection_throughput: "
83 client_ad.log.error("Failed to write data: {}".format(err))
93 client_ad.log.error("Failed to write data: {}".format(err))
102 server_ad.log.error("Failed to read data: {}".format(err))
111 server_ad.log.error("Failed to read data: {}".format(err))
118 client_ad.log.error("Buffer transmits cannot take zero time")
121 log.info
    [all...]
  /external/slf4j/jcl-over-slf4j/src/test/java/org/apache/commons/logging/
InvokeJCLTest.java 34 Log log = LogFactory.getLog(InvokeJCLTest.class); local
35 assertFalse(log.isTraceEnabled());
36 assertFalse(log.isDebugEnabled());
37 assertTrue(log.isInfoEnabled());
38 assertTrue(log.isWarnEnabled());
39 assertTrue(log.isErrorEnabled());
40 assertTrue(log.isFatalEnabled());
44 Log log = LogFactory.getLog(InvokeJCLTest.class) local
    [all...]
  /bionic/libm/x86/
e_log.S 42 // Result: k*log(2) - log(B) + p(r) if |x-1| >= small value (2^-6) and
44 // -log(B) read from data table (high, low parts)
48 // log(NaN) = quiet NaN, and raise invalid exception
49 // log(+INF) = that INF
50 // log(0) = -INF with divide-by-zero exception raised
51 // log(1) = +0
52 // log(x) = NaN with invalid exception raised if x < -0, including -INF
72 # -- Begin log
73 ENTRY(log) function
    [all...]
  /bionic/libm/x86_64/
e_log.S 42 // Result: k*log(2) - log(B) + p(r) if |x-1| >= small value (2^-6) and
44 // -log(B) read from data table (high, low parts)
48 // log(NaN) = quiet NaN, and raise invalid exception
49 // log(+INF) = that INF
50 // log(0) = -INF with divide-by-zero exception raised
51 // log(1) = +0
52 // log(x) = NaN with invalid exception raised if x < -0, including -INF
57 # -- Begin log
58 ENTRY(log) function
    [all...]
  /external/autotest/client/cros/cellular/
base_station_8960_test_noautorun.py 14 log = cellular_logging.SetupCellularLogging('base_station_8960_test') variable
emulator_config.py 15 log = cellular_logging.SetupCellularLogging('emulator_config') variable
64 log.info('Using this call box: %s ' % cfg)
79 log.info(
  /external/parameter-framework/upstream/tools/xmlGenerator/
lightRoutingUpdate.sh 74 function log () function
90 log "Delete routing domains"
93 log "Will delete domain $domain"
101 log "Generate domain commands from file(s): $*"
133 log "Execute commands"
154 log "Output file: $outputFilePath"
166 log "The media server PFW domains have been change, please restart it to restore old domains"
  /external/scapy/scapy/layers/
all.py 17 log = logging.getLogger("scapy.loading") variable
26 log.warning("can't import layer %s: %s", _l, e)
  /external/tensorflow/tensorflow/contrib/tensorrt/log/
trt_logger.cc 16 #include "tensorflow/contrib/tensorrt/log/trt_logger.h"
26 void Logger::log(Severity severity, const char* msg) { function in class:tensorflow::tensorrt::Logger
34 LOG(WARNING) << msg;
38 LOG(ERROR) << msg;
42 LOG(FATAL) << msg;
48 LOG(FATAL) << name_ << "Got unknown severity level from TRT " << msg;
  /external/testng/src/test/java/test/configuration/
BaseBeforeTestOrdering.java 5 public void log(String s) { method in class:BaseBeforeTestOrdering
  /prebuilts/go/darwin-x86/src/math/
log.go 33 // 2. Approximation of log(1+f).
34 // Let s = f/(2+f) ; based on log(1+f) = log(1+s) - log(1-s)
48 // In order to guarantee error in log below 1ulp, we compute log by
49 // log(1+f) = f - s*(f - R) (if f is not too large)
50 // log(1+f) = f - (hfsq - s*(hfsq+R)). (better accuracy)
52 // 3. Finally, log(x) = k*Ln2 + log(1+f)
82 func log(x float64) float64 { func
    [all...]
  /prebuilts/go/linux-x86/src/math/
log.go 33 // 2. Approximation of log(1+f).
34 // Let s = f/(2+f) ; based on log(1+f) = log(1+s) - log(1-s)
48 // In order to guarantee error in log below 1ulp, we compute log by
49 // log(1+f) = f - s*(f - R) (if f is not too large)
50 // log(1+f) = f - (hfsq - s*(hfsq+R)). (better accuracy)
52 // 3. Finally, log(x) = k*Ln2 + log(1+f)
82 func log(x float64) float64 { func
    [all...]
  /external/mockito/src/main/java/org/mockito/session/
MockitoSessionLogger.java 25 * @param hint to log; never {@code null}
28 void log(String hint); method in interface:MockitoSessionLogger
  /external/parameter-framework/upstream/parameter/log/include/log/
ILogger.h 36 namespace log namespace in namespace:core
50 } /** log namespace */
  /external/parameter-framework/upstream/test/functional-tests-legacy/PfwTestCase/Domains/
tDomain_Configuration_Selection.py 46 log=ACTLogging.Logger() variable
98 log.D(self.test_Combinatorial_Criteria.__doc__)
101 log.I("Import Domains with settings from %s"%(self.reference_xml))
103 assert err == None, log.E("Command [importDomainsWithSettingsXML %s] : %s"%(self.reference_xml,err))
104 assert out == "Done", log.F("When using function importDomainsWithSettingsXML %s]"%(self.reference_xml))
107 log.I("Current domains listing")
108 log.I("Command [listDomains]")
110 assert err == None, log.E("Command [listDomains] : %s"%(err))
111 log.I("Command [listDomains] : correctly executed")
115 assert err == None, log.E("Command [setTuningMode]"
    [all...]
tDomain_Split.py 49 log=ACTLogging.Logger() variable
101 log.D(self.test_Combinatorial_Criteria.__doc__)
104 log.I("Import Domains with settings from %s"%(self.reference_xml))
106 assert err == None, log.E("Command [importDomainsWithSettingsXML %s] : %s"%(self.reference_xml,err))
107 assert out == "Done", log.F("When using function importDomainsWithSettingsXML %s]"%(self.reference_xml))
111 log.I("Checking initial conditions :")
112 log.I("Checking that %s configurable element is associated to %s :" % (self.path_main,self.domain_1))
114 assert err == None, log.E("Command [listAssociatedDomains] : error when listing domain name")
123 assert element_found==1, log.F("configurable element %s not correctly associated to domain %s" % (self.path_main, self.domain_1))
124 log.I("configurable element %s correctly associated to domain %s" % (self.path_main, self.domain_1)
    [all...]
  /external/parameter-framework/upstream/test/functional-tests-legacy/PfwTestCase/Functions/
tFunction_getParameter.py 45 log=ACTLogging.Logger() variable
70 log.D(self.test_Function_Commands_Errors.__doc__)
72 log.I("Get undefined parameter value")
tFunction_setParameter.py 45 log=ACTLogging.Logger() variable
73 log.D(self.test_Function_Commands_Errors.__doc__)
75 log.I("Set undefined parameter value")
80 log.I("Set parameter with a forbiden character value")
84 log.I("Errors correctly detected")
86 log.I("Set parameter with a Float into an Integer parameter")
90 log.I("Errors correctly detected")
  /external/vogar/src/vogar/commands/
Mkdir.java 20 import vogar.Log;
26 private final Log log; field in class:Mkdir
28 public Mkdir(Log log) {
29 this.log = log;
33 new Command(log, "mkdir", "-p", directory.getPath()).execute();
Rm.java 20 import vogar.Log;
26 private final Log log; field in class:Rm
28 public Rm(Log log) {
29 this.log = log;
33 new Command(log, "rm", "-rf", file.getPath()).execute();

Completed in 768 milliseconds

1 2 3 4 5 6 7 8 91011>>