Searched refs:pt (Results 126 - 150 of 582) sorted by relevance

1234567891011>>

/external/skqp/tests/
H A DPathOpsQuadIntersectionTest.cpp42 for (int pt = 0; pt < intersections.used(); ++pt) {
43 double tt1 = intersections[0][pt];
45 double tt2 = intersections[1][pt];
49 __FUNCTION__, static_cast<int>(index), pt, tt1, xy1.fX, xy1.fY,
346 for (int pt = 0; pt < intersections.used(); ++pt) {
347 double tt1 = intersections[0][pt];
[all...]
/external/wycheproof/java/com/google/security/wycheproof/testcases/
H A DAesEaxTest.java35 final byte[] pt; field in class:AesEaxTest.EaxTestVector
46 this.pt = TestUtil.hexToBytes(message);
262 byte[] ct = cipher.doFinal(test.pt);
271 byte[] c0 = cipher.update(test.pt);
/external/boringssl/src/fipstools/
H A Dcavp_aes_gcm_test.cc59 std::vector<uint8_t> key, iv, pt, aad, tag, ct; local
63 !t->GetBytes(&pt, "PT") ||
67 pt.size() * 8 != strtoul(pt_len_str.c_str(), nullptr, 0) ||
74 if (!AEADEncrypt(ctx->aead, &ct, &tag, tag_len, key, pt, aad, iv)) {
100 std::vector<uint8_t> key, iv, ct, aad, tag, pt; local
118 AEADDecrypt(ctx->aead, &pt, pt_len, key, aad, ct, tag, iv);
120 printf("PT = %s\r\n\r\n", EncodeHex(pt.data(), pt.size()).c_str());
H A Dcavp_test_util.cc111 const std::vector<uint8_t> &pt,
121 out.resize(pt.size() + EVP_AEAD_max_overhead(aead));
124 iv.size(), pt.data(), pt.size(), aad.data(),
136 bool AEADDecrypt(const EVP_AEAD *aead, std::vector<uint8_t> *pt, size_t pt_len, argument
151 pt->resize(pt_len);
153 if (!EVP_AEAD_CTX_open(ctx.get(), pt->data(), &out_pt_len, pt->size(),
108 AEADEncrypt(const EVP_AEAD *aead, std::vector<uint8_t> *ct, std::vector<uint8_t> *tag, size_t tag_len, const std::vector<uint8_t> &key, const std::vector<uint8_t> &pt, const std::vector<uint8_t> &aad, const std::vector<uint8_t> &iv) argument
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_deadlock_detector_interface.h30 // pt - physical (OS) thread.
65 DDPhysicalThread *pt; member in struct:__sanitizer::DDCallback
76 virtual void DestroyPhysicalThread(DDPhysicalThread *pt) {} argument
/external/mesa3d/src/gallium/drivers/nouveau/nv30/
H A Dnv30_resource.h42 nv30_miptree(struct pipe_resource *pt) argument
44 return (struct nv30_miptree *)pt;
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DUserAgent.java71 * @param pt String to set
73 public void addProductToken(String pt) { argument
74 productTokens.add(pt);
/external/skia/src/pathops/
H A DSkPathOpsSimplify.cpp40 current->debugID(), start->pt().fX, start->pt().fY,
41 end->pt().fX, end->pt().fY);
110 current->debugID(), start->pt().fX, start->pt().fY,
111 end->pt().fX, end->pt().fY);
H A DSkPathOpsWinding.cpp48 static SkScalar pt_xy(const SkPoint& pt, SkOpRayDir dir) { argument
49 return (&pt.fX)[xy_index(dir)];
52 static SkScalar pt_yx(const SkPoint& pt, SkOpRayDir dir) { argument
53 return (&pt.fX)[!xy_index(dir)];
68 static bool sideways_overlap(const SkRect& rect, const SkPoint& pt, SkOpRayDir dir) { argument
70 return approximately_between((&rect.fLeft)[i], (&pt.fX)[i], (&rect.fRight)[i]);
138 SkPoint pt; local
142 pt = fPts[0];
144 pt = fPts[SkPathOpsVerbToPoints(fVerb)];
147 pt
[all...]
/external/skqp/src/pathops/
H A DSkPathOpsSimplify.cpp40 current->debugID(), start->pt().fX, start->pt().fY,
41 end->pt().fX, end->pt().fY);
110 current->debugID(), start->pt().fX, start->pt().fY,
111 end->pt().fX, end->pt().fY);
H A DSkPathOpsWinding.cpp48 static SkScalar pt_xy(const SkPoint& pt, SkOpRayDir dir) { argument
49 return (&pt.fX)[xy_index(dir)];
52 static SkScalar pt_yx(const SkPoint& pt, SkOpRayDir dir) { argument
53 return (&pt.fX)[!xy_index(dir)];
68 static bool sideways_overlap(const SkRect& rect, const SkPoint& pt, SkOpRayDir dir) { argument
70 return approximately_between((&rect.fLeft)[i], (&pt.fX)[i], (&rect.fRight)[i]);
138 SkPoint pt; local
142 pt = fPts[0];
144 pt = fPts[SkPathOpsVerbToPoints(fVerb)];
147 pt
[all...]
/external/mesa3d/src/mesa/state_tracker/
H A Dst_sampler_view.c292 util_format_is_depth_or_stencil(stObj->pt->format)) {
302 stObj->pt->format,
338 stObj->pt->last_level);
348 if (stObj->base.Immutable && stObj->pt->array_size > 1)
350 stObj->pt->array_size - 1);
351 return stObj->pt->array_size - 1;
371 stObj->surface_based ? stObj->surface_format : stObj->pt->format;
415 u_sampler_view_default_template(&templ, stObj->pt, format);
417 if (stObj->pt->target == PIPE_BUFFER) {
421 if (base >= stObj->pt
[all...]
H A Dst_atom_image.c68 !stObj->pt) {
73 img->resource = stObj->pt;
90 if (stObj->pt->target == PIPE_BUFFER) {
94 assert(base < stObj->pt->width0);
95 size = MIN2(stObj->pt->width0 - base, (unsigned)stObj->base.BufferSize);
101 if (stObj->pt->target == PIPE_TEXTURE_3D) {
104 img->u.tex.last_layer = u_minify(stObj->pt->depth0, img->u.tex.level) - 1;
/external/opencv/cvaux/src/
H A Dcvfindhandregion.cpp71 CvPoint *tmp_number = 0, *pt; local
163 pt = (CvPoint*)cvGetSeqElem( indexs, i );
164 tmp_number[i_point] = *pt;
293 CvPoint *tmp_number = 0, *pt; local
401 pt = (CvPoint* )icvGetSeqElem ( indexs, i, 0);
403 if(pt->x > jmax) jmax = pt->x;
404 if(pt->x < jmin) jmin = pt->x;
406 tmp_number[i_point] = *pt;
[all...]
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Daes-internal-enc.c23 static void rijndaelEncrypt(const u32 rk[], int Nr, const u8 pt[16], u8 ct[16]) argument
34 s0 = GETU32(pt ) ^ rk[0];
35 s1 = GETU32(pt + 4) ^ rk[1];
36 s2 = GETU32(pt + 8) ^ rk[2];
37 s3 = GETU32(pt + 12) ^ rk[3];
/external/wpa_supplicant_8/src/crypto/
H A Daes-internal-enc.c23 static void rijndaelEncrypt(const u32 rk[], int Nr, const u8 pt[16], u8 ct[16]) argument
34 s0 = GETU32(pt ) ^ rk[0];
35 s1 = GETU32(pt + 4) ^ rk[1];
36 s2 = GETU32(pt + 8) ^ rk[2];
37 s3 = GETU32(pt + 12) ^ rk[3];
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Daes-internal-enc.c23 static void rijndaelEncrypt(const u32 rk[], int Nr, const u8 pt[16], u8 ct[16]) argument
34 s0 = GETU32(pt ) ^ rk[0];
35 s1 = GETU32(pt + 4) ^ rk[1];
36 s2 = GETU32(pt + 8) ^ rk[2];
37 s3 = GETU32(pt + 12) ^ rk[3];
/external/libffi/src/sh64/
H A Dsysv.S91 pt/l 1f, tr1
102 pt/l .L_call_it, tr0
103 pt/l .L_pass_i, tr1
104 pt/l .L_pass_f, tr2
112 pt/l 3f, tr0
116 pt/l .L_pop_d, tr1
117 pt/l 2f, tr0
122 pt/l .L_pass, tr0
127 pt/l .L_pop_d_tbl, tr1
150 pt/
[all...]
/external/python/cpython2/Modules/_ctypes/libffi/src/sh64/
H A Dsysv.S91 pt/l 1f, tr1
102 pt/l .L_call_it, tr0
103 pt/l .L_pass_i, tr1
104 pt/l .L_pass_f, tr2
112 pt/l 3f, tr0
116 pt/l .L_pop_d, tr1
117 pt/l 2f, tr0
122 pt/l .L_pass, tr0
127 pt/l .L_pop_d_tbl, tr1
150 pt/
[all...]
/external/python/cpython3/Modules/_ctypes/libffi/src/sh64/
H A Dsysv.S91 pt/l 1f, tr1
102 pt/l .L_call_it, tr0
103 pt/l .L_pass_i, tr1
104 pt/l .L_pass_f, tr2
112 pt/l 3f, tr0
116 pt/l .L_pop_d, tr1
117 pt/l 2f, tr0
122 pt/l .L_pass, tr0
127 pt/l .L_pop_d_tbl, tr1
150 pt/
[all...]
/external/mesa3d/src/gallium/drivers/swr/
H A Dswr_context.cpp47 struct pipe_resource *pt,
55 pipe_resource_reference(&ps->texture, pt);
58 if (pt->target != PIPE_BUFFER) {
59 assert(surf_tmpl->u.tex.level <= pt->last_level);
60 ps->width = u_minify(pt->width0, surf_tmpl->u.tex.level);
61 ps->height = u_minify(pt->height0, surf_tmpl->u.tex.level);
70 ps->height = pt->height0;
104 struct pipe_transfer *pt; local
134 pt = CALLOC_STRUCT(pipe_transfer);
135 if (!pt)
46 swr_create_surface(struct pipe_context *pipe, struct pipe_resource *pt, const struct pipe_surface *surf_tmpl) argument
[all...]
/external/deqp/external/vulkancts/framework/vulkan/
H A DvkConcreteInstanceInterface.inl42 virtual VkBool32 getPhysicalDeviceXlibPresentationSupportKHR (VkPhysicalDevice physicalDevice, deUint32 queueFamilyIndex, pt::XlibDisplayPtr dpy, pt::XlibVisualID visualID) const;
44 virtual VkBool32 getPhysicalDeviceXcbPresentationSupportKHR (VkPhysicalDevice physicalDevice, deUint32 queueFamilyIndex, pt::XcbConnectionPtr connection, pt::XcbVisualid visual_id) const;
46 virtual VkBool32 getPhysicalDeviceWaylandPresentationSupportKHR (VkPhysicalDevice physicalDevice, deUint32 queueFamilyIndex, pt::WaylandDisplayPtr display) const;
48 virtual VkBool32 getPhysicalDeviceMirPresentationSupportKHR (VkPhysicalDevice physicalDevice, deUint32 queueFamilyIndex, pt::MirConnectionPtr connection) const;
61 virtual VkResult acquireXlibDisplayEXT (VkPhysicalDevice physicalDevice, pt::XlibDisplayPtr dpy, VkDisplayKHR display) const;
62 virtual VkResult getRandROutputDisplayEXT (VkPhysicalDevice physicalDevice, pt::XlibDisplayPtr dpy, pt::RROutput rrOutput, VkDisplayKHR* pDisplay) const;
H A DvkVirtualInstanceInterface.inl42 virtual VkBool32 getPhysicalDeviceXlibPresentationSupportKHR (VkPhysicalDevice physicalDevice, deUint32 queueFamilyIndex, pt::XlibDisplayPtr dpy, pt::XlibVisualID visualID) const = 0;
44 virtual VkBool32 getPhysicalDeviceXcbPresentationSupportKHR (VkPhysicalDevice physicalDevice, deUint32 queueFamilyIndex, pt::XcbConnectionPtr connection, pt::XcbVisualid visual_id) const = 0;
46 virtual VkBool32 getPhysicalDeviceWaylandPresentationSupportKHR (VkPhysicalDevice physicalDevice, deUint32 queueFamilyIndex, pt::WaylandDisplayPtr display) const = 0;
48 virtual VkBool32 getPhysicalDeviceMirPresentationSupportKHR (VkPhysicalDevice physicalDevice, deUint32 queueFamilyIndex, pt::MirConnectionPtr connection) const = 0;
61 virtual VkResult acquireXlibDisplayEXT (VkPhysicalDevice physicalDevice, pt::XlibDisplayPtr dpy, VkDisplayKHR display) const = 0;
62 virtual VkResult getRandROutputDisplayEXT (VkPhysicalDevice physicalDevice, pt::XlibDisplayPtr dpy, pt::RROutput rrOutput, VkDisplayKHR* pDisplay) const = 0;
/external/javassist/src/main/javassist/compiler/
H A DJvstCodeGen.java189 CtPrimitiveType pt = (CtPrimitiveType)returnType;
190 int destType = MemberResolver.descToType(pt.getDescriptor());
207 CtPrimitiveType pt = (CtPrimitiveType)clazz;
208 String wrapper = pt.getWrapperName();
211 if (pt.getDataSize() > 1)
218 "(" + pt.getDescriptor() + ")V");
620 CtPrimitiveType pt = (CtPrimitiveType)params[i];
621 String wrapper = pt.getWrapperName();
624 int s = code.addLoad(regno, pt); // ?load <regno>
626 args[0] = pt;
[all...]
/external/scapy/scapy/contrib/
H A Dmacsec.py143 assoc, pt, _ = MACsecSA.split_pkt(orig_pkt, assoclen)
150 ct = encryptor.update(pt) + encryptor.finalize()
176 pt = assoc[hdrlen:assoclen]
177 pt += decryptor.update(ct)
178 pt += decryptor.finalize()
179 hdr[MACsec].type = struct.unpack('!H', pt[0:2])[0]
180 hdr[MACsec].payload = Raw(pt[2:])

Completed in 3069 milliseconds

1234567891011>>