Searched refs:divisor (Results 51 - 75 of 251) sorted by relevance

1234567891011

/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/
H A DVertexDataManager.cpp44 // A vertex attribute with a positive divisor loads one instanced vertex for every set of
46 if (instanceDrawCount > 0 && attrib.divisor > 0)
48 return instanceDrawCount / attrib.divisor;
272 unsigned int startOffset = (instances == 0 || attrib.divisor == 0) ? start * outputElementSize : 0;
299 translated->divisor = attrib.divisor;
338 translated->divisor = 0;
/external/chromium_org/v8/src/
H A Dfixed-dtoa.cc318 uint64_t divisor = kFive17; local
335 quotient = static_cast<uint32_t>(dividend / divisor);
336 remainder = (dividend % divisor) << divisor_power;
338 divisor <<= divisor_power - exponent;
339 quotient = static_cast<uint32_t>(dividend / divisor);
340 remainder = (dividend % divisor) << exponent;
/external/chromium_org/chrome/common/variations/
H A Duniformity_field_trials.cc36 // the trial name. |num_trial_groups| must be a divisor of 100 (e.g. 5, 20)
43 // changes is the probability divisor.
46 const base::FieldTrial::Probability divisor = num_trial_groups; local
57 trial_name, divisor, kDefaultGroupName, 2015, 1, 1,
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGFEConvolveMatrixElement.h43 SVGAnimatedNumber* divisor() { return m_divisor.get(); } function in class:blink::FINAL
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DVertexArray.h42 void setVertexAttribDivisor(GLuint index, GLuint divisor);
/external/chromium_org/third_party/libva/va/x11/
H A Dva_dri2.h71 VA_DRI2SwapBuffers(Display *dpy, XID drawable, CARD64 target_msc, CARD64 divisor,
/external/chromium_org/third_party/skia/tools/skpdiff/
H A Ddiff_viewer.js47 var divisor = 1;
50 while ((image.width / divisor) > MAX_SWAP_IMG_SIZE) {
51 divisor *= 2;
54 scope.setImgScaleFactor(1 / divisor);
/external/chromium_org/tools/deep_memory_profiler/
H A Daccumulate.py162 divisor = 1
164 divisor = 1024.0
166 divisor = 1024.0 * 1024.0
167 values.append(str(row[label] / divisor))
/external/skia/tools/skpdiff/
H A Ddiff_viewer.js47 var divisor = 1;
50 while ((image.width / divisor) > MAX_SWAP_IMG_SIZE) {
51 divisor *= 2;
54 scope.setImgScaleFactor(1 / divisor);
/external/chromium_org/third_party/libjpeg_turbo/
H A Djcdctmgr.c123 * b = (the number of significant bits in divisor) - 1
125 * f = 2^r / divisor
146 * "input + divisor/2".
152 * dctbl[1] = divisor / 2 (+ 1 if fractional part of f < 0.5)
168 compute_reciprocal (UINT16 divisor, DCTELEM * dtbl) argument
174 b = flss(divisor) - 1;
177 fq = ((UDCTELEM2)1 << r) / divisor;
178 fr = ((UDCTELEM2)1 << r) % divisor;
180 c = divisor / 2; /* for rounding */
182 if (fr == 0) { /* divisor i
[all...]
/external/qemu/android/utils/
H A Dini.c521 int64_t divisor = 0; local
528 divisor = giga;
532 divisor = mega;
536 divisor = kilo;
539 if (divisor) {
540 snprintf(temp, sizeof temp, "%" PRId64 "%c", size/divisor, suffix);
/external/bison/lib/
H A Dhash.c446 size_t divisor = 3; local
447 size_t square = divisor * divisor;
449 while (square < candidate && (candidate % divisor))
451 divisor++;
452 square += 4 * divisor;
453 divisor++;
456 return (candidate % divisor ? true : false);
/external/bluetooth/bluedroid/bta/dm/
H A Dbta_dm_sco.c68 UINT32 divisor; member in struct:__anon551
599 p_cb->divisor = 2;
620 p_cb->divisor = 1;
640 p_cb->divisor = 4;
650 divisor %d", p_cb->can_be_filtered, p_cb->n_channels, p_cb->divisor);
676 APPL_TRACE_DEBUG("bta_pcm_resample : insamples %d", (in_bytes / bta_dm_pcm_cb.divisor));
680 out_sample = (*bta_dm_pcm_cb.filter) (p_src, p_dst, (in_bytes / bta_dm_pcm_cb.divisor),
686 (in_bytes / bta_dm_pcm_cb.divisor), bta_dm_pcm_cb.src_sps);
/external/deqp/modules/gles3/functional/
H A Des3fVertexArrayObjectTests.cpp64 GLint divisor; member in struct:deqp::gles3::Functional::__anon20152::Attribute
90 , divisor (0)
211 << "\tGL_VERTEX_ATTRIB_ARRAY_DIVISOR : " << state.attributes[attribNdx].divisor << "\n"
563 GLU_CHECK_CALL(glVertexAttribDivisor(attribNdx, state.attributes[attribNdx].divisor));
729 << "\tGL_VERTEX_ATTRIB_ARRAY_DIVISOR : " << state.attributes[attribNdx].divisor << "\n"
765 m_spec.state.attributes[attribNdx].divisor = m_random.getInt(0, 1);
772 m_spec.state.attributes[attribNdx].divisor = 0;
783 m_spec.vao.attributes[attribNdx].divisor = m_random.getInt(0, 1);
790 m_spec.vao.attributes[attribNdx].divisor = 0;
1140 GLU_CHECK_CALL(glVertexAttribDivisor(attribNdx, state.attributes[attribNdx].divisor));
[all...]
/external/chromium_org/chrome/browser/prerender/
H A Dprerender_field_trial.cc92 const FieldTrial::Probability divisor = 1000; local
118 release_experiment_match_complete_probability == divisor,
144 dev_experiment_match_complete_probability == divisor,
159 "Prerender", divisor, "PrerenderEnabled",
/external/chromium_org/gpu/command_buffer/client/
H A Dvertex_array_object_manager.h92 void SetAttribDivisor(GLuint index, GLuint divisor);
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
H A DFEConvolveMatrix.h54 float divisor() const;
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
H A DVertexBuffer9.cpp113 if (instances == 0 || attrib.divisor == 0)
199 if (instances == 0 || attrib.divisor == 0)
205 // Round up to divisor, if possible
206 elementCount = rx::UnsignedCeilDivide(static_cast<unsigned int>(instances), attrib.divisor);
/external/iproute2/tc/
H A Dq_sfq.c31 fprintf(stderr, " [ divisor NUMBER ] [ flows NUMBER] [ depth NUMBER ]\n");
75 } else if (strcmp(*argv, "divisor") == 0) {
77 if (get_u32(&opt.v0.divisor, *argv, 0)) {
78 fprintf(stderr, "Illegal \"divisor\"\n");
229 fprintf(f, "flows %u/%u ", qopt->flows, qopt->divisor);
231 fprintf(f, "divisor %u ", qopt->divisor);
H A Df_u32.c39 fprintf(stderr, "or u32 divisor DIVISOR\n");
43 " u{32|16|8} | mark } SAMPLE_ARGS [divisor DIVISOR]\n");
1035 } else if (matches(*argv, "divisor") == 0) {
1036 unsigned divisor; local
1038 if (get_unsigned(&divisor, *argv, 0) ||
1039 divisor == 0 ||
1040 divisor > 0x100 || ((divisor - 1) & divisor)) {
1041 fprintf(stderr, "Illegal \"divisor\"\
1080 unsigned divisor = 0x100; local
[all...]
/external/smack/src/org/xbill/DNS/
H A DLOCRecord.java175 long divisor)
177 sb.append(value / divisor);
178 value %= divisor;
174 renderFixedPoint(StringBuffer sb, NumberFormat formatter, long value, long divisor) argument
/external/chromium_org/third_party/boringssl/src/include/openssl/
H A Dbn.h381 /* BN_div divides |numerator| by |divisor| and places the result in |quotient|
387 const BIGNUM *numerator, const BIGNUM *divisor,
390 /* BN_div_word sets |numerator| = |numerator|/|divisor| and returns the
392 OPENSSL_EXPORT BN_ULONG BN_div_word(BIGNUM *numerator, BN_ULONG divisor);
472 #define BN_mod(rem, numerator, divisor, ctx) \
473 BN_div(NULL, (rem), (numerator), (divisor), (ctx))
476 * |rem| < |divisor| is always true. */
478 const BIGNUM *divisor, BN_CTX *ctx);
/external/qemu/audio/
H A Desdaudio.c94 int divisor; member in struct:__anon29236
99 .divisor = 2,
120 threshold = conf.divisor ? hw->samples / conf.divisor : 0;
329 threshold = conf.divisor ? hw->samples / conf.divisor : 0;
598 .valp = &conf.divisor,
599 .descr = "threshold divisor"
H A Dpaaudio.c67 int divisor; member in struct:__anon29243
73 .divisor = 2,
93 threshold = conf.divisor ? hw->samples / conf.divisor : 0;
188 threshold = conf.divisor ? hw->samples / conf.divisor : 0;
567 .valp = &conf.divisor,
568 .descr = "threshold divisor"
/external/chromium_org/v8/src/ia32/
H A Dlithium-codegen-ia32.cc1104 int32_t divisor = instr->divisor(); local
1114 int32_t mask = divisor < 0 ? -(divisor + 1) : (divisor - 1);
1137 int32_t divisor = instr->divisor(); local
1140 if (divisor == 0) {
1145 __ TruncatingDiv(dividend, Abs(divisor));
1146 __ imul(edx, edx, Abs(divisor));
1219 int32_t divisor = instr->divisor(); local
1257 int32_t divisor = instr->divisor(); local
1288 Register divisor = ToRegister(instr->divisor()); local
1336 int32_t divisor = instr->divisor(); local
1380 int32_t divisor = instr->divisor(); local
1427 Register divisor = ToRegister(instr->divisor()); local
[all...]

Completed in 911 milliseconds

1234567891011