Home
last modified time | relevance | path

Searched refs:Input (Results 1 – 25 of 438) sorted by relevance

12345678910>>...18

/external/boringssl/src/crypto/evp/
Devp_tests.txt8 Input = 308204bc020100300d06092a864886f70d0101010500048204a6308204a20201000282010100cd0081ea7b2ae1e…
13 Input = 30820122300d06092a864886f70d01010105000382010f003082010a0282010100cd0081ea7b2ae1ea06d59f7c7…
17 Input = 30820120300b06092a864886f70d0101010382010f003082010a0282010100cd0081ea7b2ae1ea06d59f7c73d9f…
22 Input = 3083000122300d06092a864886f70d01010105000382010f003082010a0282010100cd0081ea7b2ae1ea06d59f7…
28 Input = 30820154020100300d06092a864886f70d01010105000482013e3082013a020100024100dd20403d976a38c9d79…
33 Input = 30820157020100300d06092a864886f70d0101010500048201413082013d0201000241054fa166e205e658bbe8a…
38 Input = 308187020100301306072a8648ce3d020106082a8648ce3d030107046d306b02010104208a872fb62893c4d1ffc…
43 Input = 3041020100301306072a8648ce3d020106082a8648ce3d0301070427302502010104208a872fb62893c4d1ffc5b…
48 Input = 308193020100301306072a8648ce3d020106082a8648ce3d0301070479307702010104208a872fb62893c4d1ffc…
54 Input = 308190020100301306072a8648ce3d020106082a8648ce3d0301070476307402010104208a872fb62893c4d1ffc…
[all …]
/external/boringssl/src/crypto/poly1305/
Dpoly1305_tests.txt4 Input = "Cryptographic Forum Research Group"
11 Input = 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000…
15 Input = 416e79207375626d697373696f6e20746f20746865204945544620696e74656e6465642062792074686520436f6…
19 Input = 416e79207375626d697373696f6e20746f20746865204945544620696e74656e6465642062792074686520436f6…
23 Input = 2754776173206272696c6c69672c20616e642074686520736c6974687920746f7665730a4469642067797265206…
27 Input = ffffffffffffffffffffffffffffffff
31 Input = 02000000000000000000000000000000
35 Input = fffffffffffffffffffffffffffffffff0ffffffffffffffffffffffffffffff110000000000000000000000000…
39 Input = fffffffffffffffffffffffffffffffffbfefefefefefefefefefefefefefefe010101010101010101010101010…
43 Input = fdffffffffffffffffffffffffffffff
[all …]
/external/clang/lib/Driver/
DAction.cpp46 : Action(InputClass, _Type), Input(_Input) { in InputAction()
51 BindArchAction::BindArchAction(Action *Input, const char *_ArchName) in BindArchAction() argument
52 : Action(BindArchClass, Input), ArchName(_ArchName) {} in BindArchAction()
56 CudaDeviceAction::CudaDeviceAction(Action *Input, clang::CudaArch Arch, in CudaDeviceAction() argument
58 : Action(CudaDeviceClass, Input), GpuArch(Arch), AtTopLevel(AtTopLevel) {} in CudaDeviceAction()
62 CudaHostAction::CudaHostAction(Action *Input, const ActionList &DeviceActions) in CudaHostAction() argument
63 : Action(CudaHostClass, Input), DeviceActions(DeviceActions) {} in CudaHostAction()
67 JobAction::JobAction(ActionClass Kind, Action *Input, types::ID Type) in JobAction() argument
68 : Action(Kind, Input, Type) {} in JobAction()
76 PreprocessJobAction::PreprocessJobAction(Action *Input, types::ID OutputType) in PreprocessJobAction() argument
[all …]
/external/boringssl/src/crypto/hmac_extra/
Dhmac_tests.txt5 Input = "More text test vectors to stuff up EBCDIC machines :-)"
11 Input = "Hi There"
16 Input = "what do ya want for nothing?"
21 Input = DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD…
27 Input = "Sample message for keylen=blocklen"
32 Input = "Sample message for keylen<blocklen"
37 Input = "Sample message for keylen=blocklen"
42 Input = "Sample message for keylen=blocklen"
47 Input = "Sample message for keylen<blocklen"
52 Input = "Sample message for keylen=blocklen"
[all …]
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/ime/indic/
DDisplayNames.properties11 # Default Input method display names for Indic input methods
14 DisplayName.Bengali = Bengali Input Method
15 DisplayName.Devanagari = Devanagari Input Method
16 DisplayName.Gujarati = Gujarati Input Method
17 DisplayName.Gurmukhi = Gurmukhi Input Method
18 DisplayName.Kannada = Kannada Input Method
19 DisplayName.Malayalam = Malayalam Input Method
20 DisplayName.Oriya = Oriya Input Method
21 DisplayName.Tamil = Tamil Input Method
22 DisplayName.Telugu = Telugu Input Method
/external/pdfium/third_party/lcms2-2.6/src/
Dcmsintrp.c258 void Eval1Input(register const cmsUInt16Number Input[], in Eval1Input() argument
268 v = Input[0] * p16 -> Domain[0]; in Eval1Input()
274 k1 = k0 + (Input[0] != 0xFFFFU ? 1 : 0); in Eval1Input()
329 void BilinearInterpFloat(const cmsFloat32Number Input[], in BilinearInterpFloat() argument
348 px = fclamp(Input[0]) * p->Domain[0]; in BilinearInterpFloat()
349 py = fclamp(Input[1]) * p->Domain[1]; in BilinearInterpFloat()
355 X1 = X0 + (Input[0] >= 1.0 ? 0 : p->opta[1]); in BilinearInterpFloat()
358 Y1 = Y0 + (Input[1] >= 1.0 ? 0 : p->opta[0]); in BilinearInterpFloat()
382 void BilinearInterp16(register const cmsUInt16Number Input[], in BilinearInterp16() argument
402 fx = _cmsToFixedDomain((int) Input[0] * p -> Domain[0]); in BilinearInterp16()
[all …]
/external/clang/include/clang/Driver/
DAction.h99 Action(ActionClass Kind, Action *Input, types::ID Type) in Action() argument
100 : Action(Kind, ActionList({Input}), Type) {} in Action()
101 Action(ActionClass Kind, Action *Input) in Action() argument
102 : Action(Kind, ActionList({Input}), Input->getType()) {} in Action()
131 const llvm::opt::Arg &Input; variable
134 InputAction(const llvm::opt::Arg &Input, types::ID Type);
136 const llvm::opt::Arg &getInputArg() const { return Input; } in getInputArg()
150 BindArchAction(Action *Input, const char *ArchName);
169 CudaDeviceAction(Action *Input, CudaArch Arch, bool AtTopLevel);
187 CudaHostAction(Action *Input, const ActionList &DeviceActions);
[all …]
/external/llvm/lib/Support/
DYAMLTraits.cpp47 Input::Input(StringRef InputContent, in Input() function in Input
59 Input::~Input() { in ~Input()
62 std::error_code Input::error() { return EC; } in error()
65 void Input::HNode::anchor() {} in anchor()
66 void Input::EmptyHNode::anchor() {} in anchor()
67 void Input::ScalarHNode::anchor() {} in anchor()
68 void Input::MapHNode::anchor() {} in anchor()
69 void Input::SequenceHNode::anchor() {} in anchor()
71 bool Input::outputting() { in outputting()
75 bool Input::setCurrentDocument() { in setCurrentDocument()
[all …]
DYAMLParser.cpp48 static EncodingInfo getUnicodeEncoding(StringRef Input) { in getUnicodeEncoding() argument
49 if (Input.size() == 0) in getUnicodeEncoding()
52 switch (uint8_t(Input[0])) { in getUnicodeEncoding()
54 if (Input.size() >= 4) { in getUnicodeEncoding()
55 if ( Input[1] == 0 in getUnicodeEncoding()
56 && uint8_t(Input[2]) == 0xFE in getUnicodeEncoding()
57 && uint8_t(Input[3]) == 0xFF) in getUnicodeEncoding()
59 if (Input[1] == 0 && Input[2] == 0 && Input[3] != 0) in getUnicodeEncoding()
63 if (Input.size() >= 2 && Input[1] != 0) in getUnicodeEncoding()
67 if ( Input.size() >= 4 in getUnicodeEncoding()
[all …]
/external/eigen/test/
Dcuda_common.h14 template<typename Kernel, typename Input, typename Output>
15 void run_on_cpu(const Kernel& ker, int n, const Input& in, Output& out) in run_on_cpu()
22 template<typename Kernel, typename Input, typename Output>
24 void run_on_cuda_meta_kernel(const Kernel ker, int n, const Input* in, Output* out) in run_on_cuda_meta_kernel()
33 template<typename Kernel, typename Input, typename Output>
34 void run_on_cuda(const Kernel& ker, int n, const Input& in, Output& out) in run_on_cuda()
36 typename Input::Scalar* d_in; in run_on_cuda()
38 std::ptrdiff_t in_bytes = in.size() * sizeof(typename Input::Scalar); in run_on_cuda()
57 …cudaMemcpy(const_cast<typename Input::Scalar*>(in.data()), d_in, in_bytes, cudaMemcpyDeviceToHo… in run_on_cuda()
65 template<typename Kernel, typename Input, typename Output>
[all …]
/external/swiftshader/third_party/LLVM/test/Scripts/
Dcoff-dump.py235 Input = None variable
268 return struct.unpack(format, Input.read(struct.calcsize(format)))
273 char = Input.read(1)
282 Stack [0:0] = [Input.tell()]
284 Input.seek(seek_to)
288 Input.seek(Stack[0])
295 data = Input.read(16)
298 data = Input.read(size)
514 end_of_array = Input.tell() + value
516 prev_loc = Input.tell()
[all …]
/external/llvm/unittests/Support/
DCompressionTest.cpp26 void TestZlibCompression(StringRef Input, zlib::CompressionLevel Level) { in TestZlibCompression() argument
29 EXPECT_EQ(zlib::StatusOK, zlib::compress(Input, Compressed, Level)); in TestZlibCompression()
32 zlib::uncompress(Compressed, Uncompressed, Input.size())); in TestZlibCompression()
33 EXPECT_EQ(Input, Uncompressed); in TestZlibCompression()
34 if (Input.size() > 0) { in TestZlibCompression()
37 zlib::uncompress(Compressed, Uncompressed, Input.size() - 1)); in TestZlibCompression()
DYAMLIOTest.cpp18 using llvm::yaml::Input;
78 Input yin("---\nfoo: 3\nbar: 5\n...\n"); in TEST()
87 Input yin("{foo: 3, bar: 5}"); in TEST()
98 Input yin("{foo: 3; bar: 5}", nullptr, suppressErrorMessages); in TEST()
108 Input yin("---\n - foo: 3\n bar: 5\n - foo: 7\n bar: 9\n...\n"); in TEST()
127 Input yin2("---\nfbs:\n - foo: 3\n bar: 5\n - foo: 7\n bar: 9\n...\n"); in TEST()
140 Input yin("---\nfbs:\n...\n"); in TEST()
149 Input yin("---\nfbs: !!null null\n...\n"); in TEST()
158 Input yin("---\nfbs: ~\n...\n"); in TEST()
167 Input yin("---\nfbs: null\n...\n"); in TEST()
[all …]
DMD5Test.cpp23 void TestMD5Sum(ArrayRef<uint8_t> Input, StringRef Final) { in TestMD5Sum() argument
25 Hash.update(Input); in TestMD5Sum()
33 void TestMD5Sum(StringRef Input, StringRef Final) { in TestMD5Sum() argument
35 Hash.update(Input); in TestMD5Sum()
/external/clang/unittests/Tooling/
DRefactoringTest.cpp558 std::vector<Replacement> Input; in TEST() local
559 Input.push_back(Replacement("fileA", 50, 0, " foo ")); in TEST()
560 Input.push_back(Replacement("fileA", 10, 3, " bar ")); in TEST()
561 Input.push_back(Replacement("fileA", 10, 2, " bar ")); // Length differs in TEST()
562 Input.push_back(Replacement("fileA", 9, 3, " bar ")); // Offset differs in TEST()
563 Input.push_back(Replacement("fileA", 50, 0, " foo ")); // Duplicate in TEST()
564 Input.push_back(Replacement("fileA", 51, 3, " bar ")); in TEST()
565 Input.push_back(Replacement("fileB", 51, 3, " bar ")); // Filename differs! in TEST()
566 Input.push_back(Replacement("fileB", 60, 1, " bar ")); in TEST()
567 Input.push_back(Replacement("fileA", 60, 2, " bar ")); in TEST()
[all …]
/external/swiftshader/src/OpenGL/compiler/preprocessor/
DInput.cpp24 Input::Input() : mCount(0), mString(0) in Input() function in pp::Input
28 Input::Input(int count, const char* const string[], const int length[]) : in Input() function in pp::Input
41 int Input::read(char* buf, int maxSize) in read()
/external/libcxx/test/libcxx/numerics/
Dclamp_to_integral.pass.cpp25 double Input; in test() member
40 auto res = std::__clamp_to_integral<IntT>(TC.Input); in test()
43 auto other = static_cast<IntT>(std::trunc(TC.Input)); in test()
57 float Input; in test_float() member
70 auto res = std::__clamp_to_integral<IntT>(TC.Input); in test_float()
73 auto other = static_cast<IntT>(std::trunc(TC.Input)); in test_float()
/external/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/
DU.pass.cpp49 template <class To, class Input, class Expect>
50 constexpr bool explicit_conversion(Input&& in, const Expect& v) in explicit_conversion()
53 static_assert(std::is_constructible<O, Input>::value, ""); in explicit_conversion()
54 static_assert(!std::is_convertible<Input, O>::value, ""); in explicit_conversion()
56 static_assert(!std::is_constructible<O, Input, int>::value, ""); in explicit_conversion()
57 optional<To> opt(std::forward<Input>(in)); in explicit_conversion()
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
DAntlr.Runtime.pas721 function Match(const Input: IIntStream; const TokenType: Integer;
724 function MismatchIsUnwantedToken(const Input: IIntStream;
727 function MismatchIsMissingToken(const Input: IIntStream;
756 procedure MatchAny(const Input: IIntStream);
811 procedure Recover(const Input: IIntStream; const RE: ERecognitionException);
814 function RecoverFromMismatchedSet(const Input: IIntStream; in RecoverFromMismatchedSet()
817 procedure ConsumeUntil(const Input: IIntStream; const TokenType: Integer); overload;
820 procedure ConsumeUntil(const Input: IIntStream; const BitSet: IBitSet); overload;
878 function AlreadyParsedRule(const Input: IIntStream;
885 procedure Memoize(const Input: IIntStream; const RuleIndex,
[all …]
/external/swiftshader/third_party/subzero/crosstest/
Dtest_cast_main.cpp37 #define COMPARE(Func, FromCName, ToCName, Input, FromString) \ argument
40 ResultLlc = Func<FromCName, ToCName>(Input); \
41 ResultSz = Subzero_::Func<FromCName, ToCName>(Input); \
48 << ", " XSTR(ToCName) ">(" << Input << "): "; \
57 #define COMPARE_ARG(Func, FromCName, ToCName, Input, FromString) \ argument
60 ResultLlc = Func<FromCName, ToCName>(1, Input, 2); \
61 ResultSz = Subzero_::Func<FromCName, ToCName>(1, Input, 2); \
68 << ", " XSTR(ToCName) ">(" << Input << "): "; \
77 #define COMPARE_VEC(Func, FromCName, ToCName, Input, FromString, ToString) \ argument
80 ResultLlc = Func<FromCName, ToCName>(Input); \
[all …]
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Delphi/
DASTTreeParser.stg77 _Last := Input.LT(1) as I<ASTLabelType>;
95 if (Input.LA(1) = TToken.DOWN) then
97 Match(Input, TToken.DOWN, nil); <checkRuleBacktrackFailure()>
99 Match(Input, TToken.UP, nil); <checkRuleBacktrackFailure()>
102 Match(Input, TToken.DOWN, nil); <checkRuleBacktrackFailure()>
104 Match(Input, TToken.UP, nil); <checkRuleBacktrackFailure()>
119 _Last := Input.LT(1) as I<ASTLabelType>;
125 _Last := Input.LT(1) as I<ASTLabelType>;
155 _Last := Input.LT(1) as I<ASTLabelType>;
183 _Llast := Input.LT(1) as I<ASTLabelType>;
[all …]
DDelphi.stg147 function AlreadyParsedRule(const Input: IIntStream;
149 procedure Memoize(const Input: IIntStream; const RuleIndex,
245 if (Input.LA(1) = Integer(cscEOF)) then
250 State.TokenStartCharIndex := Input.Index;
251 State.TokenStartCharPositionInLine := Input.CharPositionInLine;
252 State.TokenStartLine := Input.Line;
255 M := Input.Mark();
266 Input.Rewind(M);
267 Input.Consume; <! // advance one char and try again !>
285 function T<grammar.recognizerName>.AlreadyParsedRule(const Input: IIntStream;
[all …]
/external/clang/unittests/Rewrite/
DRewriteBufferTest.cpp30 StringRef Input = "hello world"; in TEST() local
34 Buf.Initialize(Input); in TEST()
36 size_t Pos = Input.find(RemoveStr); in TEST()
40 Pos = Input.find(TagStr); in TEST()
/external/mesa3d/src/gallium/drivers/r300/compiler/
Dradeon_pair_regalloc.c65 struct register_info * Input; member
222 s->Input[index].Used = 1; in scan_read_callback()
223 reg = &s->Input[index]; in scan_read_callback()
245 reg = &s->Input[*index]; in remap_register()
262 s->Input[input].Allocated = 1; in alloc_input_simple()
263 s->Input[input].File = RC_FILE_TEMPORARY; in alloc_input_simple()
264 s->Input[input].Index = hwreg; in alloc_input_simple()
562 if (s->Input[i].Live[chan].Used) { in do_advanced_regalloc()
566 s->Input[i].Writemask = writemask; in do_advanced_regalloc()
601 if (!s->Input[i].Writemask) { in do_advanced_regalloc()
[all …]
/external/llvm/tools/llvm-readobj/
Dllvm-readobj.cpp284 static void reportError(StringRef Input, std::error_code EC) { in reportError() argument
285 if (Input == "-") in reportError()
286 Input = "<stdin>"; in reportError()
288 reportError(Twine(Input) + ": " + EC.message()); in reportError()
291 static void reportError(StringRef Input, StringRef Message) { in reportError() argument
292 if (Input == "-") in reportError()
293 Input = "<stdin>"; in reportError()
295 reportError(Twine(Input) + ": " + Message); in reportError()
298 static void reportError(StringRef Input, Error Err) { in reportError() argument
299 if (Input == "-") in reportError()
[all …]

12345678910>>...18