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

1 2 3

  /external/flac/libFLAC/
memory.c 64 FLAC__int32 *pu; /* unaligned pointer */ local
75 if(elements > SIZE_MAX / sizeof(*pu)) /* overflow check */
78 pu = FLAC__memory_alloc_aligned(sizeof(*pu) * elements, &u.pv);
79 if(0 == pu) {
85 *unaligned_pointer = pu;
93 FLAC__uint32 *pu; /* unaligned pointer */ local
104 if(elements > SIZE_MAX / sizeof(*pu)) /* overflow check */
107 pu = FLAC__memory_alloc_aligned(sizeof(*pu) * elements, &u.pv)
122 FLAC__uint64 *pu; \/* unaligned pointer *\/ local
151 unsigned *pu; \/* unaligned pointer *\/ local
182 FLAC__real *pu; \/* unaligned pointer *\/ local
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/
PropertyUtilsSharingTest.java 40 PropertyUtils pu = new PropertyUtils(); local
41 constructor1.setPropertyUtils(pu);
43 assertSame(pu, yaml.constructor.getPropertyUtils());
44 assertSame(pu, yaml.representer.getPropertyUtils());
49 PropertyUtils pu = new PropertyUtils(); local
50 representer2.setPropertyUtils(pu);
52 assertSame(pu, yaml.constructor.getPropertyUtils());
53 assertSame(pu, yaml.representer.getPropertyUtils());
  /external/mesa3d/src/gallium/auxiliary/util/
u_pointer.h 65 } pu; local
66 pu.p = ptr;
67 return pu.u;
76 } pu; local
77 pu.u = u;
78 return pu.p;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
WTauNafMultiplier.java 79 ECPoint.AbstractF2m[] pu; local
82 pu = Tnaf.getPreComp(p, a);
85 pre.setPreComp(pu);
90 pu = ((WTauNafPreCompInfo)preCompInfo).getPreComp();
94 ECPoint.AbstractF2m[] puNeg = new ECPoint.AbstractF2m[pu.length];
95 for (int i = 0; i < pu.length; ++i)
97 puNeg[i] = (ECPoint.AbstractF2m)pu[i].negate();
114 ECPoint x = ui > 0 ? pu[ui >>> 1] : puNeg[(-ui) >>> 1];
Tnaf.java 836 ECPoint.AbstractF2m[] pu = new ECPoint.AbstractF2m[(alphaTnaf.length + 1) >>> 1]; local
837 pu[0] = p;
842 pu[i >>> 1] = Tnaf.multiplyFromTnaf(p, alphaTnaf[i]);
845 p.getCurve().normalizeAll(pu);
847 return pu;
  /cts/tests/camera/src/android/hardware/camera2/cts/
crop_yuvf_420_to_yuvx_444.rs 30 uchar pu = rsGetElementAtYuv_uchar_U(mInput, x + src_x, y + src_y);
33 yuvx_444 yuv = { py, pu, pv };
means_yuvx_444_2d_to_1d.rs 39 uchar pu = rsGetElementAtYuv_uchar_U(mInput, src_x + i, src_y + x);
42 yuvx_444 elem = { py, pu, pv };
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue193/
AbstractBeanTest.java 39 PropertyUtils pu = new PropertyUtils(); local
40 c.setPropertyUtils(pu);
41 r.setPropertyUtils(pu);
43 pu.getProperties(BeanA1.class, BeanAccess.FIELD);
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
mipsr6@mips5-fp.s 5 cvt.s.pu $f18, $f20
mipsr6@mips5-fp.d 11 0+0004 <[^>]*> 46c0a4a0 cvt\.s\.pu \$f18,\$f20
mips5-fp.s 41 cvt.s.pu $f18, $f20
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
yuv.rs 82 int pu = rsGetElementAt_uchar(au, x >> 1, y >> 1);
86 //rsDebug(" u", pu);
89 uchar4 rgb = yuvToRGBA4(py, pu, pv);
106 uchar pu = rsGetElementAt_uchar(au, x >> 1, y >> 1);
110 //rsDebug(" u", pu);
113 float4 rgb = yuvToRGBA_f4(py, pu, pv);
124 uchar pu = rsGetElementAtYuv_uchar_U(mInput, x, y);
128 //rsDebug(" u2", pu);
131 return yuvToRGBA4(py, pu, pv);
137 uchar pu = rsGetElementAtYuv_uchar_U(mInput, x, y)
    [all...]
  /external/owasp/sanitizer/src/main/org/owasp/html/
ElementPolicy.java 93 PolicyJoiner pu = new PolicyJoiner(); local
96 pu.join(policy);
98 return pu.out != null ? pu.out : IDENTITY_ELEMENT_POLICY;
  /external/fio/os/
os-hpux.h 75 union pstun pu; local
77 pu.pst_static = &pst;
78 if (pstat(PSTAT_STATIC, pu, sizeof(pst), 0, 0) == -1)
  /frameworks/base/services/core/java/com/android/server/pm/
ShortcutLauncher.java 94 final PackageWithUser pu = pinnedPackages.get(i); local
95 final ShortcutPackage p = mShortcutUser.getPackageShortcutsIfExists(pu.packageName);
118 final PackageWithUser pu = PackageWithUser.of(packageUserId, packageName); local
122 mPinnedShortcuts.remove(pu);
124 final ArraySet<String> prevSet = mPinnedShortcuts.get(pu);
142 mPinnedShortcuts.put(pu, newSet);
214 final PackageWithUser pu = mPinnedShortcuts.keyAt(i); local
216 if (forBackup && (pu.userId != getOwnerUserId())) {
221 ShortcutService.writeAttr(out, ATTR_PACKAGE_NAME, pu.packageName);
222 ShortcutService.writeAttr(out, ATTR_PACKAGE_USER_ID, pu.userId)
315 final PackageWithUser pu = mPinnedShortcuts.keyAt(i); local
    [all...]
  /external/icu/icu4c/source/tools/toolutil/
xmlparser.cpp 171 UChar *buffer, *pu; local
219 pu=buffer;
222 &pu, buffer+src.getCapacity(),
225 src.releaseBuffer(U_SUCCESS(errorCode) ? (int32_t)(pu-buffer) : 0);
288 pu=buffer+length;
290 cnv, &pu, buffer+src.getCapacity(),
293 src.releaseBuffer(U_SUCCESS(errorCode) ? (int32_t)(pu-buffer) : 0);
  /prebuilts/go/darwin-x86/test/
escape_struct_param1.go 41 pu := &U{ps, pps} // ERROR "tSPPi &U literal does not escape$"
42 Ssink = pu.SPPi()
49 pu := &U{ps, pps} // ERROR "tiSPP &U literal does not escape$"
50 Ssink = *pu.SPP()
58 pu := &U{ps, pps} // ERROR "tSP &U literal does not escape$"
59 Ssink = pu.SP()
escape_struct_param2.go 41 pu := &U{ps, pps} // ERROR "tSPPi &U literal does not escape$"
42 Ssink = pu.SPPi()
49 pu := &U{ps, pps} // ERROR "tiSPP &U literal does not escape$"
50 Ssink = *pu.SPP()
58 pu := &U{ps, pps} // ERROR "tSP &U literal does not escape$"
59 Ssink = pu.SP()
  /prebuilts/go/linux-x86/test/
escape_struct_param1.go 41 pu := &U{ps, pps} // ERROR "tSPPi &U literal does not escape$"
42 Ssink = pu.SPPi()
49 pu := &U{ps, pps} // ERROR "tiSPP &U literal does not escape$"
50 Ssink = *pu.SPP()
58 pu := &U{ps, pps} // ERROR "tSP &U literal does not escape$"
59 Ssink = pu.SP()
escape_struct_param2.go 41 pu := &U{ps, pps} // ERROR "tSPPi &U literal does not escape$"
42 Ssink = pu.SPPi()
49 pu := &U{ps, pps} // ERROR "tiSPP &U literal does not escape$"
50 Ssink = *pu.SPP()
58 pu := &U{ps, pps} // ERROR "tSP &U literal does not escape$"
59 Ssink = pu.SP()
  /external/clang/test/CXX/expr/expr.const/
p2-0x.cpp 346 extern const U pu;
347 constexpr const int *pua = &pu.a;
348 constexpr const int *pub = &pu.b;
349 constexpr U pu = { .b = 1 }; // expected-warning {{C99 feature}}
  /external/icu/icu4c/source/common/
ubidiln.c 699 const UChar *start=pBiDi->text, *limit=start+pBiDi->length, *pu; local
700 for(pu=start; pu<limit; pu++) {
701 if(IS_BIDI_CONTROL_CHAR(*pu)) {
702 runIndex=getRunFromLogicalIndex(pBiDi, (int32_t)(pu-start), pErrorCode);
    [all...]
  /external/valgrind/drd/
drd_main.c 771 ULong pu = DRD_(thread_get_update_conflict_set_count)(); local
782 pu);
791 pu - pu_seg_cr - pu_mtx_cv - pu_join);
    [all...]
  /external/llvm/test/MC/Mips/mips1/
invalid-mips5-wrong-error.s 30 cvt.s.pu $f14,$f25 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
  /external/llvm/test/MC/Mips/mips2/
invalid-mips5-wrong-error.s 30 cvt.s.pu $f14,$f25 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction

Completed in 1476 milliseconds

1 2 3