/external/clang/test/CodeGen/ |
uint128_t.c | 4 extern uint64_t numer; 13 tmp *= numer;
|
/external/chromium_org/third_party/skia/src/core/ |
SkMath.cpp | 236 if ((numer = (numer << 1) - denom) >= 0) \ 237 result |= 1 << (n - 1); else numer += denom 239 int32_t SkDivBits(int32_t numer, int32_t denom, int shift_bias) { 241 if (numer == 0) { 245 // make numer and denom positive, and sign hold the resulting sign 246 int32_t sign = SkExtractSign(numer ^ denom); 247 numer = SkAbs32(numer); 250 int nbits = SkCLZ(numer) - 1 [all...] |
/external/skia/src/core/ |
SkMath.cpp | 236 if ((numer = (numer << 1) - denom) >= 0) \ 237 result |= 1 << (n - 1); else numer += denom 239 int32_t SkDivBits(int32_t numer, int32_t denom, int shift_bias) { 241 if (numer == 0) { 245 // make numer and denom positive, and sign hold the resulting sign 246 int32_t sign = SkExtractSign(numer ^ denom); 247 numer = SkAbs32(numer); 250 int nbits = SkCLZ(numer) - 1 [all...] |
/bionic/libc/upstream-freebsd/lib/libc/stdlib/ |
imaxdiv.c | 34 imaxdiv(intmax_t numer, intmax_t denom) 38 retval.quot = numer / denom; 39 retval.rem = numer % denom; 40 if (numer >= 0 && retval.rem < 0) {
|
/external/chromium_org/third_party/skia/src/effects/gradients/ |
SkSweepGradient.cpp | 94 // divide numer/denom, with a bias of 6bits. Assumes numer <= denom 96 // Same as (but faster than) SkFixedDiv(numer, denom) >> 10 98 //unsigned div_64(int numer, int denom); 100 static unsigned div_64(int numer, int denom) { 101 SkASSERT(numer <= denom); 102 SkASSERT(numer > 0); 105 int nbits = SkCLZ(numer); 115 numer <<= nbits - 1; 120 if ((numer -= denom) >= 0) [all...] |
/external/skia/src/effects/gradients/ |
SkSweepGradient.cpp | 94 // divide numer/denom, with a bias of 6bits. Assumes numer <= denom 96 // Same as (but faster than) SkFixedDiv(numer, denom) >> 10 98 //unsigned div_64(int numer, int denom); 100 static unsigned div_64(int numer, int denom) { 101 SkASSERT(numer <= denom); 102 SkASSERT(numer > 0); 105 int nbits = SkCLZ(numer); 115 numer <<= nbits - 1; 120 if ((numer -= denom) >= 0) [all...] |
/external/compiler-rt/test/timing/ |
timing.h | 23 conversion = (double) freq * (1e-9 * (double) info.numer / (double) info.denom);
|
/external/chromium_org/third_party/skia/include/core/ |
SkMath.h | 27 int32_t SkDivBits(int32_t numer, int32_t denom, int shift); 177 * Stores numer/denom and numer%denom into div and mod respectively. 180 inline void SkTDivMod(In numer, In denom, Out* div, Out* mod) { 188 const In d = numer/denom; 190 *mod = static_cast<Out>(numer-d*denom); 193 *div = static_cast<Out>(numer/denom); 194 *mod = static_cast<Out>(numer%denom);
|
SkFixed.h | 137 #define SkFixedDiv(numer, denom) SkDivBits(numer, denom, 16) 138 SkFixed SkFixedDivInt(int32_t numer, int32_t denom); 139 SkFixed SkFixedMod(SkFixed numer, SkFixed denom); 146 #define SkFractDiv(numer, denom) SkDivBits(numer, denom, 30)
|
/external/chromium_org/third_party/skia/src/effects/ |
SkEmbossMask.cpp | 112 SkFixed numer = lx * nx + ly * ny + lz_dot_nz; local 116 if (numer > 0) { // preflight when numer/denom will be <= 0 119 SkFixed dot = numer / denom; 122 // can use full numer, but then we need to call SkFixedMul, since 123 // numer is 24 bits, and our table is 12 bits 125 // SkFixed dot = SkFixedMul(numer, gTable[]) >> 8 126 SkFixed dot = (unsigned)(numer >> 4) * gInvSqrtTable[(SkAbs32(nx) >> 1 << 7) | (SkAbs32(ny) >> 1)] >> 20;
|
/external/skia/include/core/ |
SkMath.h | 27 int32_t SkDivBits(int32_t numer, int32_t denom, int shift); 177 * Stores numer/denom and numer%denom into div and mod respectively. 180 inline void SkTDivMod(In numer, In denom, Out* div, Out* mod) { 188 const In d = numer/denom; 190 *mod = static_cast<Out>(numer-d*denom); 193 *div = static_cast<Out>(numer/denom); 194 *mod = static_cast<Out>(numer%denom);
|
SkFixed.h | 137 #define SkFixedDiv(numer, denom) SkDivBits(numer, denom, 16) 138 SkFixed SkFixedDivInt(int32_t numer, int32_t denom); 139 SkFixed SkFixedMod(SkFixed numer, SkFixed denom); 146 #define SkFractDiv(numer, denom) SkDivBits(numer, denom, 30)
|
/external/skia/src/effects/ |
SkEmbossMask.cpp | 112 SkFixed numer = lx * nx + ly * ny + lz_dot_nz; local 116 if (numer > 0) { // preflight when numer/denom will be <= 0 119 SkFixed dot = numer / denom; 122 // can use full numer, but then we need to call SkFixedMul, since 123 // numer is 24 bits, and our table is 12 bits 125 // SkFixed dot = SkFixedMul(numer, gTable[]) >> 8 126 SkFixed dot = (unsigned)(numer >> 4) * gInvSqrtTable[(SkAbs32(nx) >> 1 << 7) | (SkAbs32(ny) >> 1)] >> 20;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/ |
chrono.cpp | 54 // mach_absolute_time() * MachInfo.numer / MachInfo.denom is the number of 55 // nanoseconds since the computer booted up. MachInfo.numer and MachInfo.denom 59 // MachInfo.numer / MachInfo.denom is often 1 on the latest equipment. Specialize 77 return static_cast<double>(MachInfo.numer) / MachInfo.denom; 96 if (MachInfo.numer == MachInfo.denom)
|
/external/skia/tests/ |
MathTest.cpp | 529 SkFixed numer = rand.nextS(); local 531 SkFixed result = SkFixedDiv(numer, denom); 532 SkLONGLONG check = ((SkLONGLONG)numer << 16) / denom; 534 (void)SkCLZ(numer); 545 result = SkFractDiv(numer, denom); 546 check = ((SkLONGLONG)numer << 30) / denom; 557 numer = numer << 8 >> 8; 560 result = SkFixedMul(numer, denom); 561 SkFixed r2 = symmetric_fixmul(numer, denom) 691 T numer; member in struct:__anon26189 705 const T numer = kEdgeCases[i].numer; local 715 const T numer = (T)rand.nextS(); local [all...] |
/frameworks/base/services/common_time/ |
common_clock.cpp | 48 uint64_t numer = kCommonFreq; 51 LinearTransform::reduce(&numer, &denom); 52 if ((numer > UINT32_MAX) || (denom > UINT32_MAX)) { 59 static_cast<uint32_t>(numer);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
cstdlib | 67 div_t div( int numer, int denom); 68 ldiv_t div( long numer, long denom); 69 lldiv_t div(long long numer, long long denom); // C++0X 70 ldiv_t ldiv( long numer, long denom); 71 lldiv_t lldiv(long long numer, long long denom); // C99
|
/packages/apps/InCallUI/res/values-pl/ |
strings.xml | 23 <string name="private_num" msgid="6713286113000232309">"Numer prywatny"</string> 29 <string name="callFailed_number_unreachable" msgid="7632566442515734778">"Numer nieosi?galny"</string> 38 <string name="callFailed_fdn_only" msgid="2850204579765430641">"Po??czenia s? ograniczone do listy ustalonych numerów."</string> 43 <string name="callFailed_unobtainable_number" msgid="4736290912891155067">"Nieprawid?owy numer"</string> 58 <string name="voicemail_settings_number_label" msgid="8524164258691887790">"Numer poczty g?osowej"</string> 67 <string name="card_title_my_phone_number" msgid="112428362494434191">"Mój numer to <xliff:g id="MY_PHONE_NUMBER">%s</xliff:g>"</string> 79 <string name="notification_voicemail_no_vm_number" msgid="760963466895609716">"Nieznany numer poczty g?osowej"</string> 103 <string name="dial_emergency_empty_error" msgid="5556166819619323893">"Po??czenie niezrealizowane. Wybierz numer alarmowy!"</string> 136 <string name="respond_via_sms_confirmation_format" msgid="7229149977515784269">"Wiadomo?? wys?ano na numer <xliff:g id="PHONE_NUMBER">%s</xliff:g>."</string> 149 <string name="description_dial_button" msgid="7459705245418435351">"wybierz numer"</string [all...] |
/external/chromium_org/third_party/mesa/src/include/c99/ |
inttypes.h | 280 imaxdiv_t __cdecl imaxdiv(intmax_t numer, intmax_t denom) 284 result.quot = numer / denom; 285 result.rem = numer % denom; 287 if (numer < 0 && result.rem > 0) {
|
/external/mesa3d/include/c99/ |
inttypes.h | 280 imaxdiv_t __cdecl imaxdiv(intmax_t numer, intmax_t denom) 284 result.quot = numer / denom; 285 result.rem = numer % denom; 287 if (numer < 0 && result.rem > 0) {
|
/external/skia/bench/ |
BenchSysTimer_mach.cpp | 72 uint64_t elapsedNano = elapsed * sTimebaseInfo.numer
|
/frameworks/ex/chips/res/values-lt/ |
strings.xml | 21 <string name="copy_number" msgid="530057841276106843">"Kopijuoti telefono numer?"</string>
|
/frameworks/ex/chips/res/values-pl/ |
strings.xml | 21 <string name="copy_number" msgid="530057841276106843">"Kopiuj numer telefonu"</string>
|
/packages/services/Telephony/res/values-pl/ |
strings.xml | 25 <string name="private_num" msgid="6713286113000232309">"Numer prywatny"</string> 47 <string name="add_vm_number_str" msgid="4676479471644687453">"Dodaj numer"</string> 71 <string name="sum_show_caller_id" msgid="6768534125447290401">"Numer wy?wietlany w po??czeniach wychodz?cych"</string> 72 <string name="sum_default_caller_id" msgid="1954518825510901365">"U?yj domy?lnych ustawie? operatora, aby wy?wietla? mój numer w po??czeniach wychodz?cych"</string> 82 <string name="sum_cfu_enabled_no_number" msgid="6591985777096823616">"Numer jest niedost?pny"</string> 85 <string name="messageCFB" msgid="3711089705936187129">"Numer, gdy zaj?ty"</string> 88 <string name="disable_cfb_forbidden" msgid="3506984333877998061">"Twój operator nie umo?liwia wy??czenia przekazywania po??cze?, gdy numer jest zaj?ty."</string> 90 <string name="messageCFNRy" msgid="672317899884380374">"Numer, gdy nieodebrane"</string> 93 <string name="disable_cfnry_forbidden" msgid="4308233959150658058">"Twój operator nie umo?liwia wy??czenia przekazywania po??cze?, gdy numer nie odpowiada."</string> 95 <string name="messageCFNRc" msgid="6380695421020295119">"Numer, gdy nieosi?galny."</string [all...] |
/packages/apps/Dialer/res/values-pl/ |
strings.xml | 26 <string name="recentCalls_editNumberBeforeCall" msgid="7756171675833267857">"Edytuj numer przed nawi?zaniem po??czenia"</string> 63 <string name="sms_disambig_title" msgid="5846266399240630846">"Wybierz numer"</string> 64 <string name="call_disambig_title" msgid="4392886850104795739">"Wybierz numer"</string> 80 <string name="description_dial_button" msgid="1274091017188142646">"wybierz numer"</string> 82 <string name="description_digits_edittext" msgid="8760207516497016437">"numer do wybrania"</string> 132 <string name="private_num" msgid="6374339738119166953">"Numer prywatny"</string> 134 <string name="dialerKeyboardHintText" msgid="5401660096579787344">"Wybierz numer za pomoc? klawiatury"</string> 142 <string name="meid" msgid="6210568493746275750">"Numer MEID"</string> 147 <string name="dialer_hint_find_contact" msgid="8798845521253672403">"Wpisz nazwisko/numer telefonu"</string>
|