Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:_PyTime_MIN
(Results
1 - 3
of
3
) sorted by relevance
/third_party/python/Python/
H
A
D
pytime.c
47
#if
_PyTime_MIN
+ _PyTime_MAX != -1
84
// Compute t1 + t2. Clamp to [
_PyTime_MIN
; _PyTime_MAX] on overflow.
92
else if (t2 < 0 && *t1 <
_PyTime_MIN
- t2) {
in pytime_add()
93
*t1 =
_PyTime_MIN
;
in pytime_add()
116
return ((a <
_PyTime_MIN
/ b) || (_PyTime_MAX / b < a));
in pytime_mul_check_overflow()
124
// Compute t * k. Clamp to [
_PyTime_MIN
; _PyTime_MAX] on overflow.
130
*t = (*t >= 0) ? _PyTime_MAX :
_PyTime_MIN
;
in pytime_mul()
140
// Compute t * k. Clamp to [
_PyTime_MIN
; _PyTime_MAX] on overflow.
414
static_assert(INT_MIN >=
_PyTime_MIN
/ SEC_TO_NS, "_PyTime_t underflow");
in _PyTime_FromSeconds()
418
|| (t < 0 && t >=
_PyTime_MIN
/ SEC_TO_N
in _PyTime_FromSeconds()
[all...]
/third_party/python/Include/cpython/
H
A
D
pytime.h
28
// Some functions clamp the result in the range [
_PyTime_MIN
; _PyTime_MAX], so
60
//
_PyTime_MIN
nanoseconds is around -292.3 years
61
#define
_PyTime_MIN
INT64_MIN
macro
221
// Compute t1 + t2. Clamp to [
_PyTime_MIN
; _PyTime_MAX] on overflow.
225
Clamp to [
_PyTime_MIN
; _PyTime_MAX] on overflow.
243
[
_PyTime_MIN
; _PyTime_MAX].
263
[
_PyTime_MIN
; _PyTime_MAX].
294
[
_PyTime_MIN
; _PyTime_MAX].
/third_party/python/Lib/test/
H
A
D
test_time.py
42
_PyTime_MIN
= -2 ** 63
variable
1007
for t in (
_PyTime_MIN
, _PyTime_MAX):
1026
for t in (
_PyTime_MIN
, _PyTime_MAX):
Completed in 4 milliseconds