Searched defs:mult (Results 1 - 25 of 76) sorted by relevance

1234

/external/ltp/lib/
H A Dtst_fs_has_free.c30 unsigned int size, unsigned int mult)
40 if ((uint64_t)sf.f_bavail * sf.f_bsize >= (uint64_t)size * mult)
29 tst_fs_has_free_(void (*cleanup)(void), const char *path, unsigned int size, unsigned int mult) argument
H A Drandom_range.c45 int mult; member in struct:range
54 * min:max[:mult]
56 * any of the values may be blank (ie. min::mult, :max, etc.) and default
62 * which is malloc'd by the routine. The min, max, and mult entries of each
73 * defmult default value to plug in for mult, if missing
75 * can call to parse the min, max, and mult strings. This
135 rp->mult = defmult;
148 * Parse the 'min' field - if it is zero length (:n2[:mult]
185 * Process the 'mult' field - if one was not present
187 * then set the mult fiel
278 random_range(int min, int max, int mult, char **errp) argument
365 random_rangel(long min, long max, long mult, char **errp) argument
451 random_rangell(long long min, long long max, long long mult, char **errp) argument
[all...]
/external/desugar/test/java/com/google/devtools/build/android/desugar/testdata/
H A DLambda.java40 public static Function<Integer, Callable<Long>> mult(int x) { method in class:Lambda
57 public static int lambda$mult$0() {
/external/syslinux/gpxe/src/crypto/
H A Dcrc32.c42 u32 mult; local
48 mult = ( crc & 1 ) ? CRCPOLY : 0;
49 crc = ( crc >> 1 ) ^ mult;
/external/ltp/testcases/kernel/fs/doio/
H A Dbytes_by_prefix.c44 * char mult
56 * Returns -1 if mult is an invalid character, or if the integer portion of
75 char mult, junk; local
80 nconv = sscanf(s, "%f%c%c", &num, &mult, &junk);
89 switch (mult) {
123 char mult, junk; local
128 nconv = sscanf(s, "%f%c%c", &num, &mult, &junk);
137 switch (mult) {
175 char mult, junk; local
180 nconv = sscanf(s, "%lf%c%c", &num, &mult,
[all...]
/external/jemalloc/test/src/
H A Dtimer.c34 uint64_t mult; local
43 mult = 1;
45 mult *= 10;
53 uint64_t round = (i+1 == buflen-1 && ((t0 * mult * 10 / t1) % 10
56 "%"FMTu64, (t0 * mult / t1) % 10 + round);
58 mult *= 10;
/external/ppp/pppd/plugins/pppoatm/
H A Dtext2qos.c27 const char mult[] = "kKmMgGg"; local
45 if (*end && (multiplier = strchr(mult,*end))) {
46 while (multiplier >= mult) {
/external/e2fsprogs/ext2ed/
H A Dinode_com.c30 long inode_num,mult=1; local
37 mult=atol (buffer);
52 if (entry_num-mult+1>0) {
53 device_offset-=sizeof (struct ext2_inode)*mult;
54 entry_num-=mult;
77 long inode_num,mult=1; local
84 mult=atol (buffer);
100 if (entry_num+mult-1<last_entry) {
101 device_offset+=sizeof (struct ext2_inode)*mult;
102 entry_num+=mult;
[all...]
H A Dgeneral_com.c205 long mult=1; local
224 mult=file_system_info.block_size;
234 mult=current_type->length;
248 new_offset=device_offset+atol (new_offset_buffer+1)*mult;
256 new_offset=device_offset-atol (new_offset_buffer+1)*mult;
261 new_offset=atol (new_offset_buffer)*mult;
/external/e2fsprogs/intl/
H A Dplural-exp.h45 mult, /* Multiplication. */ enumerator in enum:expression::operator
/external/e2fsprogs/lib/ext2fs/
H A Dres_gdt.c31 int mult = 3; local
55 mult = 5;
59 mult = 7;
63 *min *= mult;
/external/iptables/extensions/
H A Dlibebt_limit.c54 uint32_t mult = 1; /* Seconds by default. */ local
62 mult = 1;
64 mult = 60;
66 mult = 60*60;
68 mult = 24*60*60;
78 if (r / mult > EBT_LIMIT_SCALE)
81 *val = EBT_LIMIT_SCALE * mult / r;
129 uint32_t mult; member in struct:rates
145 if (period > g_rates[i].mult ||
146 g_rates[i].mult/perio
[all...]
H A Dlibxt_limit.c48 uint32_t mult = 1; /* Seconds by default. */ local
56 mult = 1;
58 mult = 60;
60 mult = 60*60;
62 mult = 24*60*60;
70 *val = XT_LIMIT_SCALE * mult / r;
115 uint32_t mult; member in struct:rates
131 if (period > rates[i].mult
132 || rates[i].mult/period < rates[i].mult
[all...]
/external/ltp/include/
H A Dtst_fs.h54 * @mult: mult should be TST_KB, TST_MB or TST_GB
55 * the required free space is calculated by @size * @mult
58 unsigned int size, unsigned int mult);
166 unsigned int mult)
168 return tst_fs_has_free_(NULL, path, size, mult);
192 unsigned int size, unsigned int mult)
194 return tst_fs_has_free_(cleanup, path, size, mult);
165 tst_fs_has_free(const char *path, unsigned int size, unsigned int mult) argument
191 tst_fs_has_free(void (*cleanup)(void), const char *path, unsigned int size, unsigned int mult) argument
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_pipe_offset.c93 float zoffset, mult; local
95 mult = MAX2(dzdx, dzdy) * offset->scale;
110 zoffset = bias + mult;
112 zoffset = offset->units + mult;
/external/tensorflow/tensorflow/compiler/xla/tests/
H A Dvector_ops_simple_test.cc387 auto mult = builder.Mul(two, max); local
388 auto inner = builder.Map({mult}, add_half, {});
/external/webp/src/dsp/
H A Dalpha_processing_neon.c68 const uint32_t mult = MULTIPLIER(a); local
69 rgb[4 * i + 0] = PREMULTIPLY(rgb[4 * i + 0], mult);
70 rgb[4 * i + 1] = PREMULTIPLY(rgb[4 * i + 1], mult);
71 rgb[4 * i + 2] = PREMULTIPLY(rgb[4 * i + 2], mult);
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
H A DTensorDimensions.h70 const Index mult = (index == n-1) ? 1 : 0; local
71 return array_get<n-1>(dimensions) * mult +
/external/gptfdisk/
H A Dsupport.cc135 uint64_t response = def, bytesPerUnit = 1, mult = 1, divide = 1; local
174 mult = bytesPerUnit / sSize;
179 if (mult > 1) {
180 if (response > (UINT64_MAX / mult))
183 response *= mult;
/external/libcups/cups/
H A Dppd-localize.c630 unsigned mult, /* Multiplier */ local
634 for (mult = 1; *name && mult <= 128; mult ++, name ++)
635 hash += (*name & 255) * mult;
/external/tensorflow/tensorflow/contrib/nccl/kernels/
H A Dnccl_manager_test.cc112 int mult = 1; local
118 test::FillFn<float>(&in_cpu, [mult, value_offset](int index) {
119 return value_offset + (index + 1) * mult;
139 mult *= 10;
/external/tensorflow/tensorflow/core/lib/histogram/
H A Dhistogram.cc180 const double mult = num_ > 0 ? 100.0 / num_ : 0.0; local
189 mult * buckets_[b], // percentage
190 mult * sum); // cum percentage
/external/tensorflow/tensorflow/core/platform/default/
H A Dtest_benchmark.cc69 void AddRange(std::vector<int>* dst, int lo, int hi, int mult) { argument
76 // Now space out the benchmarks in multiples of "mult"
77 for (int32 i = 1; i < kint32max / mult; i *= mult) {
/external/apache-xml/src/main/java/org/apache/xpath/compiler/
H A DCompiler.java146 expr = mult(opPos); break;
391 protected Expression mult(int opPos) throws TransformerException method in class:Compiler
/external/eigen/Eigen/src/Geometry/
H A DAlignedBox.h152 Index mult = 1; local
155 if( mult & corner ) res[d] = m_max[d];
157 mult *= 2;

Completed in 847 milliseconds

1234