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

1 2

  /toolchain/binutils/binutils-2.25/elfcpp/
elfcpp_swap.h 232 readval(const Valtype* wv)
233 { return Convert<size, big_endian>::convert_host(*wv); }
236 writeval(Valtype* wv, Valtype v)
237 { *wv = Convert<size, big_endian>::convert_host(v); }
240 readval(const unsigned char* wv)
241 { return readval(reinterpret_cast<const Valtype*>(wv)); }
244 writeval(unsigned char* wv, Valtype v)
245 { writeval(reinterpret_cast<Valtype*>(wv), v); }
258 readval(const Valtype* wv)
259 { return *wv; }
    [all...]
  /external/vboot_reference/firmware/2lib/
2sha256.c 79 t1 = wv[h] + SHA256_F2(wv[e]) + CH(wv[e], wv[f], wv[g]) \
81 t2 = SHA256_F1(wv[a]) + MAJ(wv[a], wv[b], wv[c]); \
82 wv[d] += t1;
135 uint32_t wv[8]; local
    [all...]
2sha512.c 95 t1 = wv[h] + SHA512_F2(wv[e]) + CH(wv[e], wv[f], wv[g]) \
97 t2 = SHA512_F1(wv[a]) + MAJ(wv[a], wv[b], wv[c]); \
98 wv[d] += t1;
178 uint64_t wv[8]; local
    [all...]
  /external/vboot_reference/firmware/lib/cryptolib/
sha256.c 80 t1 = wv[h] + SHA256_F2(wv[e]) + CH(wv[e], wv[f], wv[g]) \
82 t2 = SHA256_F1(wv[a]) + MAJ(wv[a], wv[b], wv[c]); \
83 wv[d] += t1;
132 uint32_t wv[8]; local
    [all...]
sha512.c 96 t1 = wv[h] + SHA512_F2(wv[e]) + CH(wv[e], wv[f], wv[g]) \
98 t2 = SHA512_F1(wv[a]) + MAJ(wv[a], wv[b], wv[c]); \
99 wv[d] += t1;
175 uint64_t wv[8]; local
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
WebView1.java 39 WebView wv; local
41 wv = (WebView) findViewById(R.id.wv1);
42 wv.loadData("<a href='x'>Hello World! - 1</a>", mimeType, null);
  /external/mmc-utils/3rdparty/hmac_sha/
sha2.c 118 t1 = wv[h] + SHA256_F2(wv[e]) + CH(wv[e], wv[f], wv[g]) \
120 t2 = SHA256_F1(wv[a]) + MAJ(wv[a], wv[b], wv[c]); \
121 wv[d] += t1;
220 uint32 wv[8]; local
436 uint64 wv[8]; local
    [all...]
  /external/valgrind/helgrind/
hg_wordset.c 147 If a WordVec WV is marked as dead by HG(dieWS), WV is removed from
188 WordVec* wv; local
190 wv = wsu->alloc( wsu->cc, sizeof(WordVec) );
191 wv->owner = wsu;
192 wv->words = NULL;
193 wv->size = sz;
195 wv->words = wsu->alloc( wsu->cc, (SizeT)sz * sizeof(UWord) );
197 return wv;
200 static void delete_WV ( WordVec* wv )
274 WordVec* wv; local
292 WordVec* wv; local
402 WordVec* wv = do_ix2vec( wsu, ws ); local
415 WordVec* wv; local
424 WordVec* wv; local
433 WordVec* wv; local
450 WordVec* wv; local
461 WordVec* wv = do_ix2vec_with_dead( wsu, ws ); local
505 WordVec* wv; local
526 WordVec* wv = do_ix2vec( wsu, ws ); local
537 WordVec* wv; local
571 WordVec* wv; local
609 WordVec* wv; local
651 WordVec* wv = do_ix2vec( wsu, ws ); local
928 WordVec* wv = do_ix2vec( wsu, ws ); local
    [all...]
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
LooperAcceleration.java 60 WebView wv = new WebView(this); local
61 wv.setWebViewClient(new WebViewClient());
62 wv.setWebChromeClient(new WebChromeClient());
63 wv.loadUrl("http://www.webkit.org/blog-files/3d-transforms/poster-circle.html");
64 layout.addView(wv, LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);
  /toolchain/binutils/binutils-2.25/gold/
