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

1 2 3 4

  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
div-err.asm 0 div byte si
2 div word si label
3 div dword si label
4 div byte esi label
5 div word esi label
6 div dword esi label
1 div byte si label
  /bionic/libc/upstream-netbsd/lib/libc/stdlib/
div.c 1 /* $NetBSD: div.c,v 1.8 2012/06/25 22:32:45 abs Exp $ */
38 static char sccsid[] = "@(#)div.c 8.1 (Berkeley) 6/4/93";
40 __RCSID("$NetBSD: div.c,v 1.8 2012/06/25 22:32:45 abs Exp $");
47 div(int num, int denom) function
  /external/chromium_org/v8/test/mjsunit/regress/
regress-2132.js 40 function div(x, y) { function
44 div(4, 2);
45 div(4, 2);
46 %OptimizeFunctionOnNextCall(div);
47 assertEquals(1, div(5, 3));
48 assertOptimized(div);
regress-1278.js 45 function div(x, y) { function
65 assertEquals(0, div(0, 1));
66 assertEquals(-0, div(0, -1));
67 assertEquals(-0, div(-0, 1));
68 assertEquals(0, div(-0, -1));
  /external/clang/test/SemaCXX/
warn-div-or-rem-by-zero.cpp 5 void div() { function
  /external/chromium_org/v8/test/mjsunit/
div-mul-minus-one.js 30 function div(g) { function
35 var expected_MinInt = div(kMinInt);
36 var expected_minus_zero = div(0);
37 %OptimizeFunctionOnNextCall(div);
38 assertEquals(expected_MinInt, div(kMinInt));
39 assertEquals(expected_minus_zero , div(0));
math-floor-of-div-nosudiv.js 31 function div(a, b) { function
54 assertEquals(Math.floor(div(k, 1)), Math.floor(k / 1));
55 assertEquals(Math.floor(div(k, -1)), Math.floor(k / -1));
56 assertEquals(Math.floor(div(k, 2)), Math.floor(k / 2));
57 assertEquals(Math.floor(div(k, -2)), Math.floor(k / -2));
58 assertEquals(Math.floor(div(k, 3)), Math.floor(k / 3));
59 assertEquals(Math.floor(div(k, -3)), Math.floor(k / -3));
60 assertEquals(Math.floor(div(k, 4)), Math.floor(k / 4));
61 assertEquals(Math.floor(div(k, -4)), Math.floor(k / -4));
62 assertEquals(Math.floor(div(k, 5)), Math.floor(k / 5))
    [all...]
math-floor-of-div.js 31 function div(a, b) { function
54 assertEquals(Math.floor(div(k, 1)), Math.floor(k / 1));
55 assertEquals(Math.floor(div(k, -1)), Math.floor(k / -1));
56 assertEquals(Math.floor(div(k, 2)), Math.floor(k / 2));
57 assertEquals(Math.floor(div(k, -2)), Math.floor(k / -2));
58 assertEquals(Math.floor(div(k, 3)), Math.floor(k / 3));
59 assertEquals(Math.floor(div(k, -3)), Math.floor(k / -3));
60 assertEquals(Math.floor(div(k, 4)), Math.floor(k / 4));
61 assertEquals(Math.floor(div(k, -4)), Math.floor(k / -4));
62 assertEquals(Math.floor(div(k, 5)), Math.floor(k / 5))
    [all...]
  /external/chromium_org/third_party/libyuv/unit_test/
math_test.cc 25 int div[1280]; local
70 MemRandomize(reinterpret_cast<uint8*>(&div[0]), sizeof(div));
72 if (div[j] == 0) {
73 div[j] = 1280;
79 result_opt[j] = libyuv::FixedDiv(num[j], div[j]);
83 result_c[j] = libyuv::FixedDiv_C(num[j], div[j]);
90 int div[1280]; local
96 MemRandomize(reinterpret_cast<uint8*>(&div[0]), sizeof(div));
125 int div[1280]; local
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkUnPreMultiply.cpp 83 uint32_t div = roundf(j * 255.0f / i); local
84 int diff = SkAbs32(test - div);
SkFloat.h 46 void div(const SkFloat& a) { fPacked = Div(fPacked, a.fPacked); } function in class:SkFloat
47 void setDiv(const SkFloat& a, const SkFloat& b) { fPacked = Div(a.fPacked, b.fPacked); }
99 static int32_t Div(int32_t, int32_t);
  /external/chromium_org/third_party/WebKit/Source/core/editing/
InputMethodControllerTest.cpp 95 Element* div = insertHTMLElement( local
96 "<div id='sample' contenteditable='true'>hello world</div>", "sample");
106 PlainTextRange plainTextRange(PlainTextRange::create(*div, *range.get()));
113 // Creates a div with one leading new line char. The new line char is hidden
115 Element* div = insertHTMLElement( local
116 "<div id='sample' contenteditable='true'>\nhello world</div>", "sample");
126 PlainTextRange plainTextRange(PlainTextRange::create(*div, *range.get()));
133 insertHTMLElement("<div id='sample' contenteditable='true'>test</div>", "sample")
    [all...]
  /external/chromium_org/third_party/webrtc/common_audio/signal_processing/
division_operations.c 66 int32_t div = 0; local
85 div <<= 1;
90 div++;
95 div = -div;
97 return div;
  /external/chromium_org/third_party/skia/samplecode/
SampleAvoid.cpp 84 int div = 3; local
85 SkRect rr = { 0, 0, r.width()/div, r.height()/div };
  /external/libgsm/src/
add.c 201 * of the div(num, denum) arithmetic operation. Compute div
210 word div = 0; local
225 div <<= 1;
230 div++;
234 return div;
  /external/bluetooth/bluedroid/bta/av/
bta_av_sbc.c 45 UINT8 div; member in struct:__anon5090
78 bta_av_sbc_ups_cb.div = 1;
83 bta_av_sbc_ups_cb.div = 2;
92 bta_av_sbc_ups_cb.div = 2;
97 bta_av_sbc_ups_cb.div = 4;
136 src = src_samples/bta_av_sbc_ups_cb.div;
137 dst = dst_samples/bta_av_sbc_ups_cb.div;
  /external/bluetooth/bluedroid/btif/include/
btif_dm.h 80 UINT16 div; member in struct:__anon5630
88 UINT16 div; member in struct:__anon5631
109 btif_dm_ble_lenc_keys_t lenc_key; /* local encryption reproduction keys LTK = = d1(ER,DIV,0)*/
111 btif_dm_ble_lcsrk_keys_t lcsrk_key; /* local device CSRK = d1(ER,DIV,1)*/
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/app_launcher/
popup.js 31 var div = document.createElement('div');
32 div.className = 'app' + (selected ? ' app_selected' : '');
34 div.onclick = function() {
40 div.appendChild(img);
45 div.appendChild(title);
47 appsDiv.appendChild(div);
89 // list of apps shown, we set an explicit width on the outermost div.
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLViewSourceDocument.cpp 81 // Create a line gutter div that can be used to make sure the gutter extends down the height of the whole
83 RefPtrWillBeRawPtr<HTMLDivElement> div = HTMLDivElement::create(*this); local
84 div->setAttribute(classAttr, "line-gutter-backdrop");
85 body->parserAppendChild(div);
  /external/chromium_org/third_party/mesa/src/src/gallium/tests/unit/
translate_test.c 38 double div = 1; local
43 div *= rm;
44 v += (double)rand() / div;
  /external/chromium_org/third_party/mesa/src/src/glsl/
loop_controls.cpp 96 ir_expression *const div = local
99 ir_constant *iter = div->constant_expression_value();
  /external/guava/guava/src/com/google/common/math/
IntMath.java 254 int div = p / q; local
255 int rem = p - q * div; // equal to p % q
258 return div;
294 increment = (mode == HALF_UP || (mode == HALF_EVEN & (div & 1) != 0));
302 return increment ? div + signum : div;
  /external/mesa3d/src/gallium/tests/unit/
translate_test.c 38 double div = 1; local
43 div *= rm;
44 v += (double)rand() / div;
  /external/mesa3d/src/glsl/
loop_controls.cpp 96 ir_expression *const div = local
99 ir_constant *iter = div->constant_expression_value();
  /development/perftests/panorama/feature_stab/db_vlvm/
db_utilities_camera.h 106 double temp,div; local
111 div=1.0/temp;
112 xd[0]=xs[0]*div;xd[1]=xs[1]*div;

Completed in 427 milliseconds

1 2 3 4