/external/iptables/extensions/ |
D | libxt_limit.c | 48 uint32_t mult = 1; /* Seconds by default. */ in parse_rate() local 56 mult = 1; in parse_rate() 58 mult = 60; in parse_rate() 60 mult = 60*60; in parse_rate() 62 mult = 24*60*60; in parse_rate() 70 *val = XT_LIMIT_SCALE * mult / r; in parse_rate() 115 uint32_t mult; member 131 if (period > rates[i].mult in print_rate() 132 || rates[i].mult/period < rates[i].mult%period) in print_rate() 135 printf(" %u/%s", rates[i-1].mult / period, rates[i-1].name); in print_rate()
|
D | libxt_hashlimit.c | 35 uint32_t mult; member 225 ud->mult = XT_HASHLIMIT_BYTE_EXPIRE; in parse_bytes() 235 ud->mult = 1; /* Seconds by default. */ in parse_rate() 242 ud->mult = 1; in parse_rate() 244 ud->mult = 60; in parse_rate() 246 ud->mult = 60*60; in parse_rate() 248 ud->mult = 24*60*60; in parse_rate() 256 *val = XT_HASHLIMIT_SCALE * ud->mult / r; in parse_rate() 395 info->cfg.expire = udata->mult * 1000; /* from s to msec */ in hashlimit_check() 407 info->cfg.expire = udata->mult * 1000; /* from s to msec */ in hashlimit_mt_check() [all …]
|
/external/webp/src/dsp/ |
D | rescaler_sse2.c | 62 const __m128i mult = _mm_set1_epi32(((x_add - accum) << 16) | accum); in RescalerImportRowExpandSSE2() local 63 const __m128i out = _mm_madd_epi16(cur_pixels, mult); in RescalerImportRowExpandSSE2() 85 const __m128i mult = _mm_cvtsi32_si128(((x_add - accum) << 16) | accum); in RescalerImportRowExpandSSE2() local 86 const __m128i out = _mm_madd_epi16(cur_pixels, mult); in RescalerImportRowExpandSSE2() 144 const __m128i mult = _mm_set1_epi16(-accum); in RescalerImportRowShrinkSSE2() local 145 const __m128i frac0 = _mm_mullo_epi16(base, mult); // 16b x 16b -> 32b in RescalerImportRowShrinkSSE2() 146 const __m128i frac1 = _mm_mulhi_epu16(base, mult); in RescalerImportRowShrinkSSE2() 172 const __m128i* const mult, in LoadDispatchAndMult() argument 181 if (mult != NULL) { in LoadDispatchAndMult() 182 *out0 = _mm_mul_epu32(A0, *mult); in LoadDispatchAndMult() [all …]
|
D | alpha_processing.c | 26 static uint32_t Mult(uint8_t x, uint32_t mult) { in Mult() argument 27 const uint32_t v = (x * mult + HALF) >> MFIX; in Mult() 229 const uint32_t mult = MULTIPLIER(a); in ApplyAlphaMultiply() local 230 rgb[4 * i + 0] = PREMULTIPLY(rgb[4 * i + 0], mult); in ApplyAlphaMultiply() 231 rgb[4 * i + 1] = PREMULTIPLY(rgb[4 * i + 1], mult); in ApplyAlphaMultiply() 232 rgb[4 * i + 2] = PREMULTIPLY(rgb[4 * i + 2], mult); in ApplyAlphaMultiply() 266 const uint32_t mult = MULTIPLIER(a); in ApplyAlphaMultiply4444() local 267 const uint8_t r = multiply(dither_hi(rg), mult); in ApplyAlphaMultiply4444() 268 const uint8_t g = multiply(dither_lo(rg), mult); in ApplyAlphaMultiply4444() 269 const uint8_t b = multiply(dither_hi(ba), mult); in ApplyAlphaMultiply4444()
|
/external/jemalloc/test/src/ |
D | timer.c | 34 uint64_t mult; in timer_ratio() local 44 mult = 1; in timer_ratio() 46 mult *= 10; in timer_ratio() 54 uint64_t round = (i+1 == buflen-1 && ((t0 * mult * 10 / t1) % 10 in timer_ratio() 57 "%"FMTu64, (t0 * mult / t1) % 10 + round); in timer_ratio() 59 mult *= 10; in timer_ratio()
|
/external/libavc/common/arm/ |
D | ih264_weighted_bi_pred_a9q.s | 184 vmul.s16 q2, q2, d2[0] @weight 1 mult. for rows 1,2 185 vmla.s16 q2, q3, d2[2] @weight 2 mult. for rows 1,2 186 vmul.s16 q4, q4, d2[0] @weight 1 mult. for rows 3,4 187 vmla.s16 q4, q5, d2[2] @weight 2 mult. for rows 3,4 224 vmul.s16 q2, q2, d2[0] @weight 1 mult. for row 1 225 vmla.s16 q2, q3, d2[2] @weight 2 mult. for row 1 228 vmul.s16 q4, q4, d2[0] @weight 1 mult. for row 2 229 vmla.s16 q4, q5, d2[2] @weight 2 mult. for row 2 233 vmul.s16 q6, q6, d2[0] @weight 1 mult. for row 3 234 vmla.s16 q6, q7, d2[2] @weight 2 mult. for row 3 [all …]
|
D | ih264_weighted_pred_a9q.s | 144 vmul.s16 q2, q2, d2[0] @weight mult. for rows 1,2 145 vmul.s16 q3, q3, d2[0] @weight mult. for rows 3,4 176 vmul.s16 q2, q2, d2[0] @weight mult. for row 1 178 vmul.s16 q3, q3, d2[0] @weight mult. for row 2 179 vmul.s16 q4, q4, d2[0] @weight mult. for row 3 180 vmul.s16 q5, q5, d2[0] @weight mult. for row 4 216 vmul.s16 q6, q6, d2[0] @weight mult. for row 1L 218 vmul.s16 q7, q7, d2[0] @weight mult. for row 1H 220 vmul.s16 q8, q8, d2[0] @weight mult. for row 2L 222 vmul.s16 q9, q9, d2[0] @weight mult. for row 2H [all …]
|
/external/eigen/bench/btl/libs/gmm/ |
D | gmm_interface.hh | 82 gmm::mult(A,B, X); in matrix_matrix_product() 86 gmm::mult(gmm::transposed(A),gmm::transposed(B), X); in transposed_matrix_matrix_product() 90 gmm::mult(gmm::transposed(A),A, X); in ata_product() 94 gmm::mult(A,gmm::transposed(A), X); in aat_product() 98 gmm::mult(A,B,X); in matrix_vector_product() 102 gmm::mult(gmm::transposed(A),B,X); in atv_product()
|
/external/e2fsprogs/ext2ed/ |
D | inode_com.c | 29 long inode_num,mult=1; in type_ext2_inode___prev() local 36 mult=atol (buffer); in type_ext2_inode___prev() 51 if (entry_num-mult+1>0) { in type_ext2_inode___prev() 52 device_offset-=sizeof (struct ext2_inode)*mult; in type_ext2_inode___prev() 53 entry_num-=mult; in type_ext2_inode___prev() 76 long inode_num,mult=1; in type_ext2_inode___next() local 83 mult=atol (buffer); in type_ext2_inode___next() 99 if (entry_num+mult-1<last_entry) { in type_ext2_inode___next() 100 device_offset+=sizeof (struct ext2_inode)*mult; in type_ext2_inode___next() 101 entry_num+=mult; in type_ext2_inode___next()
|
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/ |
D | t015calc.g | 18 expression returns [result]: r=mult ( 19 '+' r2=mult {r += r2;} 20 | '-' r2=mult {r -= r2;} 23 mult returns [result]: r=log (
|
/external/antlr/antlr-3.4/runtime/Python/tests/ |
D | t015calc.g | 21 expression returns [result]: r=mult ( 22 '+' r2=mult {r += r2} 23 | '-' r2=mult {r -= r2} 26 mult returns [result]: r=log (
|
/external/llvm/test/CodeGen/Mips/llvm-ir/ |
D | mul.ll | 30 ; M2: mult $4, $5 43 ; M4: mult $4, $5 64 ; M2: mult $4, $5 79 ; M4: mult $4, $5 101 ; M2: mult $4, $5 116 ; M4: mult $4, $5 138 ; M2: mult $4, $5 154 ; M2: mult $4, $7 156 ; M2: mult $5, $6
|
/external/icu/icu4j/perf-tests/perldriver/ |
D | Output.pm | 23 my $mult = 1e9; #use nanoseconds 62 print HTML formatNumber(2, $mult, $mean); 66 if((($error*$mult < 10)&&!$percent) || (($error<10)&&$percent)) { 75 print HTML formatNumber(2, $mult, $error); 305 …d class=\"sepvalue\">".formatNumber(4, $mult, $ds->getMean)."</td><td class=\"sepvalue\">".formatN…
|
D | Format.pm | 57 my $mult = shift; 61 my $result = formatSigDig($sigdig, $a*$mult); 63 my $d = formatSigDig($sigdig, $delta*$mult);
|
/external/icu/icu4c/source/test/perf/perldriver/ |
D | Output.pm | 23 my $mult = 1e9; #use nanoseconds 62 print HTML formatNumber(2, $mult, $mean); 66 if((($error*$mult < 10)&&!$percent) || (($error<10)&&$percent)) { 75 print HTML formatNumber(2, $mult, $error); 305 …d class=\"sepvalue\">".formatNumber(4, $mult, $ds->getMean)."</td><td class=\"sepvalue\">".formatN…
|
D | Format.pm | 57 my $mult = shift; 61 my $result = formatSigDig($sigdig, $a*$mult); 63 my $d = formatSigDig($sigdig, $delta*$mult);
|
/external/opencv3/3rdparty/libwebp/dsp/ |
D | upsampling.c | 262 const uint32_t mult = MULTIPLIER(a); in ApplyAlphaMultiply() local 263 rgb[4 * i + 0] = PREMULTIPLY(rgb[4 * i + 0], mult); in ApplyAlphaMultiply() 264 rgb[4 * i + 1] = PREMULTIPLY(rgb[4 * i + 1], mult); in ApplyAlphaMultiply() 265 rgb[4 * i + 2] = PREMULTIPLY(rgb[4 * i + 2], mult); in ApplyAlphaMultiply() 296 const uint32_t mult = MULTIPLIER(a); in ApplyAlphaMultiply4444() local 297 const uint8_t r = multiply(dither_hi(rgba4444[2 * i + 0]), mult); in ApplyAlphaMultiply4444() 298 const uint8_t g = multiply(dither_lo(rgba4444[2 * i + 0]), mult); in ApplyAlphaMultiply4444() 299 const uint8_t b = multiply(dither_hi(rgba4444[2 * i + 1]), mult); in ApplyAlphaMultiply4444()
|
/external/fio/ |
D | parse.c | 134 unsigned long long mult = 1; in get_mult_time() local 157 mult = 1; in get_mult_time() 159 mult = 1000; in get_mult_time() 161 mult = 1000000; in get_mult_time() 163 mult = 60 * 1000000UL; in get_mult_time() 165 mult = 60 * 60 * 1000000UL; in get_mult_time() 167 mult = 24 * 60 * 60 * 1000000UL; in get_mult_time() 170 return mult; in get_mult_time() 191 unsigned int i, pow = 0, mult = kb_base; in __get_mult_bytes() local 209 mult = 1000; in __get_mult_bytes() [all …]
|
/external/gptfdisk/ |
D | support.cc | 133 uint64_t response = def, bytesPerUnit = 1, mult = 1, divide = 1; in IeeeToInt() local 172 mult = bytesPerUnit / sSize; in IeeeToInt() 177 if (mult > 1) { in IeeeToInt() 178 if (response > (UINT64_MAX / mult)) in IeeeToInt() 181 response *= mult; in IeeeToInt()
|
/external/speex/libspeex/ |
D | lsp.c | 410 spx_word32_t mult, a; in lsp_to_lpc() local 486 mult = MULT16_32_Q14(freqn[2*i],xp[i][j+1]); in lsp_to_lpc() 487 xp[i+1][j+2] = ADD32(SUB32(xp[i][j+2], mult), xp[i][j]); in lsp_to_lpc() 488 mult = MULT16_32_Q14(freqn[2*i+1],xq[i][j+1]); in lsp_to_lpc() 489 xq[i+1][j+2] = ADD32(SUB32(xq[i][j+2], mult), xq[i][j]); in lsp_to_lpc() 494 mult = MULT16_32_Q14(freqn[2*i],xp[i][j+1]); in lsp_to_lpc() 495 xp[i+1][j+2] = SUB32(xp[i][j], mult); in lsp_to_lpc() 496 mult = MULT16_32_Q14(freqn[2*i+1],xq[i][j+1]); in lsp_to_lpc() 497 xq[i+1][j+2] = SUB32(xq[i][j], mult); in lsp_to_lpc()
|
/external/libdrm/tests/ |
D | dristat.c | 158 static void printhuman(unsigned long value, const char *name, int mult) in printhuman() argument 169 f = (double)value / (double)mult; in printhuman() 176 f = (double)value / (double)mult; in printhuman() 183 f = (double)value / (double)mult; in printhuman() 227 printhuman(rate, curr.data[j].mult_names, curr.data[j].mult); in getstats()
|
/external/e2fsprogs/lib/ext2fs/ |
D | res_gdt.c | 30 int mult = 3; in list_backups() local 42 mult = 5; in list_backups() 46 mult = 7; in list_backups() 50 *min *= mult; in list_backups()
|
/external/webrtc/webrtc/modules/audio_processing/aecm/ |
D | echo_control_mobile.c | 290 nBlocks10ms = nFrames / aecm->aecmCore->mult; in WebRtcAecm_Process() 341 … * aecm->aecmCore->mult) / (aecm->counter * 40), BUF_SIZE_FRAMES); in WebRtcAecm_Process() 350 * aecm->aecmCore->mult) / 40, BUF_SIZE_FRAMES); in WebRtcAecm_Process() 428 (kSampMsNb * aecm->aecmCore->mult); in WebRtcAecm_Process() 581 nSampSndCard = msInSndCardBuf * kSampMsNb * aecm->aecmCore->mult; in WebRtcAecm_EstBufDelay() 630 nSampSndCard = aecm->msInSndCardBuf * kSampMsNb * aecm->aecmCore->mult; in WebRtcAecm_DelayComp() 633 if (delayNew > FAR_BUF_LEN - FRAME_LEN * aecm->aecmCore->mult) in WebRtcAecm_DelayComp()
|
/external/llvm/test/CodeGen/Mips/ |
D | mulll.ll | 15 ; 16: mult ${{[0-9]+}}, ${{[0-9]+}} 17 ; 16: mult ${{[0-9]+}}, ${{[0-9]+}}
|
D | mulull.ll | 16 ; 16: mult ${{[0-9]+}}, ${{[0-9]+}} 18 ; 16: mult ${{[0-9]+}}, ${{[0-9]+}}
|