/external/eigen/Eigen/src/UmfPackSupport/ |
UmfPackSupport.h | 26 inline void umfpack_free_numeric(void **Numeric, double) 27 { umfpack_di_free_numeric(Numeric); *Numeric = 0; } 29 inline void umfpack_free_numeric(void **Numeric, std::complex<double>) 30 { umfpack_zi_free_numeric(Numeric); *Numeric = 0; } 53 void *Symbolic, void **Numeric, 56 return umfpack_di_numeric(Ap,Ai,Ax,Symbolic,Numeric,Control,Info); 60 void *Symbolic, void **Numeric, 63 return umfpack_zi_numeric(Ap,Ai,&numext::real_ref(Ax[0]),0,Symbolic,Numeric,Control,Info) [all...] |
/external/icu/icu4c/source/test/testdata/break_rules/ |
word.txt | 33 Numeric = [\p{Word_Break = Numeric}]; 81 WB8: Numeric ExtFmt* Numeric; 82 WB9: AHLetter ExtFmt* Numeric; 83 WB10: Numeric ExtFmt* AHLetter; 85 WB11: Numeric ExtFmt* (MidNum | MidNumLetQ) ExtFmt* Numeric; # includes WB12 88 WB13a: (AHLetter | Numeric | Katakana | ExtendNumLet) ExtFmt* ExtendNumLet; 89 WB13b: ExtendNumLet ExtFmt* (AHLetter | Numeric | Katakana) [all...] |
word_POSIX.txt | 32 Numeric = [\p{Word_Break = Numeric}]; 80 WB8: Numeric ExtFmt* Numeric; 81 WB9: AHLetter ExtFmt* Numeric; 82 WB10: Numeric ExtFmt* AHLetter; 84 WB11: Numeric ExtFmt* (MidNum | MidNumLetQ) ExtFmt* Numeric; # includes WB12 87 WB13a: (AHLetter | Numeric | Katakana | ExtendNumLet) ExtFmt* ExtendNumLet; 88 WB13b: ExtendNumLet ExtFmt* (AHLetter | Numeric | Katakana) [all...] |
sentence.txt | 20 Numeric = [\p{Sentence_Break = Numeric}]; 41 SB6: ATerm ExtFmt* Numeric;
|
line.txt | 47 NU = [:LineBreak = Numeric:];
|
line_loose.txt | 55 NU = [:LineBreak = Numeric:];
|
line_loose_cj.txt | 70 NU = [:LineBreak = Numeric:];
|
line_normal.txt | 61 NU = [:LineBreak = Numeric:];
|
line_normal_cj.txt | 63 NU = [:LineBreak = Numeric:];
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/EfiIfrSupportLib/ |
IfrOpCodeCreation.c | 442 Create a numeric opcode independent of string creation
449 QuestionId - Question ID of the numeric
451 DataWidth - DataWidth of the numeric
453 PromptToken - Prompt string token of the numeric
455 HelpToken - Help string token of the numeric
457 Minimum - Minumun boundary of the numeric
459 Maximum - Maximum boundary of the numeric
461 Step - Step of the numeric
463 Default - Default value of the numeric
465 Flags - Flags of the numeric
[all...] |
IfrOnTheFly.c | 787 Create a numeric
791 QuestionId - Question ID of the numeric
793 DataWidth - DataWidth of the numeric
795 Prompt - Prompt of the numeric
797 Help - Help of the numeric
799 Minimum - Minumun boundary of the numeric
801 Maximum - Maximum boundary of the numeric
803 Step - Step of the numeric
807 Flags - Flags of the numeric
809 Key - Key of the numeric
[all...] |
/external/icu/icu4c/source/data/brkitr/rules/ |
sent.txt | 28 $Numeric = [\p{Sentence_Break = Numeric}]; 43 $NumericEx = $Numeric ($Extend | $Format)*;
|
sent_el.txt | 28 $Numeric = [\p{Sentence_Break = Numeric}]; 43 $NumericEx = $Numeric ($Extend | $Format)*;
|
word.txt | 45 $Numeric = [\p{Word_Break = Numeric}]; 88 $NumericEx = $Numeric ($Extend | $Format | $ZWJ)*; 205 $BackNumericEx = ($Format | $Extend | $ZWJ)* $Numeric;
|
word_POSIX.txt | 45 $Numeric = [\p{Word_Break = Numeric}]; 88 $NumericEx = $Numeric ($Extend | $Format | $ZWJ)*; 205 $BackNumericEx = ($Format | $Extend | $ZWJ)* $Numeric;
|
/external/libchrome/base/numerics/ |
safe_math_impl.h | 100 template <typename Numeric, 101 bool IsInteger = std::numeric_limits<Numeric>::is_integer, 102 bool IsFloat = std::numeric_limits<Numeric>::is_iec559> 105 template <typename Numeric> 106 struct UnsignedOrFloatForSize<Numeric, true, false> { 107 typedef typename UnsignedIntegerForSize<Numeric>::type type; 110 template <typename Numeric> 111 struct UnsignedOrFloatForSize<Numeric, false, true> { 112 typedef Numeric type; 411 "Argument must be numeric.") [all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/UefiEfiIfrSupportLib/ |
UefiIfrOpCodeCreation.c | 490 EFI_IFR_NUMERIC Numeric;
506 Numeric.Header.OpCode = EFI_IFR_NUMERIC_OP;
507 Numeric.Header.Length = (UINT8) sizeof (EFI_IFR_NUMERIC);
508 Numeric.Header.Scope = 1;
509 Numeric.Question.QuestionId = QuestionId;
510 Numeric.Question.VarStoreId = VarStoreId;
511 Numeric.Question.VarStoreInfo.VarOffset = VarOffset;
512 Numeric.Question.Header.Prompt = Prompt;
513 Numeric.Question.Header.Help = Help;
514 Numeric.Question.Flags = QuestionFlags; [all...] |
/external/pdfium/third_party/base/numerics/ |
safe_math_impl.h | 31 template <typename Numeric, 32 bool IsInteger = std::is_integral<Numeric>::value, 33 bool IsFloat = std::is_floating_point<Numeric>::value> 36 template <typename Numeric> 37 struct UnsignedOrFloatForSize<Numeric, true, false> { 38 using type = typename std::make_unsigned<Numeric>::type; 41 template <typename Numeric> 42 struct UnsignedOrFloatForSize<Numeric, false, true> { 43 using type = Numeric; 561 static_assert(std::is_arithmetic<Src>::value, "Argument must be numeric.") [all...] |
/prebuilts/go/darwin-x86/src/strconv/ |
doc.go | 8 // Numeric Conversions 10 // The most common numeric conversions are Atoi (string to int) and Itoa (int to string).
|
/prebuilts/go/linux-x86/src/strconv/ |
doc.go | 8 // Numeric Conversions 10 // The most common numeric conversions are Atoi (string to int) and Itoa (int to string).
|
/device/linaro/bootloader/edk2/MdeModulePkg/Library/VarCheckHiiLib/ |
VarCheckHiiGen.c | [all...] |
/external/clang/lib/CodeGen/ |
CGLoopInfo.cpp | 159 State = LoopHintAttr::Numeric; 246 case LoopHintAttr::Numeric:
|
/external/clang/lib/Sema/ |
SemaStmtAttr.cpp | 91 State = LoopHintAttr::Numeric; 118 State = LoopHintAttr::Numeric; 147 // state form and a numeric form. The state form selectively 150 // The numeric form form provides an integer hint (for example, unroll count) 198 // Numeric hint. For example, vectorize_width(8). 214 // Disable hints are not compatible with numeric hints of the same 215 // category. As a special case, numeric unroll hints are also not
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/m68hc11/ |
malis.s | 48 L4: equ 45 ; Numeric = 0x2d
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/VfrCompile/ |
VfrCompile.g | 770 #token Numeric("numeric") "numeric"
842 #token Number("numeric value") "(0x[0-9A-Fa-f]+) | [0-9]+"
[all...] |