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

1 2

  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
wbalance.rs 29 int4 hv = rsGetElementAt_int4(histogramValues, i);
30 int r = hv.r;
31 int g = hv.g;
32 int b = hv.b;
56 int4 hv = rsGetElementAt_int4(histogramValues, i);
57 int r = hv.r;
58 int g = hv.g;
59 int b = hv.b;
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
wbalance.rs 29 int4 hv = rsGetElementAt_int4(histogramValues, i);
30 int r = hv.r;
31 int g = hv.g;
32 int b = hv.b;
56 int4 hv = rsGetElementAt_int4(histogramValues, i);
57 int r = hv.r;
58 int g = hv.g;
59 int b = hv.b;
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
wbalance.rs 29 int4 hv = rsGetElementAt_int4(histogramValues, i);
30 int r = hv.r;
31 int g = hv.g;
32 int b = hv.b;
56 int4 hv = rsGetElementAt_int4(histogramValues, i);
57 int r = hv.r;
58 int g = hv.g;
59 int b = hv.b;
  /packages/apps/Gallery/src/com/android/camera/
CropImage.java 435 HighlightView hv = new HighlightView(mImageView);
462 hv.setup(mImageMatrix, imageRect, faceRect, mCircleCrop,
465 mImageView.add(hv);
470 HighlightView hv = new HighlightView(mImageView);
493 hv.setup(mImageMatrix, imageRect, cropRect, mCircleCrop,
495 mImageView.add(hv);
569 for (HighlightView hv : mHighlightViews) {
570 hv.mMatrix.set(getImageMatrix());
571 hv.invalidate();
572 if (hv.mIsFocused)
614 HighlightView hv = mHighlightViews.get(i); local
624 HighlightView hv = mHighlightViews.get(i); local
630 HighlightView hv = mHighlightViews.get(i); local
656 HighlightView hv = mHighlightViews.get(i); local
675 HighlightView hv = mHighlightViews.get(i); local
    [all...]
  /external/opencv/cxcore/src/
cxsvd.cpp 241 double *hv; local
276 hv = update_u ? uT : hv0;
281 scale += fabs( hv[j] = t );
290 double t = (hv[j] *= f);
295 f = hv[0];
298 hv[0] = f - g;
303 /* calc temp[0:n-i] = a[i:m,i:n]'*hv[0:m-i] */
304 icvMatrAXPY_64f( m1, n1 - 1, a + 1, lda, hv, temp + 1, 0 );
307 /* modify a: a[i:m,i:n] = a[i:m,i:n] + hv[0:m-i]*temp[0:n-i]' */
308 icvMatrAXPY_64f( m1, n1 - 1, temp + 1, 0, hv, a + 1, lda )
636 float *hv; local
    [all...]
  /external/fec/
peakval_av.c 14 union { vector signed char cv; vector signed short hv; signed short s[8]; signed char c[16];} s; member in union:__anon11921
59 s.hv = largest;
  /libcore/ojluni/src/main/java/sun/net/www/protocol/https/
HttpsClient.java 125 private HostnameVerifier hv; field in class:HttpsClient
283 static HttpClient New(SSLSocketFactory sf, URL url, HostnameVerifier hv,
286 return HttpsClient.New(sf, url, hv, true, httpuc);
291 HostnameVerifier hv, boolean useCache,
293 return HttpsClient.New(sf, url, hv, (String)null, -1, useCache, httpuc);
300 static HttpClient New(SSLSocketFactory sf, URL url, HostnameVerifier hv,
303 return HttpsClient.New(sf, url, hv, proxyHost, proxyPort, true, httpuc);
306 static HttpClient New(SSLSocketFactory sf, URL url, HostnameVerifier hv,
310 return HttpsClient.New(sf, url, hv, proxyHost, proxyPort, useCache, -1,
314 static HttpClient New(SSLSocketFactory sf, URL url, HostnameVerifier hv,
    [all...]
  /external/pdfium/third_party/libopenjpeg20/
t1_generate_luts.c 42 int h, v, d, n, t, hv; local
81 hv = h + v;
83 if (!hv) {
85 } else if (hv == 1) {
91 if (!hv) {
93 } else if (hv == 1) {
99 if (!hv) {
  /external/opencv3/3rdparty/libjasper/
jpc_t1cod.c 300 int hv; local
344 hv = h + v;
346 if (!hv) {
348 } else if (hv == 1) {
354 if (!hv) {
356 } else if (hv == 1) {
362 if (!hv) {
  /device/intel/edison/flash_tools/
brillo-provision-edison.sh 89 ARGS=$($GETOPTS -o hv -l "recovery,help" -n "${0##*/}" -- "$@");
  /hardware/intel/img/psb_video/src/
tng_ved_scaling.c 319 unsigned int lc, hv, x; local
344 for(hv=0 ; hv<2 ; hv++)
348 psb_cmdbuf_rendec_write(cmdbuf, ctx->scaler_coeff_reg[lc][hv][x]);
  /prebuilts/misc/common/swig/include/2.0.11/perl5/
perlrun.swg 315 HV *stash = SvSTASH(SvRV(obj));
318 HV *hv = GvHVn(gv);
323 if (hv_exists_ent(hv, obj, 0)) {
324 hv_delete_ent(hv, obj, 0, 0);
341 HV *hash=newHV();
342 HV *stash;
346 HV *hv;
350 hv=GvHVn(gv)
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/
HostnameVerifierTest.java 39 HostnameVerifier hv = HttpsURLConnection.getDefaultHostnameVerifier(); local
40 assertFalse(hv.verify("localhost", session));
  /external/opencv3/modules/core/test/
test_mat.cpp 585 size_t hv = 0, *phv = 0; local
588 hv = d == 2 ? M.hash(idx[0], idx[1]) :
590 phv = &hv;
609 size_t hv = 0, *phv = 0; local
612 hv = d == 2 ? M.hash(idx[0], idx[1]) :
614 phv = &hv;
633 size_t hv = 0, *phv = 0; local
636 hv = d == 2 ? M.hash(idx[0], idx[1]) :
638 phv = &hv;
    [all...]
  /external/opencv3/modules/calib3d/src/
stereosgbm.cpp 476 __m128i hv = _mm_load_si128((const __m128i*)(hsumAdd + x - D + d));
478 hv = _mm_adds_epi16(_mm_subs_epi16(hv,
483 hv);
484 _mm_store_si128((__m128i*)(hsumAdd + x + d), hv);
493 int hv = hsumAdd[x + d] = (CostType)(hsumAdd[x - D + d] + pixAdd[d] - pixSub[d]);
494 C[x + d] = (CostType)(Cprev[x + d] + hv - hsumSub[x + d]);
    [all...]
  /external/v8/benchmarks/
regexp.js     [all...]
  /external/libpcap/
pcap-linux.c 403 # define VLAN_TPID(hdr, hv) (((hv)->tp_vlan_tpid || ((hdr)->tp_status & TP_STATUS_VLAN_TPID_VALID)) ? (hv)->tp_vlan_tpid : ETH_P_8021Q)
405 # define VLAN_TPID(hdr, hv) ETH_P_8021Q
    [all...]
  /toolchain/binutils/binutils-2.25/bfd/
elflink.c 506 struct elf_link_hash_entry *h, *hv;
541 hv = h;
542 while (hv->root.type == bfd_link_hash_indirect
543 || hv->root.type == bfd_link_hash_warning)
544 hv = (struct elf_link_hash_entry *) hv->root.u.i.link;
548 hv->root.type = bfd_link_hash_indirect;
549 hv->root.u.i.link = (struct bfd_link_hash_entry *) h;
550 (*bed->elf_backend_copy_indirect_symbol) (info, h, hv);
503 struct elf_link_hash_entry *h, *hv; local
    [all...]
  /external/caliper/lib/
jersey-client-1.11.jar 
  /external/mksh/src/
Build.sh 428 hv=`echo "$hf" | tr -d '\012\015' | tr -c $alll$allu$alln $alls`
451 ac_testn "$hv" "" "<$hf>" <x
    [all...]
  /external/webrtc/talk/media/testdata/
video.rtpdump     [all...]
h264-svc-99-640x360.rtpdump     [all...]
  /external/webrtc/data/voice_engine/stereo_rtp_files/
toggling_stereo_g729_pt18_pt125.rtp     [all...]
hrtf_g722_1C_48_jitterT2.rtp 659 "?=0+?cy???E?I?aU?Q?8????Xe?)??S??rZ ?)i???J???g??cgj??~\n?=?T?E!?s*?N?hv?I? *,3???u?? $???
    [all...]
  /external/v8/test/mjsunit/asm/sqlite3/
sqlite-pointer-masking.js     [all...]

Completed in 5338 milliseconds

1 2