reloc.h 331 Valtype* wv = reinterpret_cast<Valtype*>(view); local
332 Valtype x = elfcpp::Swap<valsize, big_endian>::readval(wv);
333 elfcpp::Swap<valsize, big_endian>::writeval(wv, x + value);
358 Valtype* wv = reinterpret_cast<Valtype*>(view); local
359 Valtype x = elfcpp::Swap<valsize, big_endian>::readval(wv);
361 elfcpp::Swap<valsize, big_endian>::writeval(wv, x);
387 Valtype* wv = reinterpret_cast<Valtype*>(view); local
388 elfcpp::Swap<valsize, big_endian>::writeval(wv, value + addend);
401 Valtype* wv = reinterpret_cast<Valtype*>(view); local
403 elfcpp::Swap<valsize, big_endian>::writeval(wv, x)
415 Valtype* wv = reinterpret_cast<Valtype*>(view); local
444 Valtype* wv = reinterpret_cast<Valtype*>(view); local
460 Valtype* wv = reinterpret_cast<Valtype*>(view); local
475 Valtype* wv = reinterpret_cast<Valtype*>(view); local
    [all...]
sparc.cc 531 Valtype* wv = reinterpret_cast<Valtype*>(view); local
532 Valtype val = elfcpp::Swap<valsize, big_endian>::readval(wv);
538 elfcpp::Swap<valsize, big_endian>::writeval(wv, val | reloc);
553 Valtype* wv = reinterpret_cast<Valtype*>(view); local
554 Valtype val = elfcpp::Swap<valsize, big_endian>::readval(wv);
560 elfcpp::Swap<valsize, big_endian>::writeval(wv, val | reloc);
575 unsigned char* wv = view; local
576 Valtype val = elfcpp::Swap_unaligned<valsize, big_endian>::readval(wv);
582 elfcpp::Swap_unaligned<valsize, big_endian>::writeval(wv, val | reloc);
598 Valtype* wv = reinterpret_cast<Valtype*>(view) local
619 unsigned char* wv = view; local
674 Valtype* wv = reinterpret_cast<Valtype*>(view); local
697 Valtype* wv = reinterpret_cast<Valtype*>(view); local
806 Valtype* wv = reinterpret_cast<Valtype*>(view); local
1076 Valtype* wv = reinterpret_cast<Valtype*>(view); local
1093 Valtype* wv = reinterpret_cast<Valtype*>(view); local
1114 Valtype* wv = reinterpret_cast<Valtype*>(view); local
1137 Valtype* wv = reinterpret_cast<Valtype*>(view); local
1159 Valtype* wv = reinterpret_cast<Valtype*>(view); local
1177 Valtype* wv = reinterpret_cast<Valtype*>(view); local
1198 Valtype* wv = reinterpret_cast<Valtype*>(view); local
3374 Insntype* wv = reinterpret_cast<Insntype*>(view); local
3638 Insntype* wv = reinterpret_cast<Insntype*>(view); local
3686 Insntype* wv = reinterpret_cast<Insntype*>(view); local
3792 Insntype* wv = reinterpret_cast<Insntype*>(view); local
3871 Insntype* wv = reinterpret_cast<Insntype*>(view); local
3889 Insntype* wv = reinterpret_cast<Insntype*>(view); local
3993 Insntype *wv = reinterpret_cast<Insntype*>(view); local
    [all...]
