/external/antlr/antlr-3.4/runtime/Ruby/test/functional/ast-output/ |
D | rewrites.rb | 23 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 …]
|
D | auto-ast.rb | 23 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 …]
|
D | tree-rewrite.rb | 1009 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 …]
|
D | hetero-nodes.rb | 621 result = parse( :VToken, :a, 'a' ) 622 result.should == 'a<V>' 627 result = parse( :TokenWithQualifiedType, :a, 'a' ) 628 result.should == 'a<V>' 633 result = parse( :TokenWithLabel, :a, 'a' ) 634 result.should == 'a<V>' 639 result = parse( :TokenWithListLabel, :a, 'a' ) 640 result.should == 'a<V>' 645 result = parse( :TokenRoot, :a, 'a' ) 646 result.should == 'a<V>' [all …]
|
/external/tpm2/ |
D | HandleProcess.c | 17 TPM_RC result = TPM_RC_SUCCESS; in ParseHandleBuffer() local 22 result = TPMI_DH_OBJECT_Unmarshal( in ParseHandleBuffer() 25 if (result != TPM_RC_SUCCESS) { in ParseHandleBuffer() 26 return result; in ParseHandleBuffer() 29 result = TPMI_DH_OBJECT_Unmarshal( in ParseHandleBuffer() 32 if (result != TPM_RC_SUCCESS) { in ParseHandleBuffer() 33 return result; in ParseHandleBuffer() 40 result = TPMI_DH_OBJECT_Unmarshal( in ParseHandleBuffer() 43 if (result != TPM_RC_SUCCESS) { in ParseHandleBuffer() 44 return result; in ParseHandleBuffer() [all …]
|
/external/boringssl/src/crypto/bn/ |
D | rsaz_exp.c | 74 unsigned char *a_inv, *m, *result, in RSAZ_1024_mod_exp_avx2() local 81 result = storage; in RSAZ_1024_mod_exp_avx2() 86 result = storage + 320; in RSAZ_1024_mod_exp_avx2() 98 rsaz_1024_mul_avx2(result, R2, one, m, k0); in RSAZ_1024_mod_exp_avx2() 102 rsaz_1024_scatter5_avx2(table_s,result,0); in RSAZ_1024_mod_exp_avx2() 106 rsaz_1024_sqr_avx2(result, a_inv, m, k0, 1); in RSAZ_1024_mod_exp_avx2() 107 rsaz_1024_scatter5_avx2(table_s,result,2); in RSAZ_1024_mod_exp_avx2() 111 rsaz_1024_mul_avx2(result, result, a_inv, m, k0); in RSAZ_1024_mod_exp_avx2() 112 rsaz_1024_scatter5_avx2(table_s,result,index); in RSAZ_1024_mod_exp_avx2() 116 rsaz_1024_sqr_avx2(result, result, m, k0, 1); in RSAZ_1024_mod_exp_avx2() [all …]
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/strftime/ |
D | 1-1.c | 27 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 …]
|
D | 2-1.c | 28 int result; in main() local 47 result = strftime(text, sizeof(text), "%EC", local_t); in main() 48 printf("EC Bytes %i %s ", result, text); in main() 49 if (result != 2) { in main() 67 result = strftime(text, sizeof(text), "%EX", local_t); in main() 68 printf("EX Bytes %i %s ", result, text); in main() 69 if (result <= 3) { in main() 87 result = strftime(text, sizeof(text), "%EY", local_t); in main() 88 printf("EY Bytes %i %s ", result, text); in main() 89 if (result != 4) { in main() [all …]
|
/external/mesa3d/src/mesa/program/ |
D | prog_execute.c | 224 const struct gl_program_machine *machine, GLfloat result[4]) in fetch_vector4() 231 COPY_4V(result, src); in fetch_vector4() 238 result[0] = src[GET_SWZ(source->Swizzle, 0)]; in fetch_vector4() 239 result[1] = src[GET_SWZ(source->Swizzle, 1)]; in fetch_vector4() 240 result[2] = src[GET_SWZ(source->Swizzle, 2)]; in fetch_vector4() 241 result[3] = src[GET_SWZ(source->Swizzle, 3)]; in fetch_vector4() 245 result[0] = FABSF(result[0]); in fetch_vector4() 246 result[1] = FABSF(result[1]); in fetch_vector4() 247 result[2] = FABSF(result[2]); in fetch_vector4() 248 result[3] = FABSF(result[3]); in fetch_vector4() [all …]
|
/external/valgrind/none/tests/amd64/ |
D | aes.stdout.exp | 1 aeskeygenassist 1 3c4fcf098815f7aba6d2ae2816157e2b result 34e4b524e5b52434018a84eb8b84eb01 2 aesenc 7b5b54657374566563746f725d53475d 48692853686179295b477565726f6e5d result 95e5d7de584b108bc5a… 3 aesenclast 7b5b54657374566563746f725d53475d 48692853686179295b477565726f6e5d result 11c6fd5325c47e1… 4 aesdec 7b5b54657374566563746f725d53475d 48692853686179295b477565726f6e5d result 2a3930b75eb98eb5872… 5 aesdeclast 7b5b54657374566563746f725d53475d 48692853686179295b477565726f6e5d result d093a5727b6310d… 6 aesimc 8dcab9dc035006bc8f57161e00cafd8d result 77575fc53bccc9eeae5e8b9267a635d6 7 aeskeygenassist 8 aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa result acacacaca4acacacacacacaca4acacac 8 aesenc aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb result 1717171717171717171… 9 aesenclast aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb result 171717171717171… 10 aesdec aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb result d9d9d9d9d9d9d9d9d9d… [all …]
|
/external/slf4j/slf4j-api/src/test/java/org/slf4j/helpers/ |
D | MessageFormatterTest.java | 44 String result; field in MessageFormatterTest 48 result = MessageFormatter.format(null, i1).getMessage(); in testNull() 49 assertEquals(null, result); in testNull() 54 result = MessageFormatter.format("Value is {}.", null).getMessage(); in nullParametersShouldBeHandledWithoutBarfing() 55 assertEquals("Value is null.", result); in nullParametersShouldBeHandledWithoutBarfing() 57 result = MessageFormatter.format("Val1 is {}, val2 is {}.", null, null).getMessage(); in nullParametersShouldBeHandledWithoutBarfing() 58 assertEquals("Val1 is null, val2 is null.", result); in nullParametersShouldBeHandledWithoutBarfing() 60 result = MessageFormatter.format("Val1 is {}, val2 is {}.", i1, null).getMessage(); in nullParametersShouldBeHandledWithoutBarfing() 61 assertEquals("Val1 is 1, val2 is null.", result); in nullParametersShouldBeHandledWithoutBarfing() 63 result = MessageFormatter.format("Val1 is {}, val2 is {}.", null, i2).getMessage(); in nullParametersShouldBeHandledWithoutBarfing() [all …]
|
/external/sonivox/jet_tools/JetCreator/ |
D | eas.py | 227 result = eas_dll.EAS_SetVolume(self.eas.handle, self.handle, volume) 228 if result: 229 …raise EAS_Exception(result, 'EAS_SetVolume error %d on file %s' % (result, self.path), 'EAS_SetVol… 245 result = eas_dll.EAS_SetPriority(self.eas.handle, self.handle, priority) 246 if result: 247 …raise EAS_Exception(result, 'EAS_SetPriority error %d on file %s' % (result, self.path), 'EAS_SetP… 254 result = eas_dll.EAS_GetPriority(self.eas.handle, self.handle, byref(priority)) 255 if result: 256 …raise EAS_Exception(result, 'EAS_GetPriority error %d on file %s' % (result, self.path), 'EAS_GetP… 264 result = eas_dll.EAS_SetTransposition(self.eas.handle, self.handle, transposition) [all …]
|
/external/elfutils/libdw/ |
D | dwarf_begin_elf.c | 68 check_section (Dwarf *result, GElf_Ehdr *ehdr, Elf_Scn *scn, bool inscngrp) in check_section() argument 84 return result; in check_section() 93 return result; in check_section() 98 const char *scnname = elf_strptr (result->elf, ehdr->e_shstrndx, in check_section() 105 Dwarf_Sig8_Hash_free (&result->sig8_hash); in check_section() 107 free (result); in check_section() 126 return result; in check_section() 128 if (unlikely (result->sectiondata[cnt] != NULL)) in check_section() 130 return result; in check_section() 147 Dwarf_Sig8_Hash_free (&result->sig8_hash); in check_section() [all …]
|
/external/clang/test/CodeGen/ |
D | builtins-overflow.c | 174 volatile int result; in test_add_overflow_volatile() local 175 if (__builtin_add_overflow(x, y, &result)) in test_add_overflow_volatile() 177 return result; in test_add_overflow_volatile() 183 unsigned result; in test_uadd_overflow() local 184 if (__builtin_uadd_overflow(x, y, &result)) in test_uadd_overflow() 186 return result; in test_uadd_overflow() 192 unsigned long result; in test_uaddl_overflow() local 193 if (__builtin_uaddl_overflow(x, y, &result)) in test_uaddl_overflow() 195 return result; in test_uaddl_overflow() 201 unsigned long long result; in test_uaddll_overflow() local [all …]
|
/external/elfutils/libasm/ |
D | asm_begin.c | 48 prepare_text_output (AsmCtx_t *result) in prepare_text_output() argument 50 if (result->fd == -1) in prepare_text_output() 51 result->out.file = stdout; in prepare_text_output() 54 result->out.file = fdopen (result->fd, "a"); in prepare_text_output() 55 if (result->out.file == NULL) in prepare_text_output() 57 close (result->fd); in prepare_text_output() 58 free (result); in prepare_text_output() 59 result = NULL; in prepare_text_output() 62 __fsetlocking (result->out.file, FSETLOCKING_BYCALLER); in prepare_text_output() 65 return result; in prepare_text_output() [all …]
|
/external/protobuf/js/binary/ |
D | utils_test.js | 82 var result = 84 assertEquals('10000000000000000001', result); 86 result = jspb.utils.joinUnsignedDecimalString(0xacd05f15, 0x1b69b4b); 87 assertEquals('123456789123456789', result); 89 result = jspb.utils.joinUnsignedDecimalString(0xeb1f0ad2, 0xab54a98c); 90 assertEquals('12345678901234567890', result); 92 result = jspb.utils.joinUnsignedDecimalString(0xe3b70cb1, 0x891087b8); 93 assertEquals('9876543210987654321', result); 96 result = jspb.utils.joinUnsignedDecimalString(0x00000000, 0x00000000); 97 assertEquals('0', result); [all …]
|
/external/sonivox/arm-wt-22k/lib_src/ |
D | eas_xmf.c | 118 EAS_RESULT result; in XMF_CheckFileType() local 125 … if ((result = EAS_HWGetDWord(pEASData->hwInstData, fileHandle, &temp, EAS_TRUE)) != EAS_SUCCESS) in XMF_CheckFileType() 126 return result; in XMF_CheckFileType() 131 … if ((result = EAS_HWGetDWord(pEASData->hwInstData, fileHandle, &temp, EAS_TRUE)) != EAS_SUCCESS) in XMF_CheckFileType() 132 return result; in XMF_CheckFileType() 137 result = EAS_HWGetDWord(pEASData->hwInstData, fileHandle, &temp, EAS_TRUE); in XMF_CheckFileType() 138 if (result != EAS_SUCCESS) in XMF_CheckFileType() 139 return result; in XMF_CheckFileType() 149 result = EAS_HWGetDWord(pEASData->hwInstData, fileHandle, &temp, EAS_TRUE); in XMF_CheckFileType() 150 if (result != EAS_SUCCESS) in XMF_CheckFileType() [all …]
|
/external/autotest/client/site_tests/logging_CrashSender/ |
D | logging_CrashSender.py | 24 def _check_hardware_info(self, result): argument 28 if not ('Board: %s' % board_match.group(1)) in result['output']: 36 if not ('HWClass: %s' % hwclass) in result['output']: 41 result = self._call_sender_one_crash(report=report) 42 if (result['report_exists'] or 43 result['rate_count'] != 1 or 44 not result['send_attempt'] or 45 not result['send_success'] or 46 result['sleep_time'] < 0 or 47 result['sleep_time'] >= _SECONDS_SEND_SPREAD or [all …]
|
/external/v8/src/base/platform/ |
D | semaphore.cc | 24 kern_return_t result = semaphore_create( in Semaphore() local 26 DCHECK_EQ(KERN_SUCCESS, result); in Semaphore() 27 USE(result); in Semaphore() 32 kern_return_t result = semaphore_destroy(mach_task_self(), native_handle_); in ~Semaphore() local 33 DCHECK_EQ(KERN_SUCCESS, result); in ~Semaphore() 34 USE(result); in ~Semaphore() 38 kern_return_t result = semaphore_signal(native_handle_); in Signal() local 39 DCHECK_EQ(KERN_SUCCESS, result); in Signal() 40 USE(result); in Signal() 46 kern_return_t result = semaphore_wait(native_handle_); in Wait() local [all …]
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/ |
D | BaseDexReader.java | 54 int result; in readSleb128() local 57 result = buf[end++] & 0xff; in readSleb128() 58 if (result <= 0x7f) { in readSleb128() 59 result = (result << 25) >> 25; in readSleb128() 62 result = (result & 0x7f) | ((currentByteValue & 0x7f) << 7); in readSleb128() 64 result = (result << 18) >> 18; in readSleb128() 67 result |= (currentByteValue & 0x7f) << 14; in readSleb128() 69 result = (result << 11) >> 11; in readSleb128() 72 result |= (currentByteValue & 0x7f) << 21; in readSleb128() 74 result = (result << 4) >> 4; in readSleb128() [all …]
|
/external/ltp/lib/ |
D | bytes_by_prefix.c | 81 int result; in bytes_by_prefix() local 88 result = num; in bytes_by_prefix() 89 return result < 0 ? -1 : result; in bytes_by_prefix() 94 result = (int)(num * (float)B_MULT); in bytes_by_prefix() 97 result = (int)(num * (float)K_MULT); in bytes_by_prefix() 100 result = (int)((num * (float)K_MULT) * sizeof(long)); in bytes_by_prefix() 103 result = (int)(num * (float)M_MULT); in bytes_by_prefix() 106 result = (int)((num * (float)M_MULT) * sizeof(long)); in bytes_by_prefix() 109 result = (int)(num * (float)G_MULT); in bytes_by_prefix() 112 result = (int)((num * (float)G_MULT) * sizeof(long)); in bytes_by_prefix() [all …]
|
/external/doclava/src/com/google/doclava/ |
D | LinkReference.java | 83 LinkReference result = new LinkReference(); in parse() local 84 result.text = text; in parse() 125 return result; in parse() 137 result.label = text.substring(index); in parse() 248 result.classInfo = cl; in parse() 256 result.classInfo = cl.extendedFindClass(ref); in parse() 257 if (result.classInfo == null) { in parse() 259 result.classInfo = cl.findClass(ref); in parse() 261 if (result.classInfo == null) { in parse() 263 result.classInfo = cl.findInnerClass(ref); in parse() [all …]
|
/external/libxml2/doc/ |
D | search.php | 131 $result = mysql_query ("SELECT ID,Count FROM Queries WHERE Value='$word'"); 132 if ($result) { 133 $i = mysql_num_rows($result); 135 mysql_free_result($result); 138 $id = mysql_result($result, 0, 0); 139 $count = mysql_result($result, 0, 1); 148 $result = NULL; 151 …$result = mysql_query ("SELECT words.relevance, symbols.name, symbols.type, symbols.module, symbol… 152 if ($result) { 153 $j = mysql_num_rows($result); [all …]
|
/external/selinux/libsemanage/src/ |
D | semanageswig_python.i | 59 PyObject** result) { in semanage_array2plist() argument 87 *result = plist; in semanage_array2plist() 116 $result = SWIG_Python_AppendOutput($result, SWIG_FromCharPtr(*$1)); 130 if ($result) { 132 SWIG_AsVal_int($result, &value); 137 $result = SWIG_From_int(STATUS_ERR); 139 $result = SWIG_Python_AppendOutput($result, plist); 153 $result = SWIG_Python_AppendOutput($result, SWIG_NewPointerObj(*$1, $*1_descriptor, 0)); 165 $result = SWIG_Python_AppendOutput($result, SWIG_NewPointerObj(*$1, $*1_descriptor, 0)); 177 $result = SWIG_Python_AppendOutput($result, SWIG_NewPointerObj(*$1, $*1_descriptor, 0)); [all …]
|
/external/skia/src/sksl/ |
D | SkSLUtil.h | 27 sk_sp<GrShaderCaps> result = sk_make_sp<GrShaderCaps>(GrContextOptions()); in Default() local 28 result->fVersionDeclString = "#version 400"; in Default() 29 result->fShaderDerivativeSupport = true; in Default() 30 return result; in Default() 34 sk_sp<GrShaderCaps> result = sk_make_sp<GrShaderCaps>(GrContextOptions()); in Version450Core() local 35 result->fVersionDeclString = "#version 450 core"; in Version450Core() 36 return result; in Version450Core() 40 sk_sp<GrShaderCaps> result = sk_make_sp<GrShaderCaps>(GrContextOptions()); in Version110() local 41 result->fVersionDeclString = "#version 110"; in Version110() 42 result->fGLSLGeneration = GrGLSLGeneration::k110_GrGLSLGeneration; in Version110() [all …]
|