HomeSort by relevance Sort by last modified time
    Searched refs:ha (Results 1 - 25 of 53) sorted by null

1 2 3

  /packages/apps/Email/tests/src/com/android/emailcommon/provider/
HostAuthTests.java 33 HostAuth ha = new HostAuth(); local
34 ha.setLogin("user:password");
35 assertEquals("user", ha.mLogin);
36 assertEquals("password", ha.mPassword);
39 ha.setLogin("%20us%20er%20:password");
40 assertEquals("%20us%20er%20", ha.mLogin);
41 assertEquals("password", ha.mPassword);
44 ha.setLogin("user:%20pass%20word%20");
45 assertEquals("user", ha.mLogin);
46 assertEquals("%20pass%20word%20", ha.mPassword)
73 HostAuth ha = new HostAuth(); local
104 HostAuth ha = new HostAuth(); local
154 HostAuth ha = new HostAuth(); local
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_hypot.c 58 int32_t j,k,ha,hb; local
60 GET_HIGH_WORD(ha,x);
61 ha &= 0x7fffffff;
64 if(hb > ha) {a=y;b=x;j=ha; ha=hb;hb=j;} else {a=x;b=y;}
67 if((ha-hb)>0x3c00000) {return a+b;} /* x/y > 2**60 */
69 if(ha > 0x5f300000) { /* a>2**500 */
70 if(ha >= 0x7ff00000) { /* Inf or NaN */
75 if(((ha&0xfffff)|low)==0) w = a
    [all...]
e_hypotf.c 26 int32_t j,k,ha,hb; local
28 GET_FLOAT_WORD(ha,x);
29 ha &= 0x7fffffff;
32 if(hb > ha) {a=y;b=x;j=ha; ha=hb;hb=j;} else {a=x;b=y;}
35 if((ha-hb)>0xf000000) {return a+b;} /* x/y > 2**30 */
37 if(ha > 0x58800000) { /* a>2**50 */
38 if(ha >= 0x7f800000) { /* Inf or NaN */
41 if(ha == 0x7f800000) w = a
    [all...]
e_hypotl.c 52 int32_t j,k,ha,hb; local
54 GET_HIGH_WORD(ha,x);
55 ha &= 0x7fff;
58 if(hb > ha) {a=y;b=x;j=ha; ha=hb;hb=j;} else {a=x;b=y;}
61 if((ha-hb)>DESW(MANT_DIG+7)) {return a+b;} /* x/y > 2**(MANT_DIG+7) */
63 if(ha > ESW(MAX_EXP/2-12)) { /* a>2**(MAX_EXP/2-12) */
64 if(ha >= ESW(MAX_EXP)) { /* Inf or NaN */
75 ha -= DESW(MAX_EXP/2+88); hb -= DESW(MAX_EXP/2+88)
    [all...]
s_fma.c 140 double ha, hb, la, lb, p, q; local
143 ha = a - p;
144 ha += p;
145 la = a - ha;
152 p = ha * hb;
153 q = ha * lb + la * hb;
s_fmal.c 136 long double ha, hb, la, lb, p, q; local
139 ha = a - p;
140 ha += p;
141 la = a - ha;
148 p = ha * hb;
149 q = ha * lb + la * hb;
  /external/fdlibm/
e_hypot.c 56 int j,k,ha,hb; local
58 ha = __HI(x)&0x7fffffff; /* high word of x */
60 if(hb > ha) {a=y;b=x;j=ha; ha=hb;hb=j;} else {a=x;b=y;}
61 __HI(a) = ha; /* a <- |a| */
63 if((ha-hb)>0x3c00000) {return a+b;} /* x/y > 2**60 */
65 if(ha > 0x5f300000) { /* a>2**500 */
66 if(ha >= 0x7ff00000) { /* Inf or NaN */
68 if(((ha&0xfffff)|__LO(a))==0) w = a
    [all...]
  /external/valgrind/main/VEX/priv/
host_generic_regs.c 195 HInstrArray* ha = LibVEX_Alloc(sizeof(HInstrArray)); local
196 ha->arr_size = 4;
197 ha->arr_used = 0;
198 ha->arr = LibVEX_Alloc(ha->arr_size * sizeof(HInstr*));
199 ha->n_vregs = 0;
200 return ha;
203 void addHInstr ( HInstrArray* ha, HInstr* instr )
205 vassert(ha->arr_used <= ha->arr_size)
    [all...]
  /frameworks/base/tests/GridLayoutTest/src/com/android/test/layout/
LinearLayoutTest.java 35 int ha = HORIZONTAL_ALIGNMENTS[j]; local
37 lp.gravity = va | ha;
GridLayoutTest.java 35 int ha = HORIZONTAL_ALIGNMENTS[j]; local
40 lp.setGravity(va | ha);
AlignmentTest.java 85 Alignment ha = HORIZONTAL_ALIGNMENTS[j]; local
86 LayoutParams layoutParams = new LayoutParams(spec(i, va), spec(j, ha));
  /external/valgrind/main/coregrind/m_dispatch/
dispatch-ppc32-linux.S 81 lis 6,VG_(machine_ppc32_has_FP)@ha
133 lis 6,VG_(machine_ppc32_has_VMX)@ha
198 lis 6,VG_(machine_ppc32_has_FP)@ha
215 lis 6,VG_(machine_ppc32_has_VMX)@ha
256 lis 10,VG_(machine_ppc32_has_FP)@ha
260 lis 11,VG_(machine_ppc32_has_VMX)@ha
443 lis 5,VG_(stats__n_xindirs_32)@ha
450 lis 5,VG_(tt_fast)@ha
469 lis 5,VG_(stats__n_xindir_misses_32)@ha
  /external/valgrind/main/exp-bbv/tests/ppc32-linux/
million.S 8 lis 15,499997@ha # load high 16-bits of counter
ll.S 55 lis 25,bss_begin@ha
58 lis 26,data_begin@ha
402 lis 4,escape@ha
410 lis 4,c@ha
420 lis 4,linefeed@ha
  /cts/tests/tests/widget/src/android/widget/cts/
GridLayoutTest.java 191 Alignment ha = HORIZONTAL_ALIGNMENTS[j]; local
194 lp.setGravity(Gravity.CENTER_VERTICAL | ha.gravity);
197 v.setText(ha.name);
203 Alignment ha = HORIZONTAL_ALIGNMENTS[j]; local
208 lp.setGravity(va.gravity | ha.gravity);
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
LogRecordTest.java 426 Handler[] ha = this.getHandlers(); local
427 for (int i = 0; i < ha.length; i++) {
428 ha[i].publish(record);
434 ha = anyParent.getHandlers();
435 for (int i = 0; i < ha.length; i++) {
436 ha[i].publish(record);
  /external/clang/test/SemaCXX/
addr-of-overloaded-function.cpp 40 void ha(int (*fp)(int));
44 ha(h1);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/net/
if_arp.h 155 #define ATF_COM 0x02 /* Completed entry (ha valid). */
177 unsigned char ha[MAX_ADDR_LEN]; /* Hardware address. */ member in struct:arpd_request
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/net/
if_arp.h 155 #define ATF_COM 0x02 /* Completed entry (ha valid). */
177 unsigned char ha[MAX_ADDR_LEN]; /* Hardware address. */ member in struct:arpd_request
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/net/
if_arp.h 155 #define ATF_COM 0x02 /* Completed entry (ha valid). */
177 unsigned char ha[MAX_ADDR_LEN]; /* Hardware address. */ member in struct:arpd_request
  /external/flac/libFLAC/ppc/gas/
lpc_asm.s 120 addis r31,0,L1307@ha
134 addis r31,0,L1306@ha
148 lis r31,L1305@ha
162 lis r31,L1304@ha
176 lis r31,L1303@ha
190 lis r31,L1302@ha
204 lis r31,L1301@ha
216 lis r31,L1300@ha
369 lis r31,L2301@ha
381 lis r31,L2300@ha
    [all...]
  /external/libffi/src/powerpc/
asm.h 68 lis %r11,0b@ha; \
  /packages/apps/Exchange/exchange2/src/com/android/exchange/
EasSyncService.java 185 HostAuth ha = HostAuth.restoreHostAuthWithId(_context, mAccount.mHostAuthKeyRecv); local
186 if (ha == null) {
190 mSsl = (ha.mFlags & HostAuth.FLAG_SSL) != 0;
191 mTrustSsl = (ha.mFlags & HostAuth.FLAG_TRUST_ALL) != 0;
383 HostAuth ha = HostAuth.restoreHostAuthWithId(context, account.mHostAuthKeyRecv); local
387 svc.mHostAddress = ha.mAddress;
388 svc.mUserName = ha.mLogin;
389 svc.mPassword = ha.mPassword;
391 svc.setConnectionParameters(ha);
    [all...]
  /external/v8/src/
runtime.cc 819 NoHandleAllocation ha; local
841 NoHandleAllocation ha; local
850 NoHandleAllocation ha; local
872 NoHandleAllocation ha; local
1958 NoHandleAllocation ha; local
1967 NoHandleAllocation ha; local
1978 NoHandleAllocation ha; local
1987 NoHandleAllocation ha; local
1996 NoHandleAllocation ha; local
2030 NoHandleAllocation ha; local
2053 NoHandleAllocation ha; local
2064 NoHandleAllocation ha; local
2075 NoHandleAllocation ha; local
2090 NoHandleAllocation ha; local
2145 NoHandleAllocation ha; local
2154 NoHandleAllocation ha; local
2251 NoHandleAllocation ha; local
2287 NoHandleAllocation ha; local
    [all...]
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
Quaternion.h 274 Scalar ha = Scalar(0.5)*aa.angle(); // Scalar(0.5) to suppress precision loss warnings local
275 this->w() = ei_cos(ha);
276 this->vec() = ei_sin(ha) * aa.axis();

Completed in 640 milliseconds

1 2 3