HomeSort by relevance Sort by last modified time
    Searched refs:div (Results 151 - 175 of 1090) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/libnl/doc/
libnl.css 3 body, table, div, p, dl {
46 div.multicol {
85 div.qindex, div.navtab{
91 div.qindex, div.navpath {
96 div.navtab {
165 div.fragment {
172 div.line {
199 div.line.glow
    [all...]
  /art/runtime/interpreter/mterp/x86/
bindiv.S 3 * 32-bit binary div/rem operation. Handles special case of op0=minint and
6 /* div/rem vAA, vBB, vCC */
33 div %cl # 8-bit divide otherwise.
44 div %cx
  /device/google/contexthub/firmware/os/platform/stm32/
usart.c 96 uint32_t baseClk, div, intPart, fraPart; local
119 div = (baseClk * 25) / (baud * 2);
120 intPart = div / 100;
121 fraPart = div % 100;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/Ia32/
DivU64x32.asm 38 div ecx
41 div ecx
DivU64x32Remainder.asm 39 div ecx ; eax <- quotient[32..63], edx <- remainder
42 div ecx ; eax <- quotient[0..31]
ModU64x32.asm 38 div ecx
40 div ecx
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/Ia32/
DivU64x32.asm 38 div ecx
41 div ecx
DivU64x32Remainder.asm 39 div ecx ; eax <- quotient[32..63], edx <- remainder
42 div ecx ; eax <- quotient[0..31]
ModU64x32.asm 38 div ecx
40 div ecx
  /device/linaro/bootloader/edk2/StdLib/LibC/StdLib/
Xdiv.c 2 The div, ldiv, and lldiv, functions compute numer / denom and
5 The div, ldiv, and lldiv functions return a structure of type div_t, ldiv_t,
32 div(int num, int denom) function
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/
HTMLElement.java 168 * Creates a 'div' element.
172 * @return 'div' element
176 public HTMLElement div(final String classattr) throws IOException { method in class:HTMLElement
177 final HTMLElement div = element("div"); local
178 div.classattr(classattr);
179 return div;
  /prebuilts/go/darwin-x86/doc/articles/wiki/
notemplate.go 35 fmt.Fprintf(w, "<h1>%s</h1><div>%s</div>", p.Title, p.Body)
  /prebuilts/go/linux-x86/doc/articles/wiki/
notemplate.go 35 fmt.Fprintf(w, "<h1>%s</h1><div>%s</div>", p.Title, p.Body)
  /prebuilts/tools/linux-x86_64/kythe/web/ui/css/
style.css 18 html, body, #kythe, #container, #container div {
75 #xrefs div {
  /system/tpm/trunks/ftdi/
support.h 31 uint32_t div2freq(uint32_t system_clock, uint16_t div);
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/dlx/
rtype.d 17 1c: 01 ae 78 07 div r15,r13,r14
23 34: 03 be e0 07 div r28,r29,r30
  /build/make/tools/droiddoc/templates-ndk/assets/
android-developer-docs.css 11 html,body,div,h1,h2,h3,h4,h5,h6,p,img,
379 div.indent {
556 #leftSearchControl div {
576 #leftSearchControl .gsc-resultsHeader div.gsc-results-selector {
584 #leftSearchControl div.gs-visibleUrl-long {
589 .gsc-webResult div.gs-visibleUrl-short,
595 .gsc-cursor-box .gsc-cursor div.gsc-cursor-page,
793 div#list-clip {
801 div#app-list {
1019 #videos div {
    [all...]
  /build/make/tools/droiddoc/templates-sac/assets/
android-developer-docs.css 11 html,body,div,h1,h2,h3,h4,h5,h6,p,img,
379 div.indent {
556 #leftSearchControl div {
576 #leftSearchControl .gsc-resultsHeader div.gsc-results-selector {
584 #leftSearchControl div.gs-visibleUrl-long {
589 .gsc-webResult div.gs-visibleUrl-short,
595 .gsc-cursor-box .gsc-cursor div.gsc-cursor-page,
793 div#list-clip {
801 div#app-list {
1019 #videos div {
    [all...]
  /external/doclava/res/assets/templates-sdk/assets/
android-developer-docs.css 11 html,body,div,h1,h2,h3,h4,h5,h6,p,img,
379 div.indent {
556 #leftSearchControl div {
576 #leftSearchControl .gsc-resultsHeader div.gsc-results-selector {
584 #leftSearchControl div.gs-visibleUrl-long {
589 .gsc-webResult div.gs-visibleUrl-short,
595 .gsc-cursor-box .gsc-cursor div.gsc-cursor-page,
793 div#list-clip {
801 div#app-list {
1019 #videos div {
    [all...]
  /art/test/445-checker-licm/src/
Main.java 19 /// CHECK-START: int Main.div() licm (before)
20 /// CHECK-DAG: Div loop:{{B\d+}}
22 /// CHECK-START: int Main.div() licm (after)
23 /// CHECK-NOT: Div loop:{{B\d+}}
25 /// CHECK-START: int Main.div() licm (after)
26 /// CHECK-DAG: Div loop:none
28 public static int div() { method in class:Main
37 /// CHECK-DAG: Div loop:{{B\d+}}
40 /// CHECK-NOT: Div loop:{{B\d+}}
43 /// CHECK-DAG: Div loop:non
    [all...]
  /build/make/tools/droiddoc/templates-pdk/assets/
carousel.js 87 var div = document.createElement("div");
88 var imgDiv = document.createElement("div");
89 var descDiv = document.createElement("div");
91 div.setAttribute("id", x);
92 div.setAttribute("style", "display:none");
109 $(div).append(imgDiv);
110 $(div).append(descDiv);
112 $("#carouselMain").append(div);
120 // (1) div containing slides, (2) a "clip" div to hide the scrolle
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/Ia32/
DivU64x32.c 57 div ecx ; Dividend Divisor Quoitent...Remainder
63 div ecx ; Leave the REMAINDER in EDX as High 32-bit of new dividend
  /external/tremolo/Tremolo/
res012.c 167 ogg_uint32_t div=partword[j][i+k]; local
168 partword[j][i+k]= (div == 0) ? 0 : (temp / div);
169 temp-=partword[j][i+k]*div;
240 ogg_uint32_t div=partword[i+k]; local
241 partword[i+k]= (div == 0) ? 0 : (temp / div);
242 temp-=partword[i+k]*div;
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug366.go 7 // Issue 2206. Incorrect sign extension of div arguments.
issue10486.go 8 // Check stack walk during div by zero fault,

Completed in 441 milliseconds

1 2 3 4 5 67 8 91011>>