OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Digit
(Results
1 - 11
of
11
) sorted by null
/external/protobuf/src/google/protobuf/io/
tokenizer.cc
124
CHARACTER_CLASS(
Digit
, '0' <= c && c <= '9');
145
// Given a char, interpret it as a numeric
digit
and return its value.
147
inline int DigitValue(char
digit
) {
148
if ('0' <=
digit
&&
digit
<= '9') return
digit
- '0';
149
if ('a' <=
digit
&&
digit
<= 'z') return
digit
- 'a' + 10;
150
if ('A' <=
digit
&& digit <= 'Z') return digit - 'A' + 10
586
int
digit
= DigitValue(*ptr);
local
[
all
...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/io/
tokenizer.cc
129
CHARACTER_CLASS(
Digit
, '0' <= c && c <= '9');
150
// Given a char, interpret it as a numeric
digit
and return its value.
152
inline int DigitValue(char
digit
) {
153
if ('0' <=
digit
&&
digit
<= '9') return
digit
- '0';
154
if ('a' <=
digit
&&
digit
<= 'z') return
digit
- 'a' + 10;
155
if ('A' <=
digit
&& digit <= 'Z') return digit - 'A' + 10
857
int
digit
= DigitValue(*ptr);
local
[
all
...]
/external/chromium_org/v8/test/webkit/
regexp-negative-special-characters.js
58
test("\\d", "????????", 8); //
Digit
and non-
digit
.
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
basic.rb
379
lexer grammar
Digit
;
386
DIGIT
: '0' .. '9';
390
lexer =
Digit
::Lexer.new( '085' )
393
token.name.should == '
DIGIT
'
399
token.name.should == '
DIGIT
'
405
token.name.should == '
DIGIT
'
415
lexer =
Digit
::Lexer.new( '2a' )
/external/chromium_org/chrome/browser/resources/chromeos/
drive_internals.js
7
* three
digit
block.
14
/\d+?(?=(\d{3})+$)/g, //
Digit
sequence (\d+) followed (?=) by 3n digits.
/external/chromium_org/v8/src/extensions/i18n/
number-format.js
46
* Returns the valid
digit
count for a property, or throws RangeError on
100
//
Digit
ranges.
/external/llvm/lib/Support/
APInt.cpp
48
/// A utility function that converts a character to a
digit
.
178
/// add_1 - This function adds a single "
digit
" integer, y, to the multiple
179
/// "
digit
" integer array, x[]. x[] is modified to reflect the addition and
186
y = 1; // Carry one to next
digit
.
204
/// sub_1 - This function subtracts a single "
digit
" (64-bit word), y, from
205
/// the multi-
digit
integer array, x[], propagating the borrowed 1 value until
215
y = 1; // We have to "borrow 1" from next "
digit
"
290
/// @brief Multiply a multi-
digit
APInt by a single
digit
(64-bit) integer.
296
// For each
digit
of x
[
all
...]
/external/chromium_org/v8/test/mjsunit/
regexp.js
110
re = /^[\c1]$/; //
Digit
control characters are masked in character classes.
/external/dropbear/libtommath/
bn.tex
347
ISO C ``unsigned long'' data type and each
digit
is $28-$bits long. The mp\_digit type can be configured to suit other
532
/* we need a 60-
digit
number */
642
small constant assignment functions. The first function is used to set a single
digit
constant while the second sets
643
an ISO C style ``unsigned long'' constant. The reason for both functions is efficiency. Setting a single
digit
is quick but the
644
domain of a
digit
can change (it's always at least $0 \ldots 127$).
646
\subsection{Single
Digit
}
648
Setting a single
digit
can be accomplished with the following function.
683
To set a constant that is the size of an ISO C ``unsigned long'' and larger than a single
digit
the following function
692
accept a 32-bit input regardless of the size of a single
digit
. However, since the value may span several digits
754
/* initialize and set a single
digit
*/
[
all
...]
/external/v8/test/mjsunit/
regexp.js
110
re = /^[\c1]$/; //
Digit
control characters are masked in character classes.
/external/chromium_org/third_party/usb_ids/
usb.ids
[
all
...]
Completed in 677 milliseconds