Searched defs:pd (Results 1 - 25 of 78) sorted by relevance

1234

/external/llvm/lib/Support/
H A DThreadLocal.cpp30 void **pd = reinterpret_cast<void**>(&data); local
31 *pd = const_cast<void*>(d);
34 void **pd = reinterpret_cast<void**>(&data); local
35 return *pd;
/external/libvpx/libvpx/vp9/common/
H A Dvp9_reconinter.h70 struct macroblockd_plane *pd = &xd->plane[i]; local
71 setup_pred_plane(&pd->dst, buffers[i], strides[i], mi_row, mi_col, NULL,
72 pd->subsampling_x, pd->subsampling_y);
88 struct macroblockd_plane *pd = &xd->plane[j]; local
89 setup_pred_plane(&pd->pre[i], buffers[j], strides[j],
90 mi_row, mi_col, sf, pd->subsampling_x, pd->subsampling_y);
H A Dvp9_entropy.h112 struct macroblockd_plane *const pd = &xd->plane[i]; local
113 const BLOCK_SIZE plane_bsize = get_plane_block_size(bsize, pd);
114 vpx_memset(pd->above_context, 0, sizeof(ENTROPY_CONTEXT) *
116 vpx_memset(pd->left_context, 0, sizeof(ENTROPY_CONTEXT) *
H A Dvp9_reconinter.c127 struct macroblockd_plane *const pd = &xd->plane[plane]; local
128 const int bwl = b_width_log2(bsize) - pd->subsampling_x;
130 const int bh = plane_block_height(bsize, pd);
144 struct buf_2d *const pre_buf = &pd->pre[ref];
145 struct buf_2d *const dst_buf = &pd->dst;
163 pd->subsampling_x,
164 pd->subsampling_y);
/external/stlport/test/unit/
H A Duninitialized_test.cpp217 derived *pd = &d; local
218 //base **ppb = &pd;
219 vector<derived*> src(10, pd);
223 CPPUNIT_ASSERT( (*it) == pd );
/external/yaffs2/yaffs2/
H A Dyaffs_qsort.c81 char *pa, *pb, *pc, *pd, *pl, *pm, *pn; local
109 pc = pd = (char *)a + (n - 1) * es;
122 swap(pc, pd);
123 pd -= es;
145 r = min((long)(pd - pc), (long)(pn - pd - es));
149 if ((r = pd - pc) > es) {
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
H A DClassLoaderTest.java241 public PermissionCollection getPermissions(ProtectionDomain pd) { argument
/external/chromium/third_party/libjingle/source/talk/base/
H A Dbase64.cc26 static const unsigned char pd = 0xFD; // Padding member in namespace:talk_base
47 il,pd,il,il,il, 0, 1, 2, 3, 4, // 60 - 69
129 if ((il == qbuf[byte_len]) || (illegal_pads && (pd == qbuf[byte_len]))) {
137 } else if (pd == qbuf[byte_len]) {
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dbase64.cc28 static const unsigned char pd = 0xFD; // Padding member in namespace:talk_base
49 il,pd,il,il,il, 0, 1, 2, 3, 4, // 60 - 69
145 if ((il == qbuf[byte_len]) || (illegal_pads && (pd == qbuf[byte_len]))) {
153 } else if (pd == qbuf[byte_len]) {
/external/clang/test/CodeGenCXX/
H A Dptr-to-datamember.cpp85 double A::* pd = &A::d; member in class:A
95 printf("%d, %f, %f \n", a1.*pa, a1.*pf, a1.*pd);
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
H A DProtectionDomainTest.java139 ProtectionDomain pd = new ProtectionDomain(null, null, null, principals);
140 Principal[] got = pd.getPrincipals();
143 assertNotSame(got, pd.getPrincipals());
170 ProtectionDomain pd = new ProtectionDomain(cs, null);
171 policy.setTrackPD(pd);
174 pd.implies(allperm);
187 ProtectionDomain pd = new ProtectionDomain(cs, null, ClassLoader
189 policy.setTrackPD(pd);
192 pd.implies(allperm);
230 ProtectionDomain setTrackPD(ProtectionDomain pd) { argument
[all...]
/external/chromium_org/ash/wm/
H A Dwindow_manager_unittest.cc377 aura::test::TestWindowDelegate pd; local
379 &pd, aura::client::WINDOW_TYPE_PANEL, -1, gfx::Rect(10, 10, 50, 50)));
/external/clang/test/CXX/expr/expr.unary/expr.unary.noexcept/
H A Dsema.cpp136 D *pd = 0; local
137 P(dynamic_cast<V&>(*pd));
138 P(dynamic_cast<V*>(pd));
/external/jdiff/src/jdiff/
H A DRootDocToXML.java224 * @param pd an array of PackageDoc objects
265 PackageDoc[] pd = (PackageDoc[]) pdl.values().toArray(new PackageDoc[0]);
266 for (int i = 0; pd != null && i < pd.length; i++) {
267 String pkgName = pd[i].name();
271 if (!shownElement(pd[i], null))
277 int tagCount = pd[i].tags().length;
287 classList = new LinkedList(Arrays.asList(pd[i].allClasses()));
294 addPkgDocumentation(root, pd[i], 2);
857 public void addPkgDocumentation(RootDoc root, PackageDoc pd, in argument
[all...]
/external/libnfc-nci/halimpl/bcm2079x/hal/hal/
H A Dnfc_hal_nci.c58 UINT8 *ps, *pd; local
110 pd = (UINT8 *) (nfc_hal_cb.ncit_cb.p_frag_msg + 1) + nfc_hal_cb.ncit_cb.p_frag_msg->offset + nfc_hal_cb.ncit_cb.p_frag_msg->len;
111 memcpy (pd, ps, p_msg->len);
114 pd = (UINT8 *) (nfc_hal_cb.ncit_cb.p_frag_msg + 1) + nfc_hal_cb.ncit_cb.p_frag_msg->offset + 2;
115 *pd = (UINT8) (nfc_hal_cb.ncit_cb.p_frag_msg->len - NCI_MSG_HDR_SIZE);
713 UINT8 *ps, *pd; local
779 pd = (UINT8 *) (p_buf + 1) + p_buf->offset;
781 memcpy (pd, hdr, NCI_MSG_HDR_SIZE);
782 pd += 2;
783 *pd
[all...]
/external/libvpx/libvpx/vp9/decoder/
H A Dvp9_onyxd_if.c112 struct macroblockd_plane *const pd = xd->plane; local
116 pd[i].qcoeff = pbi->qcoeff[i];
117 pd[i].dqcoeff = pbi->dqcoeff[i];
118 pd[i].eobs = pbi->eobs[i];
H A Dvp9_detokenize.c223 struct macroblockd_plane *const pd = &xd->plane[plane]; local
226 const int pt = get_entropy_context(tx_size, pd->above_context + x,
227 pd->left_context + y);
228 const int eob = decode_coefs(cm, xd, r, block, pd->plane_type, seg_eob,
229 BLOCK_OFFSET(pd->dqcoeff, block), tx_size,
230 pd->dequant, pt, token_cache);
231 set_contexts(xd, pd, plane_bsize, tx_size, eob > 0, x, y);
232 pd->eobs[block] = eob;
/external/smack/asmack-master/static-src/novell-openldap-jldap/com/novell/sasl/client/
H A DDigestChallenge.java132 * @param pd ParsedDirective
138 ParsedDirective pd) throws SaslException
143 m_nonce = pd.getValue();
149 * @param pd ParsedDirective
152 ParsedDirective pd)
154 m_realms.add(pd.getValue());
164 * @param pd ParsedDirective
170 ParsedDirective pd) throws SaslException
178 parser = new TokenParser(pd.getValue());
198 * @param pd ParsedDirectiv
137 handleNonce( ParsedDirective pd) argument
151 handleRealm( ParsedDirective pd) argument
169 handleQop( ParsedDirective pd) argument
202 handleMaxbuf( ParsedDirective pd) argument
224 handleCharset( ParsedDirective pd) argument
246 handleAlgorithm( ParsedDirective pd) argument
271 handleCipher( ParsedDirective pd) argument
312 handleStale( ParsedDirective pd) argument
[all...]
/external/smack/src/com/novell/sasl/client/
H A DDigestChallenge.java132 * @param pd ParsedDirective
138 ParsedDirective pd) throws SaslException
143 m_nonce = pd.getValue();
149 * @param pd ParsedDirective
152 ParsedDirective pd)
154 m_realms.add(pd.getValue());
164 * @param pd ParsedDirective
170 ParsedDirective pd) throws SaslException
178 parser = new TokenParser(pd.getValue());
198 * @param pd ParsedDirectiv
137 handleNonce( ParsedDirective pd) argument
151 handleRealm( ParsedDirective pd) argument
169 handleQop( ParsedDirective pd) argument
202 handleMaxbuf( ParsedDirective pd) argument
224 handleCharset( ParsedDirective pd) argument
246 handleAlgorithm( ParsedDirective pd) argument
271 handleCipher( ParsedDirective pd) argument
312 handleStale( ParsedDirective pd) argument
[all...]
/external/srec/srec/clib/
H A Dsrec_arb.c201 phoneme_data *pd; local
203 pd = *pdata = (phoneme_data*)(*buffer);
207 pfread(&(pd->name), sizeof(char), MAX_PHONEME_NAME_LEN, fp);
208 pfread(&(pd->code), sizeof(asr_uint16_t), 1, fp);
210 pfread(&(pd->model_nodes), sizeof(tree_node *), 1, fp);
211 pfread(&(pd->num_states), sizeof(asr_uint16_t), 1, fp);
213 pfread(&(pd->state_nodes), sizeof(tree_node *), MAX_PHONE_STATES, fp);
214 pd++;
218 ASSERT((char *)pd == *buffer);
/external/clang/test/CXX/special/class.copy/
H A Dimplicit-move.cpp92 PrivateDestructor pd; // expected-note{{field 'pd' has an inaccessible destructor}} member in struct:ContainsPrivateDestructor
/external/clang/test/SemaCXX/
H A Dmember-pointer.cpp114 D d, *pd = &d; local
116 (void)(pd->*pai);
/external/ipsec-tools/src/racoon/
H A Dhandler.c222 struct ph1dump *pd; local
236 pd = (struct ph1dump *)buf->v;
239 memcpy(&pd->index, &iph1->index, sizeof(iph1->index));
240 pd->status = iph1->status;
241 pd->side = iph1->side;
242 memcpy(&pd->remote, iph1->remote, sysdep_sa_len(iph1->remote));
243 memcpy(&pd->local, iph1->local, sysdep_sa_len(iph1->local));
244 pd->version = iph1->version;
245 pd->etype = iph1->etype;
246 pd
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_quantize.c171 struct macroblockd_plane* pd = &xd->plane[pb_idx.plane]; local
176 BLOCK_OFFSET(pd->qcoeff, pb_idx.block),
177 BLOCK_OFFSET(pd->dqcoeff, pb_idx.block),
178 pd->dequant, p->zbin_extra, &pd->eobs[pb_idx.block], scan, iscan);
H A Dvp9_tokenize.c91 struct macroblockd_plane *pd = &xd->plane[plane]; local
94 set_contexts(xd, pd, plane_bsize, tx_size, pd->eobs[block] > 0, aoff, loff);
104 struct macroblockd_plane *pd = &xd->plane[plane]; local
109 const int eob = pd->eobs[block];
110 const PLANE_TYPE type = pd->plane_type;
111 const int16_t *qcoeff_ptr = BLOCK_OFFSET(pd->qcoeff, block);
125 pt = get_entropy_context(tx_size, pd->above_context + aoff,
126 pd->left_context + loff);
162 set_contexts(xd, pd, plane_bsiz
[all...]

Completed in 1980 milliseconds

1234