Home
last modified time | relevance | path

Searched refs:result (Results 1 – 25 of 12244) sorted by relevance

12345678910>>...490

/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/visitor/
DGenericVisitorAdapter.java44 R result; in visit() local
46 result = n.getMembers().accept(this, arg); in visit()
47 if (result != null) in visit()
48 return result; in visit()
51 result = n.getModifiers().accept(this, arg); in visit()
52 if (result != null) in visit()
53 return result; in visit()
56 result = n.getName().accept(this, arg); in visit()
57 if (result != null) in visit()
58 return result; in visit()
[all …]
/external/ms-tpm-20-ref/TPMCmd/tpm/include/
DHandleProcess.h63 result = TPMI_DH_OBJECT_Unmarshal(&handles[0], handleBufferStart,
65 if(TPM_RC_SUCCESS != result) return result + TPM_RC_H + TPM_RC_1;
66 result = TPMI_DH_ENTITY_Unmarshal(&handles[1], handleBufferStart,
68 if(TPM_RC_SUCCESS != result) return result + TPM_RC_H + TPM_RC_2;
74 result = TPMI_SH_POLICY_Unmarshal(&handles[0], handleBufferStart,
76 if(TPM_RC_SUCCESS != result) return result + TPM_RC_H + TPM_RC_1;
82 result = TPMI_DH_OBJECT_Unmarshal(&handles[0], handleBufferStart,
84 if(TPM_RC_SUCCESS != result) return result + TPM_RC_H + TPM_RC_1;
90 result = TPMI_DH_OBJECT_Unmarshal(&handles[0], handleBufferStart,
92 if(TPM_RC_SUCCESS != result) return result + TPM_RC_H + TPM_RC_1;
[all …]
/external/pigweed/pw_tokenizer/py/
Ddecode_test.py89 result = decode.FormatString('%n').format(b'')
90 self.assertFalse(result.ok())
97 result = decode.FormatString('%%').format(b'')
98 self.assertTrue(result.ok())
99 self.assertEqual(result.value, '%')
100 self.assertEqual(result.remaining, b'')
103 result = decode.FormatString('%+%').format(b'')
104 self.assertFalse(result.ok())
105 self.assertEqual(result.remaining, b'')
108 result = decode.FormatString('%-%').format(b'')
[all …]
/external/antlr/runtime/Ruby/test/functional/ast-output/
Drewrites.rb23 result = ''
26 result += r.result if r.respond_to?( :result )
27 result += r.tree.inspect if r.tree
29 return( expect_errors ? [ result, parser.reported_errors ] : result )
60 result = parse( <<-'END', :a, 'abc 34' )
68 result.should == ''
73 result = parse( <<-'END', :a, 'abc' )
82 result.should == 'abc'
87 result = parse( <<-'END', :a, 'abc' )
96 result.should == 'x'
[all …]
Dauto-ast.rb23 result = ''
26 result += r.result if r.respond_to?( :result )
27 result += r.tree.inspect if r.tree
29 return( expect_errors ? [ result, parser.reported_errors ] : result )
61 result = parse( <<-'END', :a, 'abc 34' )
69 result.should == 'abc 34'
73 result = parse( <<-'END', :a, 'abc 34' )
81 result.should == 'abc 34'
85 result = parse( <<-'END', :a, 'abc 34' )
93 result.should == '(abc 34)'
[all …]
Dtree-rewrite.rb1009 result = parser.a
1010 nodes = ANTLR3::AST::CommonTreeNodeStream.new( result.tree )
1013 result = walker.a
1014 stree = result.tree.nil? ? '' : result.tree.inspect
1023 result = parser.a
1024 nodes = ANTLR3::AST::CommonTreeNodeStream.new( result.tree )
1027 result = walker.a
1028 stree = result.tree.nil? ? '' : result.tree.inspect
1037 result = parser.a
1038 nodes = ANTLR3::AST::CommonTreeNodeStream.new( result.tree )
[all …]
/external/tensorflow/tensorflow/core/platform/
Dnumbers_test.cc121 int32 result; in TEST() local
123 EXPECT_EQ(true, safe_strto32("1", &result)); in TEST()
124 EXPECT_EQ(1, result); in TEST()
125 EXPECT_EQ(true, safe_strto32("123", &result)); in TEST()
126 EXPECT_EQ(123, result); in TEST()
127 EXPECT_EQ(true, safe_strto32(" -123 ", &result)); in TEST()
128 EXPECT_EQ(-123, result); in TEST()
129 EXPECT_EQ(true, safe_strto32("2147483647", &result)); in TEST()
130 EXPECT_EQ(2147483647, result); in TEST()
131 EXPECT_EQ(true, safe_strto32("-2147483648", &result)); in TEST()
[all …]
/external/rust/crates/quiche/deps/boringssl/src/crypto/fipsmodule/bn/
Drsaz_exp.c45 BN_ULONG *a_inv, *m, *result, *table_s = storage + 40 * 3, *R2 = table_s; in RSAZ_1024_mod_exp_avx2() local
48 result = storage; in RSAZ_1024_mod_exp_avx2()
53 result = storage + 40; in RSAZ_1024_mod_exp_avx2()
69 rsaz_1024_mul_avx2(result, R2, one, m, k0); in RSAZ_1024_mod_exp_avx2()
73 rsaz_1024_scatter5_avx2(table_s, result, 0); in RSAZ_1024_mod_exp_avx2()
77 rsaz_1024_sqr_avx2(result, a_inv, m, k0, 1); in RSAZ_1024_mod_exp_avx2()
78 rsaz_1024_scatter5_avx2(table_s, result, 2); in RSAZ_1024_mod_exp_avx2()
82 rsaz_1024_mul_avx2(result, result, a_inv, m, k0); in RSAZ_1024_mod_exp_avx2()
83 rsaz_1024_scatter5_avx2(table_s, result, index); in RSAZ_1024_mod_exp_avx2()
87 rsaz_1024_sqr_avx2(result, result, m, k0, 1); in RSAZ_1024_mod_exp_avx2()
[all …]
/external/angle/util/
Dgeometry_utils.cpp25 void CreateSphereGeometry(size_t sliceCount, float radius, SphereGeometry *result) in CreateSphereGeometry() argument
32 result->positions.resize(vertexCount); in CreateSphereGeometry()
33 result->normals.resize(vertexCount); in CreateSphereGeometry()
42 result->positions[vertexIdx] = direction * radius; in CreateSphereGeometry()
43 result->normals[vertexIdx] = direction; in CreateSphereGeometry()
47 result->indices.clear(); in CreateSphereGeometry()
48 result->indices.reserve(indexCount); in CreateSphereGeometry()
53 result->indices.push_back(static_cast<unsigned short>(i * (sliceCount + 1) + j)); in CreateSphereGeometry()
54 result->indices.push_back(static_cast<unsigned short>((i + 1) * (sliceCount + 1) + j)); in CreateSphereGeometry()
55 result->indices.push_back( in CreateSphereGeometry()
[all …]
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/visitor/
DGenericVisitorAdapter.java47 R result = a.accept(this, arg); in visit() local
48 if (result != null) { in visit()
49 return result; in visit()
57 R result = member.accept(this, arg); in visit() local
58 if (result != null) { in visit()
59 return result; in visit()
73 R result = a.accept(this, arg); in visit() local
74 if (result != null) { in visit()
75 return result; in visit()
81 R result = n.getType().accept(this, arg); in visit() local
[all …]
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/visitor/
DGenericVisitorAdapter.java82 R result = n.getJavaDoc().accept(this, arg); in visit() local
83 if (result != null) { in visit()
84 return result; in visit()
91 R result = a.accept(this, arg); in visit() local
92 if (result != null) { in visit()
93 return result; in visit()
101 R result = member.accept(this, arg); in visit() local
102 if (result != null) { in visit()
103 return result; in visit()
115 R result = n.getJavaDoc().accept(this, arg); in visit() local
[all …]
/external/tensorflow/tensorflow/lite/delegates/gpu/cl/
Dcl_operation.cc25 std::string result; in GetCommonOpenCLDefines() local
27 result += "#define FLT16_0123(V) V.s0123\n"; in GetCommonOpenCLDefines()
28 result += "#define FLT16_4567(V) V.s4567\n"; in GetCommonOpenCLDefines()
29 result += "#define FLT16_89ab(V) V.s89ab\n"; in GetCommonOpenCLDefines()
30 result += "#define FLT16_cdef(V) V.scdef\n"; in GetCommonOpenCLDefines()
31 result += "#define GLOBAL_ID_0 get_global_id(0)\n"; in GetCommonOpenCLDefines()
32 result += "#define GLOBAL_ID_1 get_global_id(1)\n"; in GetCommonOpenCLDefines()
33 result += "#define GLOBAL_ID_2 get_global_id(2)\n"; in GetCommonOpenCLDefines()
34 result += "#define LOCAL_ID_0 get_local_id(0)\n"; in GetCommonOpenCLDefines()
35 result += "#define LOCAL_ID_1 get_local_id(1)\n"; in GetCommonOpenCLDefines()
[all …]
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/strftime/
D1-1.c27 int result; in main() local
35 result = strftime(text, sizeof(text), "%a", local_t); in main()
36 printf("a Bytes %i %s ", result, text); in main()
37 if (result != 3) { in main()
44 result = strftime(text, sizeof(text), "%A", local_t); in main()
45 printf("A Bytes %i %s ", result, text); in main()
46 if (result <= 5) { in main()
53 result = strftime(text, sizeof(text), "%b", local_t); in main()
54 printf("b Bytes %i %s ", result, text); in main()
55 if (result != 3) { in main()
[all …]
/external/elfutils/libdw/
Ddwarf_begin_elf.c74 scn_dwarf_type (Dwarf *result, size_t shstrndx, Elf_Scn *scn) in scn_dwarf_type() argument
81 const char *scnname = elf_strptr (result->elf, shstrndx, in scn_dwarf_type()
99 check_section (Dwarf *result, size_t shstrndx, Elf_Scn *scn, bool inscngrp) in check_section() argument
115 return result; in check_section()
124 return result; in check_section()
129 const char *scnname = elf_strptr (result->elf, shstrndx, in check_section()
136 Dwarf_Sig8_Hash_free (&result->sig8_hash); in check_section()
138 free (result); in check_section()
160 if (result->type == TYPE_PLAIN) in check_section()
163 else if (result->type == TYPE_DWO) in check_section()
[all …]
/external/pdfium/core/fxcrt/
Dfx_string_unittest.cpp241 std::vector<ByteString> result; in TEST() local
242 result = fxcrt::Split(ByteString(""), ','); in TEST()
243 ASSERT_EQ(1u, result.size()); in TEST()
244 EXPECT_EQ("", result[0]); in TEST()
246 result = fxcrt::Split(ByteString("a"), ','); in TEST()
247 ASSERT_EQ(1u, result.size()); in TEST()
248 EXPECT_EQ("a", result[0]); in TEST()
250 result = fxcrt::Split(ByteString(","), ','); in TEST()
251 ASSERT_EQ(2u, result.size()); in TEST()
252 EXPECT_EQ("", result[0]); in TEST()
[all …]
/external/mesa3d/src/mesa/program/
Dprog_execute.c188 const struct gl_program_machine *machine, GLfloat result[4]) in fetch_vector4()
194 COPY_4V(result, src); in fetch_vector4()
201 result[0] = src[GET_SWZ(source->Swizzle, 0)]; in fetch_vector4()
202 result[1] = src[GET_SWZ(source->Swizzle, 1)]; in fetch_vector4()
203 result[2] = src[GET_SWZ(source->Swizzle, 2)]; in fetch_vector4()
204 result[3] = src[GET_SWZ(source->Swizzle, 3)]; in fetch_vector4()
209 result[0] = -result[0]; in fetch_vector4()
210 result[1] = -result[1]; in fetch_vector4()
211 result[2] = -result[2]; in fetch_vector4()
212 result[3] = -result[3]; in fetch_vector4()
[all …]
/external/ms-tpm-20-ref/Samples/Nucleo-TPM/L4A6RG/Drivers/CMSIS/Include/
Dcmsis_armcc_V6.h74 uint32_t result; in __get_CONTROL() local
76 __ASM volatile ("MRS %0, control" : "=r" (result) ); in __get_CONTROL()
77 return(result); in __get_CONTROL()
89 uint32_t result; in __TZ_get_CONTROL_NS() local
91 __ASM volatile ("MRS %0, control_ns" : "=r" (result) ); in __TZ_get_CONTROL_NS()
92 return(result); in __TZ_get_CONTROL_NS()
128 uint32_t result; in __get_IPSR() local
130 __ASM volatile ("MRS %0, ipsr" : "=r" (result) ); in __get_IPSR()
131 return(result); in __get_IPSR()
143 uint32_t result; in __TZ_get_IPSR_NS() local
[all …]
Dcmsis_gcc.h82 uint32_t result; in __get_CONTROL() local
84 __ASM volatile ("MRS %0, control" : "=r" (result) ); in __get_CONTROL()
85 return(result); in __get_CONTROL()
107 uint32_t result; in __get_IPSR() local
109 __ASM volatile ("MRS %0, ipsr" : "=r" (result) ); in __get_IPSR()
110 return(result); in __get_IPSR()
121 uint32_t result; in __get_APSR() local
123 __ASM volatile ("MRS %0, apsr" : "=r" (result) ); in __get_APSR()
124 return(result); in __get_APSR()
136 uint32_t result; in __get_xPSR() local
[all …]
/external/ms-tpm-20-ref/Samples/Nucleo-TPM/L476RG/Drivers/CMSIS/Include/
Dcmsis_armcc_V6.h74 uint32_t result; in __get_CONTROL() local
76 __ASM volatile ("MRS %0, control" : "=r" (result) ); in __get_CONTROL()
77 return(result); in __get_CONTROL()
89 uint32_t result; in __TZ_get_CONTROL_NS() local
91 __ASM volatile ("MRS %0, control_ns" : "=r" (result) ); in __TZ_get_CONTROL_NS()
92 return(result); in __TZ_get_CONTROL_NS()
128 uint32_t result; in __get_IPSR() local
130 __ASM volatile ("MRS %0, ipsr" : "=r" (result) ); in __get_IPSR()
131 return(result); in __get_IPSR()
143 uint32_t result; in __TZ_get_IPSR_NS() local
[all …]
Dcmsis_gcc.h82 uint32_t result; in __get_CONTROL() local
84 __ASM volatile ("MRS %0, control" : "=r" (result) ); in __get_CONTROL()
85 return(result); in __get_CONTROL()
107 uint32_t result; in __get_IPSR() local
109 __ASM volatile ("MRS %0, ipsr" : "=r" (result) ); in __get_IPSR()
110 return(result); in __get_IPSR()
121 uint32_t result; in __get_APSR() local
123 __ASM volatile ("MRS %0, apsr" : "=r" (result) ); in __get_APSR()
124 return(result); in __get_APSR()
136 uint32_t result; in __get_xPSR() local
[all …]
/external/selinux/libsemanage/src/
Dsemanageswig_python_exception.i4 if (result < 0) {
12 if (result < 0) {
20 if (result < 0) {
28 if (result < 0) {
36 if (result < 0) {
44 if (result < 0) {
52 if (result < 0) {
60 if (result < 0) {
68 if (result < 0) {
76 if (result < 0) {
[all …]
/external/ms-tpm-20-ref/TPMCmd/tpm/src/support/
DMarshal.c309 TPM_RC result; in TPM_ECC_CURVE_Unmarshal() local
310 result = UINT16_Unmarshal((UINT16 *)target, buffer, size); in TPM_ECC_CURVE_Unmarshal()
311 if(result == TPM_RC_SUCCESS) in TPM_ECC_CURVE_Unmarshal()
325 result = TPM_RC_CURVE; in TPM_ECC_CURVE_Unmarshal()
329 return result; in TPM_ECC_CURVE_Unmarshal()
367 TPM_RC result; in TPM_CLOCK_ADJUST_Unmarshal() local
368 result = INT8_Unmarshal((INT8 *)target, buffer, size); in TPM_CLOCK_ADJUST_Unmarshal()
369 if(result == TPM_RC_SUCCESS) in TPM_CLOCK_ADJUST_Unmarshal()
382 result = TPM_RC_VALUE; in TPM_CLOCK_ADJUST_Unmarshal()
386 return result; in TPM_CLOCK_ADJUST_Unmarshal()
[all …]
/external/rust/crates/grpcio-sys/grpc/third_party/cares/cares/test/
Dares-test-live.cc22 HostResult result; in VIRT_NONVIRT_TEST_F() local
23 ares_gethostbyname(channel_, "www.google.com.", AF_INET, HostCallback, &result); in VIRT_NONVIRT_TEST_F()
25 EXPECT_TRUE(result.done_); in VIRT_NONVIRT_TEST_F()
26 EXPECT_EQ(ARES_SUCCESS, result.status_); in VIRT_NONVIRT_TEST_F()
27 EXPECT_LT(0, (int)result.host_.addrs_.size()); in VIRT_NONVIRT_TEST_F()
28 EXPECT_EQ(AF_INET, result.host_.addrtype_); in VIRT_NONVIRT_TEST_F()
32 HostResult result; in VIRT_NONVIRT_TEST_F() local
33 ares_gethostbyname(channel_, "www.google.com.", AF_INET6, HostCallback, &result); in VIRT_NONVIRT_TEST_F()
35 EXPECT_TRUE(result.done_); in VIRT_NONVIRT_TEST_F()
36 EXPECT_EQ(ARES_SUCCESS, result.status_); in VIRT_NONVIRT_TEST_F()
[all …]
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/strings/
Dstr_cat_test.cc108 std::string result; in TEST() local
131 result = absl::StrCat(false, true, 2, 3); in TEST()
132 EXPECT_EQ(result, "0123"); in TEST()
134 result = absl::StrCat(-1); in TEST()
135 EXPECT_EQ(result, "-1"); in TEST()
137 result = absl::StrCat(absl::SixDigits(0.5)); in TEST()
138 EXPECT_EQ(result, "0.5"); in TEST()
140 result = absl::StrCat(strs[1], pieces[2]); in TEST()
141 EXPECT_EQ(result, "CruelWorld"); in TEST()
143 result = absl::StrCat(stdstrs[1], " ", stdstrs[2]); in TEST()
[all …]
/external/tensorflow/third_party/absl/abseil-cpp/absl/strings/
Dstr_cat_test.cc108 std::string result; in TEST() local
131 result = absl::StrCat(false, true, 2, 3); in TEST()
132 EXPECT_EQ(result, "0123"); in TEST()
134 result = absl::StrCat(-1); in TEST()
135 EXPECT_EQ(result, "-1"); in TEST()
137 result = absl::StrCat(absl::SixDigits(0.5)); in TEST()
138 EXPECT_EQ(result, "0.5"); in TEST()
140 result = absl::StrCat(strs[1], pieces[2]); in TEST()
141 EXPECT_EQ(result, "CruelWorld"); in TEST()
143 result = absl::StrCat(stdstrs[1], " ", stdstrs[2]); in TEST()
[all …]

12345678910>>...490