/external/kmod/testsuite/rootfs-pristine/test-util/ |
D | freadline_wrapped-input.txt | 7 …ve word after word after word after word after word after word after word after word after word af… 8 …word after word after word after word after word after word after word after word after word after…
|
D | freadline_wrapped-correct.txt | 7 …ve word after word after word after word after word after word after word after word after word af… 9 …word after word after word after word after word after word after word after word after word after…
|
/external/pdfium/core/fpdfdoc/ |
D | ctypeset.cpp | 33 bool IsLatin(uint16_t word) { in IsLatin() argument 34 if (word <= 0x007F) in IsLatin() 35 return !!(special_chars[word] & 0x01); in IsLatin() 37 return ((word >= 0x00C0 && word <= 0x00FF) || in IsLatin() 38 (word >= 0x0100 && word <= 0x024F) || in IsLatin() 39 (word >= 0x1E00 && word <= 0x1EFF) || in IsLatin() 40 (word >= 0x2C60 && word <= 0x2C7F) || in IsLatin() 41 (word >= 0xA720 && word <= 0xA7FF) || in IsLatin() 42 (word >= 0xFF21 && word <= 0xFF3A) || in IsLatin() 43 (word >= 0xFF41 && word <= 0xFF5A)); in IsLatin() [all …]
|
/external/libgsm/inc/ |
D | private.h | 12 typedef short word; /* 16 bit signed int */ typedef 20 word dp0[ 280 ]; 21 word e[ 50 ]; /* code.c */ 23 word z1; /* preprocessing.c, Offset_com. */ 27 word u[8]; /* short_term_aly_filter.c */ 28 word LARpp[2][8]; /* */ 29 word j; /* */ 31 word ltp_cut; /* long_term.c, LTP crosscorr. */ 32 word nrp; /* 40 */ /* long_term.c, synthesis */ 33 word v[9]; /* short_term.c, synthesis */ [all …]
|
/external/u-boot/arch/arm/mach-at91/arm926ejs/ |
D | lowlevel_init.S | 160 .word AT91_ASM_WDT_MR 161 .word CONFIG_SYS_WDTC_WDMR_VAL 164 .word AT91_ASM_PIOD_PDR 165 .word CONFIG_SYS_PIOD_PDR_VAL1 166 .word AT91_ASM_PIOD_PUDR 167 .word CONFIG_SYS_PIOD_PPUDR_VAL 168 .word AT91_ASM_PIOD_ASR 169 .word CONFIG_SYS_PIOD_PPUDR_VAL 172 .word AT91_ASM_PIOC_PDR 173 .word CONFIG_SYS_PIOC_PDR_VAL1 [all …]
|
/external/u-boot/arch/arm/mach-at91/arm920t/ |
D | lowlevel_init.S | 25 .word CONFIG_SYS_TEXT_BASE-PHYS_FLASH_1 27 .word CONFIG_SYS_TEXT_BASE 92 .word AT91_ASM_MC_EBI_CFG 93 .word CONFIG_SYS_EBI_CFGR_VAL 94 .word AT91_ASM_MC_SMC_CSR0 95 .word CONFIG_SYS_SMC_CSR0_VAL 96 .word AT91_ASM_PMC_PLLAR 97 .word CONFIG_SYS_PLLAR_VAL 98 .word AT91_ASM_PMC_PLLBR 99 .word CONFIG_SYS_PLLBR_VAL [all …]
|
/external/u-boot/arch/arm/mach-omap2/omap3/ |
D | lowlevel_init.S | 34 .word 0xe1600071 @ SMC #1 to call PPA service - hand assembled 132 _go_to_speed: .word go_to_speed 137 .word (GPMC_CONFIG_CS0_BASE + GPMC_CONFIG1) 139 .word (GPMC_CONFIG_CS0_BASE + GPMC_CONFIG3) 141 .word STNOR_GPMC_CONFIG3 143 .word (GPMC_CONFIG_CS0_BASE + GPMC_CONFIG4) 145 .word STNOR_GPMC_CONFIG4 147 .word STNOR_GPMC_CONFIG5 149 .word (GPMC_CONFIG_CS0_BASE + GPMC_CONFIG5) 151 .word CM_CLKEN_PLL [all …]
|
/external/epid-sdk/epid/member/tiny/math/src/ |
D | vli.c | 55 uint32_t sum = left->word[i] + right->word[i] + carry; in VliAdd() 56 carry = (sum < left->word[i]) | ((sum == left->word[i]) && carry); in VliAdd() 57 result->word[i] = sum; in VliAdd() 72 uint64_t product = (uint64_t)left->word[i] * right->word[k - i]; in VliMul() 76 result->word[k] = (uint32_t)tmp_r1; in VliMul() 80 result->word[NUM_ECC_DIGITS * 2 - 1] = (uint32_t)tmp_r1; in VliMul() 86 result->word[i] = (in->word[i] >> shift) | in->word[i + 1] << (32 - shift); in VliRShift() 88 result->word[NUM_ECC_DIGITS - 1] = in->word[NUM_ECC_DIGITS - 1] >> shift; in VliRShift() 97 uint32_t diff = left->word[i] - right->word[i] - borrow; in VliSub() 98 borrow = (diff > left->word[i]) | ((diff == left->word[i]) && borrow); in VliSub() [all …]
|
/external/pdfium/fpdfsdk/pwl/ |
D | cpwl_font_map.cpp | 76 bool CPWL_FontMap::KnowWord(int32_t nFontIndex, uint16_t word) { in KnowWord() argument 78 CharCodeFromUnicode(nFontIndex, word) >= 0; in KnowWord() 81 int32_t CPWL_FontMap::GetWordFontIndex(uint16_t word, in GetWordFontIndex() argument 85 if (KnowWord(nFontIndex, word)) in GetWordFontIndex() 91 if (KnowWord(0, word)) in GetWordFontIndex() 100 if (KnowWord(nNewFontIndex, word)) in GetWordFontIndex() 105 if (KnowWord(nNewFontIndex, word)) in GetWordFontIndex() 111 int32_t CPWL_FontMap::CharCodeFromUnicode(int32_t nFontIndex, uint16_t word) { in CharCodeFromUnicode() argument 120 return pData->pFont->CharCodeFromUnicode(word); in CharCodeFromUnicode() 122 return word < 0xFF ? word : -1; in CharCodeFromUnicode() [all …]
|
/external/pdfium/core/fpdfapi/font/ |
D | cpdf_cmapparser.cpp | 34 ByteStringView CMap_GetString(const ByteStringView& word) { in CMap_GetString() argument 35 if (word.GetLength() <= 2) in CMap_GetString() 37 return word.Right(word.GetLength() - 2); in CMap_GetString() 47 void CPDF_CMapParser::ParseWord(const ByteStringView& word) { in ParseWord() argument 48 if (word.IsEmpty()) { in ParseWord() 51 if (word == "begincidchar") { in ParseWord() 54 } else if (word == "begincidrange") { in ParseWord() 57 } else if (word == "endcidrange" || word == "endcidchar") { in ParseWord() 59 } else if (word == "/WMode") { in ParseWord() 61 } else if (word == "/Registry") { in ParseWord() [all …]
|
/external/u-boot/arch/arc/cpu/arcv2/ |
D | ivt.S | 9 .word _start /* 0x00 - Reset */ 10 .word memory_error /* 0x01 - Memory Error */ 11 .word instruction_error /* 0x02 - Instruction Error */ 14 .word EV_MachineCheck /* 0x03 - Fatal Machine check */ 15 .word EV_TLBMissI /* 0x04 - Intruction TLB miss */ 16 .word EV_TLBMissD /* 0x05 - Data TLB miss */ 17 .word EV_TLBProtV /* 0x06 - Protection Violation or Misaligned Access */ 18 .word EV_PrivilegeV /* 0x07 - Privilege Violation */ 19 .word EV_SWI /* 0x08 - Software Interrupt */ 20 .word EV_Trap /* 0x09 - Trap */ [all …]
|
/external/libgsm/src/ |
D | rpe.c | 23 register word * e, /* signal [-5..0.39.44] IN */ 24 word * x /* signal [0..39] OUT */ 117 word * x, /* [0..39] IN */ 118 word * xM, /* [0..12] OUT */ 119 word * Mc_out /* OUT */ 130 word Mc; 224 word xmaxc, /* IN */ 225 word * exp_out, /* OUT */ 226 word * mant_out ) /* OUT */ 228 word exp, mant; [all …]
|
D | short_term.c | 24 word * LARc, /* coded log area ratio [0..7] IN */ 25 word * LARpp) /* out: decoded .. */ 27 register word temp1 /* , temp2 */; 92 register word * LARpp_j_1, 93 register word * LARpp_j, 94 register word * LARp) 106 register word * LARpp_j_1, 107 register word * LARpp_j, 108 register word * LARp) 118 register word * LARpp_j_1, [all …]
|
D | add.c | 23 word gsm_add P2((a,b), word a, word b) 29 word gsm_sub P2((a,b), word a, word b) 35 word gsm_mult P2((a,b), word a, word b) 41 word gsm_mult_r P2((a,b), word a, word b) 51 word gsm_abs P1((a), word a) 56 longword gsm_L_mult P2((a,b),word a, word b) 117 word gsm_norm P1((a), longword a ) 161 word gsm_asl P2((a,n), word a, int n) 183 word gsm_asr P2((a,n), word a, int n) 193 else return -(word)( -(uword)a >> n ); [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/ARM/ |
D | symbol-variants.s | 8 .word f00 9 .word f01 14 .word f02(NONE) 15 .word f03(none) 28 .word f06(GOT) 29 .word f07(got) 34 .word f08(GOTOFF) 35 .word f09(gotoff) 40 .word f10(TPOFF) 41 .word f11(tpoff) [all …]
|
/external/u-boot/arch/arm/mach-davinci/ |
D | lowlevel_init.S | 540 .word 0x01c40000 /* Device Configuration Registers */ 542 .word 0x01c40004 /* Device Configuration Registers */ 545 .word 0x00000c1f 548 .word 0x01e00004 550 .word 0 552 .word 0x01e00014 554 .word 0x3ffffffd 556 .word 0x01e00018 558 .word 0x3ffffffd 560 .word 0x01e0001c [all …]
|
/external/u-boot/board/renesas/rsk7264/ |
D | lowlevel_init.S | 116 FRQCR_D: .word 0x1003 121 STBCR4_D: .word 0x0000 132 PJCR1_D1: .word 0x0000 133 PJCR1_D2: .word 0x0022 135 PJCR2_D: .word 0x0000 138 PJIOR0_D1: .word 0x0FC0 139 PJIOR0_D2: .word 0x0FE0 141 PJDR0_D: .word 0x0FBF 146 PGCR2_D: .word 0x0000 149 PGIOR0_D: .word 0x03F0 [all …]
|
/external/llvm/test/MC/ARM/ |
D | symbol-variants.s | 8 .word f00 9 .word f01 14 .word f02(NONE) 15 .word f03(none) 28 .word f06(GOT) 29 .word f07(got) 34 .word f08(GOTOFF) 35 .word f09(gotoff) 40 .word f10(TPOFF) 41 .word f11(tpoff) [all …]
|
/external/u-boot/board/renesas/rsk7203/ |
D | lowlevel_init.S | 110 PCCRL4_D0: .word 0x0000 113 PECRL4_D0: .word 0x0000 116 PECRL3_D: .word 0x0000 119 PEIORL_D0: .word 0x1C00 120 PEIORL_D1: .word 0x1C02 122 PCIORL_D: .word 0x4000 125 PFCRH2_D: .word 0x0000 128 PFCRH3_D: .word 0x0000 131 PFCRH1_D: .word 0x0000 134 PFIORH_D: .word 0x0729 [all …]
|
/external/epid-sdk/epid/member/tiny/math/unittests/ |
D | vli-test.cc | 42 left.word[0] = 1; in TEST() 43 right.word[0] = 2; in TEST() 44 expected.word[0] = 3; in TEST() 66 left.word[0] = 2; in TEST() 67 right.word[0] = 2; in TEST() 68 expected.word[0] = 4; in TEST() 90 in.word[0] = 4; in TEST() 91 expected.word[0] = 2; in TEST() 99 in.word[0] = 0x00000008; in TEST() 100 in.word[1] = 0xffffffff; in TEST() [all …]
|
/external/python/cpython3/Lib/ |
D | rlcompleter.py | 97 def _callable_postfix(self, val, word): argument 99 word = word + "(" 100 return word 113 for word in keyword.kwlist: 114 if word[:n] == text: 115 seen.add(word) 116 if word in {'finally', 'try'}: 117 word = word + ':' 118 elif word not in {'False', 'None', 'True', 121 word = word + ' ' [all …]
|
/external/vulkan-validation-layers/layers/ |
D | shader_validation.cpp | 96 def_index[insn.word(1)] = insn.offset(); in BuildDefIndex() 106 def_index[insn.word(2)] = insn.offset(); in BuildDefIndex() 115 def_index[insn.word(2)] = insn.offset(); in BuildDefIndex() 120 def_index[insn.word(2)] = insn.offset(); in BuildDefIndex() 125 def_index[insn.word(2)] = insn.offset(); in BuildDefIndex() 173 auto entrypointName = (char const *)&insn.word(3); in FindEntrypoint() 174 auto executionModel = insn.word(1); in FindEntrypoint() 230 return value.word(3); in GetConstantValue() 242 ss << (insn.word(3) ? 's' : 'u') << "int" << insn.word(2); in DescribeTypeInner() 245 ss << "float" << insn.word(2); in DescribeTypeInner() [all …]
|
/external/swiftshader/src/Pipeline/ |
D | SpirvShader.cpp | 44 auto targetId = insn.word(1); 46 static_cast<spv::Decoration>(insn.word(2)), 47 insn.wordCount() > 3 ? insn.word(3) : 0); 53 auto targetId = insn.word(1); 54 auto memberIndex = insn.word(2); 59 static_cast<spv::Decoration>(insn.word(3)), 60 insn.wordCount() > 4 ? insn.word(4) : 0); 72 auto const &srcDecorations = decorations[insn.word(1)]; 76 decorations[insn.word(i)].Apply(srcDecorations); 83 auto const &srcDecorations = decorations[insn.word(1)]; [all …]
|
/external/u-boot/arch/arm/include/asm/arch-sunxi/ |
D | boot0.h | 18 .word 0xe59f1024 // ldr r1, [pc, #36] ; 0x170000a0 19 .word 0xe59f0024 // ldr r0, [pc, #36] ; CONFIG_*_TEXT_BASE 20 .word 0xe5810000 // str r0, [r1] 21 .word 0xf57ff04f // dsb sy 22 .word 0xf57ff06f // isb sy 23 .word 0xee1c0f50 // mrc 15, 0, r0, cr12, cr0, {2} ; RMR 24 .word 0xe3800003 // orr r0, r0, #3 25 .word 0xee0c0f50 // mcr 15, 0, r0, cr12, cr0, {2} ; RMR 26 .word 0xf57ff06f // isb sy 27 .word 0xe320f003 // wfi [all …]
|
/external/libgsm/add-test/ |
D | add_test.c | 22 word op1, op2, expect; 25 word M_gsm_add P((word op1, word op2)); 26 word M_gsm_sub P((word op1, word op2)); 27 word M_gsm_mult P((word op1, word op2)); 28 word M_gsm_mult_r P((word op1, word op2)); 29 word M_gsm_abs P((word op1)); 30 longword M_gsm_L_mult P((word op1, word op2)); 122 void fprint_word P2((f, w), FILE * f, word w) 131 void print_word P1((w), word w) 165 void do_word P1((w), word w ) [all …]
|