arm.cc     [all...]
tilegx.cc 813 Valtype* wv = reinterpret_cast<Valtype*>(view); local
814 Valtype val = elfcpp::Swap<valsize, big_endian>::readval(wv);
826 elfcpp::Swap<valsize, big_endian>::writeval(wv, val | (reloc<<doffset));
841 unsigned char* wv = view; local
842 Valtype val = elfcpp::Swap_unaligned<valsize, big_endian>::readval(wv);
854 elfcpp::Swap_unaligned<valsize, big_endian>::writeval(wv,
869 Valtype* wv = reinterpret_cast<Valtype*>(view); local
870 Valtype val = elfcpp::Swap<valsize, big_endian>::readval(wv);
883 elfcpp::Swap<valsize, big_endian>::writeval(wv, val | reloc);
901 Valtype* wv = reinterpret_cast<Valtype*>(view) local
930 unsigned char* wv = view; local
956 Valtype* wv = reinterpret_cast<Valtype*>(view); local
1161 Valtype* wv = reinterpret_cast<Valtype*>(view); local
2389 Valtype* wv = reinterpret_cast<Valtype*>(pov); local
    [all...]
mips.cc 3967 Valtype16* wv = reinterpret_cast<Valtype16*>(view); local
3989 Valtype32* wv = reinterpret_cast<Valtype32*>(view); local
4007 Valtype32* wv = reinterpret_cast<Valtype32*>(view); local
4040 Valtype32* wv = reinterpret_cast<Valtype32*>(view); local
4059 Valtype32* wv = reinterpret_cast<Valtype32*>(view); local
4178 Valtype32* wv = reinterpret_cast<Valtype32*>(view); local
4202 Valtype32* wv = reinterpret_cast<Valtype32*>(view); local
4226 Valtype32* wv = reinterpret_cast<Valtype32*>(view); local
4250 Valtype32* wv = reinterpret_cast<Valtype32*>(view); local
4288 Valtype32* wv = reinterpret_cast<Valtype32*>(view); local
4353 Valtype32* wv = reinterpret_cast<Valtype32*>(view); local
4385 Valtype32* wv = reinterpret_cast<Valtype32*>(view); local
4480 Valtype32* wv = reinterpret_cast<Valtype32*>(view); local
4499 Valtype32* wv = reinterpret_cast<Valtype32*>(view); local
4525 Valtype32* wv = reinterpret_cast<Valtype32*>(view); local
4559 Valtype32* wv = reinterpret_cast<Valtype32*>(view); local
4575 Valtype32* wv = reinterpret_cast<Valtype32*>(view); local
4593 Valtype32* wv = reinterpret_cast<Valtype32*>(view); local
4643 Valtype32* wv = reinterpret_cast<Valtype32*>(view); local
4663 Valtype32* wv = reinterpret_cast<Valtype32*>(view); local
4684 Valtype32* wv = reinterpret_cast<Valtype32*>(view); local
4704 Valtype32* wv = reinterpret_cast<Valtype32*>(view); local
4722 Valtype32* wv = reinterpret_cast<Valtype32*>(view); local
5645 Valtype* wv = reinterpret_cast<Valtype*>( local
5665 Valtype* wv = reinterpret_cast<Valtype*>( local
    [all...]
aarch64.cc 547 Valtype* wv = reinterpret_cast<Valtype*>(oview + got_offset);
560 elfcpp::Swap<size, big_endian>::writeval(wv, x);
5021 Valtype* wv = reinterpret_cast<Valtype*>(view); local
5045 Valtype* wv = reinterpret_cast<Valtype*>(view); local
5079 Valtype* wv = reinterpret_cast<Valtype*>(view); local
5191 Valtype* wv = reinterpret_cast<Valtype*>(view); local
    [all...]
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/activities/
MainActivity.java 61 WebView wv = (WebView) findViewById(R.id.webIntro); local
62 wv.loadUrl("file:///android_asset/intro_help.html");
  /external/mksh/src/
eval.c 1217 XPtrV wv; local
1232 XPinit(wv, 32);
1239 XPput(wv, c == '!' ? shf_smprintf("%lu",
1243 if (XPsize(wv) == 0) {
1246 XPfree(wv);
1248 XPput(wv, 0);
1249 xp->u.strv = (const char **)XPptrv(wv);
    [all...]
  /packages/apps/Email/src/com/android/email/activity/setup/
OAuthAuthenticationActivity.java 61 public boolean shouldOverrideUrlLoading(WebView wv, String url) {
  /external/webrtc/talk/media/testdata/
voice.rtpdump 18 ??pjz???{~??wwz~~?|z???|z????~z{???xqtz??||vy?????}???|{vvz{ttvvu|}??????????{??????|{???????????~y???????~{zvxtrw????}}?????~}}{z?~?xuwz???wu{???~zyz||yww{?~?? 5?9??4???pj|z~?????}?}|}z~?????????~}??~????xv?????}?|?|???~?x}{|}???????|??zvtz?}xy~???{{u~????????}{???????wz?{}????zoqs|??{{vz~?{v|???????{~????tv??zwz???~??|wyx????? K?9??4?J??pj?|???y{??~{z|~|}|?????wqy???}yy???{}y~yy{????}{??????}???????|?????zz??xoq~???yy???}w??|vy??}xvoprx|~x{z}zz?????{yz????|??????||y}}??????????~~?????|???wst|??? _?9??4???pj?~?}zsuwx~??wwyyvxy}?|wv|???}?????}???????????~xw???zy??????|}??????????|z~?~{tsz???rtvy????????????{{~|{u|????~????|tsz??xqox???tnp{yxu|????~vsy???{|~???{z?}y?? u?9??4???pj}??}?}??????{~????}????~xy?????z}??{vvxzyutx??|tqv|?{zz???????}???????}????????~?~{~?????}yt??{uqwzx}|?{ws?????????|zy~??????|xr|??xwx}z{????????zrsw??? ??9??4?*??pj|{u???????????{yz?yx{??????????}???????????}y}???zwuvvzxxx????xsx|}zvz}~}{~{}{|?~???~}???????????????????????{{?|ywxtrpyzxwqqtwutnou|~yu}??y?????????????????? ??9??4???pj????{wx???~{|~??????ullw??|{{~???????}??????~????z?~?|tqw}zzutty}}xsqrwzz}???|}~??????}??????????????????????}~|}}???zuspvxzxpnotonmqy|}xqu???????????????????? ??9??4?j??pj???????????~~}~??????tu{}~xzwusx{~|zs~???????????|rzt~}???~~{sz}??yw~~xx{?yxw|??~z{~?????}}zvwy{?????????}|???????????u{ruqqu?x|~??????~?????|uz}?{vw???????{?? ?9??4?
28 ??9??4?J??pj|x???|????{y~?????????????????{yv~{wv~|wrx??~y~}?sw{???{}~?||{?????????z????zy}??zxv?~w{|???yu~}?}|ywyxyy|}z~~}|w}}?z|?????????????~???~???ywqssw|{xxxzxz{??
72 ??pjv}???????????w??????{pow???rt???|wws~~???tx???ojs???roy??vh`io???z|?z{????|tpoyumhkp??|smn?????w????xx???xokp~~?xv????????z????rjlv??~|??????~????slihnz?{qr?? ??9?4????pju???????????|????????{{????po~???yklmyzqvu{??}ztvp}~?}zy?~???wso~???}nk{???}{??????oooywohjw?xxtt{~~?wv???}pt~??????w|z???mp~???xz}???~zy??????~z}???x|??????r?? ??9?4?J??pj{{???~pw???{|zso{??nklmutkafgljlt??????|????????{???zvz????????????????????????wz{ytzyyvy????r{???sq|???~~?????}}z?????}}???u{|}???vhgmtwr|w}???{yv?????orz?}{x?? ??9?4???pj??|???~y???|zw????wolt{??}zz}??|zust{???~~~?????????????{u?zxy?????|?~???}wx???vx|???{uopv????}??{rxy??{???{??|ruqmk}~??????}vu???????}ox??????~|t~|vqsx|????? ?9?4????pjrns??~~??????????????????vqr?~?}???}????zxx???zwx?zwu~{?y|?yqt?~xuvpswsz|}}}rmpyvxolnw???????????????????????}??????????????|}?~wyruurnw{~ywlo}?ohalw{lljoot?? ?9?4?*??pj{}w{yu{????????????zzy?xspz|}}xx????}??????tz??xtyyzu}??ww{?????tswywqnjfn|??qoz????????????~??????????}~???????w~???vpu?????{??yrrsvooovx~wonpqwzzwtot???}???? ??9?4???pj??x????~????~|????????z??????????}v}????|??wonrpmljkkjhrtumojns?|???xw|???z???????????????????????????????zry|wmik{~xqvutoknr|wtvuontwzz|????????????????|????r~???9?5j??pj?yqntv}vsvy{vw~???}xwtlsux|??{pqoxromry???xw|??????uv?????????~????v???~pq~|wz}rrlnlqnsoooyxv{~ruy}???}|{??tpy???|???|?????????s???{ww???????????????????????|??!?9?5
    [all...]
  /external/opencv3/modules/ts/misc/
run.py 492 wv = platform.win32_ver()
493 if wv[0]:
494 _os = "Windows" + wv[0]
    [all...]
  /prebuilts/devtools/tools/lib/
kxml2-2.3.0.jar 
  /prebuilts/misc/common/kxml2/
kxml2-2.3.0.jar 
  /prebuilts/tools/common/kxml2-tools/
kxml2-2.3.0.jar 
  /prebuilts/tools/common/m2/repository/net/sf/kxml/kxml2/2.3.0/
kxml2-2.3.0.jar 
  /prebuilts/tools/common/offline-m2/net/sf/kxml/kxml2/2.3.0/
kxml2-2.3.0.jar 

Completed in 1020 milliseconds

1 2