HomeSort by relevance Sort by last modified time
    Searched defs:divisor (Results 1 - 25 of 271) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/syslinux/com32/lib/syslinux/
serial.c 43 uint16_t iobase, divisor, flowctl; local
45 firmware->get_serial_console_info(&iobase, &divisor, &flowctl);
48 __syslinux_serial_console_info.divisor = divisor;
  /external/caliper/caliper/src/main/java/com/google/caliper/util/
LinearTranslation.java 40 double divisor = in1 - in2; local
41 this.m = (out1 - out2) / divisor;
42 this.b = (in1 * out2 - in2 * out1) / divisor;
  /external/tensorflow/tensorflow/compiler/tf2xla/kernels/
reduction_ops.cc 113 auto divisor = XlaHelpers::IntegerLiteral(builder, input_type(0), variable
115 return builder->Div(reduce_output, divisor);
  /external/compiler-rt/test/builtins/Unit/
divdc3_test.c 56 double _Complex divisor; local
60 __real__ divisor = c; local
61 __imag__ divisor = d; local
66 switch (classify(divisor))
91 switch (classify(divisor))
122 switch (classify(divisor))
147 switch (classify(divisor))
172 switch (classify(divisor))
divsc3_test.c 56 float _Complex divisor; local
60 __real__ divisor = c; local
61 __imag__ divisor = d; local
66 switch (classify(divisor))
91 switch (classify(divisor))
122 switch (classify(divisor))
147 switch (classify(divisor))
172 switch (classify(divisor))
divtc3_test.c 58 long double _Complex divisor; local
62 __real__ divisor = c; local
63 __imag__ divisor = d; local
68 switch (classify(divisor))
93 switch (classify(divisor))
124 switch (classify(divisor))
149 switch (classify(divisor))
174 switch (classify(divisor))
divxc3_test.c 58 long double _Complex divisor; local
62 __real__ divisor = c; local
63 __imag__ divisor = d; local
68 switch (classify(divisor))
93 switch (classify(divisor))
124 switch (classify(divisor))
149 switch (classify(divisor))
174 switch (classify(divisor))
muldc3_test.c 56 double _Complex divisor; local
60 __real__ divisor = c; local
61 __imag__ divisor = d; local
66 switch (classify(divisor))
91 switch (classify(divisor))
118 switch (classify(divisor))
143 switch (classify(divisor))
168 switch (classify(divisor))
mulsc3_test.c 56 float _Complex divisor; local
60 __real__ divisor = c; local
61 __imag__ divisor = d; local
66 switch (classify(divisor))
91 switch (classify(divisor))
122 switch (classify(divisor))
147 switch (classify(divisor))
172 switch (classify(divisor))
multc3_test.c 59 long double _Complex divisor; local
63 __real__ divisor = c; local
64 __imag__ divisor = d; local
69 switch (classify(divisor))
94 switch (classify(divisor))
121 switch (classify(divisor))
146 switch (classify(divisor))
171 switch (classify(divisor))
mulxc3_test.c 58 long double _Complex divisor; local
62 __real__ divisor = c; local
63 __imag__ divisor = d; local
68 switch (classify(divisor))
93 switch (classify(divisor))
120 switch (classify(divisor))
145 switch (classify(divisor))
170 switch (classify(divisor))
  /external/eigen/test/
rand.cpp 47 int divisor = int((range+1)/bins); local
52 hist( int((int64(r)-int64(x))/divisor) )++;
  /external/tensorflow/tensorflow/compiler/xla/
index_util.cc 112 int64 divisor = 1; local
115 (linear_index / divisor) % shape.dimensions(dimension);
116 divisor *= shape.dimensions(dimension);
  /prebuilts/go/darwin-x86/src/math/big/
natconv.go 361 func (q nat) convertWords(s []byte, b Word, ndigits int, bb Word, table []divisor) {
368 // find divisor close to sqrt(q) if possible, but in any case < q
434 type divisor struct { type
435 bbb nat // divisor
436 nbits int // bit length of divisor (discounting leading zeros) ~= log2(bbb)
437 ndigits int // digit length of divisor in terms of output base digits
442 table [64]divisor // cached divisors for base 10
451 func divisors(m int, b Word, ndigits int, bb Word) []divisor {
464 var table []divisor // for b == 10, table overlaps with cacheBase10.table
469 table = make([]divisor, k) // create new table for this conversio
    [all...]
  /prebuilts/go/linux-x86/src/math/big/
natconv.go 361 func (q nat) convertWords(s []byte, b Word, ndigits int, bb Word, table []divisor) {
368 // find divisor close to sqrt(q) if possible, but in any case < q
434 type divisor struct { type
435 bbb nat // divisor
436 nbits int // bit length of divisor (discounting leading zeros) ~= log2(bbb)
437 ndigits int // digit length of divisor in terms of output base digits
442 table [64]divisor // cached divisors for base 10
451 func divisors(m int, b Word, ndigits int, bb Word) []divisor {
464 var table []divisor // for b == 10, table overlaps with cacheBase10.table
469 table = make([]divisor, k) // create new table for this conversio
    [all...]
  /system/bt/audio_a2dp_hw/test/
audio_a2dp_hw_test.cc 133 // Compute the divisor and adjust the buffer size
134 const size_t divisor = (AUDIO_STREAM_OUTPUT_BUFFER_PERIODS * 16 * local
137 const size_t remainder = expected_buffer_size % divisor;
139 expected_buffer_size += divisor - remainder;
  /system/bt/audio_hearing_aid_hw/test/
audio_hearing_aid_hw_test.cc 133 // Compute the divisor and adjust the buffer size
134 const size_t divisor = (AUDIO_STREAM_OUTPUT_BUFFER_PERIODS * 16 * local
137 const size_t remainder = expected_buffer_size % divisor;
139 expected_buffer_size += divisor - remainder;
  /system/core/toolbox/upstream-netbsd/lib/libc/gen/
humanize_number.c 52 int64_t divisor, max, post = 1; local
61 divisor = 1000;
71 divisor = 1024;
133 bytes /= divisor;
141 bytes /= divisor;
  /external/pdfium/core/fpdfapi/page/
cpdf_function.cpp 133 float divisor = xmax - xmin; local
134 return ymin + (divisor ? (x - xmin) * (ymax - ymin) / divisor : 0);
  /external/syslinux/com32/libupload/
serial.c 32 unsigned int divisor; local
58 divisor = 1; /* Default speed = 115200 bps */
66 divisor = sci->divisor;
73 divisor = 115200/strtoul(argv[1], NULL, 0);
83 outb(0x83, port + LCR); /* Enable divisor access */
86 outb(divisor, port + DLL);
87 outb(divisor >> 8, port + DLM);
102 if (dll != (uint8_t)divisor ||
103 dlm != (uint8_t)(divisor >> 8) |
    [all...]
  /system/core/storaged/
storaged_diskstats.cpp 161 unsigned long long divisor = stats->read_ticks * stats->io_ticks; local
164 (divisor >> 1)) / divisor;
167 (divisor >> 1)) / divisor;
170 unsigned long long divisor = stats->write_ticks * stats->io_ticks; local
173 (divisor >> 1)) / divisor;
176 (divisor >> 1)) / divisor;
    [all...]
  /art/libartbase/base/
time_utils.cc 80 uint64_t divisor = GetNsToTimeUnitDivisor(time_unit); local
95 const uint64_t whole_part = nano_duration / divisor;
96 uint64_t fractional_part = nano_duration % divisor;
106 while (avail_digits > 1 && fractional_part * multiplier < divisor) {
  /external/deqp/modules/gles31/functional/
es31fVertexAttributeBindingStateQueryTests.cpp 319 const int divisor = rnd.getInt(0, 2047); local
321 gl.glVertexBindingDivisor(binding, divisor);
324 verifyStateIndexedInteger(result, gl, GL_VERTEX_BINDING_DIVISOR, binding, divisor, m_verifier);
  /external/skia/src/core/
SkMaskBlurFilter.cpp 111 // If the window is odd then the divisor is just window ^ 3 otherwise,
115 auto divisor = (window & 1) == 1 ? window3 : window3 + window2; local
117 fWeight = static_cast<uint64_t>(round(1.0 / divisor * (1ull << 32)));
    [all...]
  /external/skqp/src/core/
SkMaskBlurFilter.cpp 111 // If the window is odd then the divisor is just window ^ 3 otherwise,
115 auto divisor = (window & 1) == 1 ? window3 : window3 + window2; local
117 fWeight = static_cast<uint64_t>(round(1.0 / divisor * (1ull << 32)));
    [all...]

Completed in 723 milliseconds

1 2 3 4 5 6 7 8 91011