/external/bluetooth/bluedroid/btif/include/ |
btif_dm.h | 69 UINT16 div; member in struct:__anon3335 77 UINT16 div; member in struct:__anon3336 91 btif_dm_ble_lenc_keys_t lenc_key; /* local encryption reproduction keys LTK = = d1(ER,DIV,0)*/ 93 btif_dm_ble_lcsrk_keys_t lcsrk_key; /* local device CSRK = d1(ER,DIV,1)*/
|
/external/chromium/chrome/browser/accessibility/ |
browser_accessibility_win_unittest.cc | 235 WebAccessibility div; local 236 div.id = 2; 237 div.role = WebAccessibility::ROLE_GROUP; 238 div.state = 0; 240 div.children.push_back(text); 242 div.children.push_back(text); 248 root.children.push_back(div); 263 // Notify the BrowserAccessibilityManager that the div node and its children
|
/external/chromium/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/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 | 75 // Create a line gutter div that can be used to make sure the gutter extends down the height of the whole 77 RefPtr<HTMLDivElement> div = HTMLDivElement::create(*this); local 78 div->setAttribute(classAttr, "webkit-line-gutter-backdrop"); 79 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/chromium_org/third_party/skia/src/core/ |
SkFloat.h | 48 void div(const SkFloat& a) { fPacked = Div(fPacked, a.fPacked); } function in class:SkFloat 49 void setDiv(const SkFloat& a, const SkFloat& b) { fPacked = Div(a.fPacked, b.fPacked); } 101 static int32_t Div(int32_t, int32_t);
|
Sk64.cpp | 190 void Sk64::div(int32_t denom, DivOptions option) function in class:Sk64 314 // then we can just call 64/32 div 338 N.div(D.get32(), Sk64::kTrunc_DivOption);
|
/external/grub/stage2/ |
serial.c | 46 unsigned short div; 139 unsigned short div = 0; 152 div = divisor_tab[i].div; 156 if (div == 0) 159 outb (port + UART_DLL, div & 0xFF); 160 outb (port + UART_DLH, div >> 8); 45 unsigned short div; member in struct:divisor 138 unsigned short div = 0; local
|
/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;
|
LongMath.java | 298 long div = p / q; // throws if q == 0 local 299 long rem = p - q * div; // equals p % q 302 return div; 338 increment = (mode == HALF_UP | (mode == HALF_EVEN & (div & 1) != 0)); 346 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();
|
/external/skia/src/core/ |
SkFloat.h | 48 void div(const SkFloat& a) { fPacked = Div(fPacked, a.fPacked); } function in class:SkFloat 49 void setDiv(const SkFloat& a, const SkFloat& b) { fPacked = Div(a.fPacked, b.fPacked); } 101 static int32_t Div(int32_t, int32_t);
|
Sk64.cpp | 190 void Sk64::div(int32_t denom, DivOptions option) function in class:Sk64 314 // then we can just call 64/32 div 338 N.div(D.get32(), Sk64::kTrunc_DivOption);
|
/frameworks/base/cmds/wm/src/com/android/commands/wm/ |
Wm.java | 104 int div = size.indexOf('x'); local 105 if (div <= 0 || div >= (size.length()-1)) { 109 String wstr = size.substring(0, div); 110 String hstr = size.substring(div+1);
|
/external/chromium_org/third_party/skia/src/effects/ |
SkDashPathEffect.cpp | 279 SkScalar div = SkScalarDiv(length, fIntervalLength); local 280 int n = SkScalarFloor(div);
|
/external/jmonkeyengine/engine/src/android/jme3tools/android/ |
Fixed.java | 212 public static int div(int a, int b) { method in class:Fixed 266 return div(sin(n), cos(n)); 291 int n = atan(div(x, abs(y) + 1)); // kludge to prevent ArithmeticException
|
/external/skia/src/effects/ |
SkDashPathEffect.cpp | 279 SkScalar div = SkScalarDiv(length, fIntervalLength); local 280 int n = SkScalarFloor(div);
|
/frameworks/base/services/java/com/android/server/wm/ |
Watermark.java | 157 int div = (dw+mTextWidth)/deltaX; local 158 int rem = (dw+mTextWidth) - (div*deltaX);
|
/packages/apps/Camera/jni/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;
|
/packages/apps/Camera2/jni/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;
|
/packages/apps/LegacyCamera/jni/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;
|
/external/chromium_org/content/browser/accessibility/ |
browser_accessibility_win_unittest.cc | 269 AccessibilityNodeData div; local 270 div.id = 2; 271 div.role = blink::WebAXRoleGroup; 272 div.state = 0; 284 div.child_ids.push_back(3); 285 div.child_ids.push_back(4); 301 manager->UpdateNodesForTesting(div, text3, text4); 304 // Notify the BrowserAccessibilityManager that the div node and its children
|