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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/compile/mclinker/unittests/
FragmentRefTest.cpp 53 RegionFragment *frag = new RegionFragment(region); local
54 FragmentRef *ref = FragmentRef::Create(*frag, 0x0);
58 ASSERT_EQ('H', frag->getRegion().data()[0]);
59 ASSERT_TRUE(4096 == frag->getRegion().size());
60 ASSERT_EQ(frag, ref->frag());
61 ASSERT_EQ('H', static_cast<RegionFragment*>(ref->frag())->getRegion().data()[0]);
62 ASSERT_TRUE(4096 == static_cast<RegionFragment*>(ref->frag())->getRegion().size());
65 ASSERT_TRUE(RegionFragment::classof(frag));
67 delete frag;
    [all...]
MCRegionFragmentTest.cpp 52 MCRegionFragment *frag = new MCRegionFragment(*region); local
54 ASSERT_FALSE(llvm::MCDataFragment::classof(frag));
55 ASSERT_TRUE(MCRegionFragment::classof(frag));
56 delete frag;
67 llvm::MCFragment *frag = new MCRegionFragment(*region); local
69 ASSERT_FALSE(llvm::MCDataFragment::classof(frag));
70 ASSERT_TRUE(MCRegionFragment::classof(frag));
71 delete frag;
  /frameworks/compile/mclinker/lib/Target/
GOT.cpp 36 SectionData::iterator frag, fragEnd = m_SectionData->end(); local
37 for (frag = m_SectionData->begin(); frag != fragEnd; ++frag) {
38 frag->setOffset(offset);
39 offset += frag->size();
  /packages/experimental/LoaderApp/src/com/android/loaderapp/
DetailsNormal.java 31 ContactFragment frag = (ContactFragment) findFragmentById(R.id.details); local
32 frag.setController(new ContactFragment.DefaultController(this));
33 frag.loadContact(getIntent().getData());
  /prebuilts/misc/common/swig/include/2.0.11/typemaps/
valtypes.swg 18 * %value_in_typemap(asval_meth,frag,Type)
19 * %value_varin_typemap(asval_meth,frag,Type)
20 * %value_typecheck_typemap(checkcode,asval_meth,frag,Type)
21 * %value_directorout_typemap(asval_meth,frag,Type)
23 * %value_out_typemap(from_meth,frag,Type)
24 * %value_varout_typemap(from_meth,frag,Type)
25 * %value_constcode_typemap(from_meth,frag,Type)
26 * %value_directorin_typemap(from_meth,frag,Type)
27 * %value_throws_typemap(from_meth,frag,Type)
33 %define %value_in_typemap(asval_meth,frag,Type...
    [all...]
ptrtypes.swg 18 * %ptr_in_typemap(asptr_meth,frag,Type)
19 * %ptr_varin_typemap(asptr_meth,frag,Type)
20 * %ptr_typecheck_typemap(check,asptr_meth,frag,Type)
21 * %ptr_directorout_typemap(asptr_meth,frag,Type)
28 %define %ptr_in_typemap(asptr_meth,frag,Type...)
29 %typemap(in,fragment=frag) Type {
39 %typemap(in,fragment=frag) const Type & (int res = SWIG_OLDOBJ) {
53 %define %ptr_varin_typemap(asptr_meth,frag,Type...)
54 %typemap(varin,fragment=frag) Type {
68 %define %ptr_directorout_typemap(asptr_meth,frag,Type...
    [all...]
  /external/iptables/extensions/
libip6t_frag.c 19 "frag match options:\n"
110 const struct ip6t_frag *frag = (struct ip6t_frag *)match->data; local
112 printf(" frag ");
113 print_ids("id", frag->ids[0], frag->ids[1],
114 frag->invflags & IP6T_FRAG_INV_IDS);
116 if (frag->flags & IP6T_FRAG_LEN) {
118 frag->invflags & IP6T_FRAG_INV_LEN ? "!" : "",
119 frag->hdrlen);
122 if (frag->flags & IP6T_FRAG_RES
    [all...]
  /external/deqp/modules/gles3/functional/
es3fShaderIndexingTests.cpp 271 std::ostringstream frag; local
272 frag << "#version 300 es\n";
273 frag << "precision mediump int;\n";
274 frag << "layout(location = 0) out mediump vec4 o_color;\n";
276 frag << "uniform mediump int ui_zero, ui_one, ui_two, ui_three;\n";
278 frag << "uniform int ui_four;\n";
279 frag << "in ${PRECISION} ${VAR_TYPE} var[${ARRAY_LEN}];\n";
280 frag << "\n";
281 frag << "void main()\n";
282 frag << "{\n"
339 std::ostringstream frag; local
445 std::ostringstream frag; local
605 std::ostringstream frag; local
805 std::ostringstream frag; local
    [all...]
es3fShaderSwitchTests.cpp 92 std::ostringstream frag; local
93 std::ostringstream& op = isVertex ? vtx : frag;
98 frag << "#version 300 es\n"
104 frag << "in mediump vec4 v_color;\n";
109 frag << "in highp vec4 v_coords;\n";
119 frag << "\n"
139 frag << " o_color = v_color;\n";
144 frag << " o_color = vec4(res, 1.0);\n";
148 frag << "}\n";
150 return new ShaderSwitchCase(context, name, desc, isVertex, vtx.str().c_str(), frag.str().c_str()
    [all...]
es3fShaderLoopTests.cpp 246 std::ostringstream frag; local
247 std::ostringstream& op = isVertexCase ? vtx : frag;
250 frag << "#version 300 es\n";
254 frag << "layout(location = 0) out mediump vec4 o_color;\n";
262 frag << "in mediump vec3 v_color;\n";
267 frag << "in mediump vec4 v_coords;\n";
272 frag << "in mediump float v_one;\n";
299 frag << "\n";
300 frag << "void main()\n";
301 frag << "{\n"
444 std::ostringstream frag; local
    [all...]
  /frameworks/compile/mclinker/lib/Fragment/
FragmentRef.cpp 55 Fragment* frag = &pFrag; local
57 while (NULL != frag) {
58 offset -= frag->size();
61 frag = frag->getNextNode();
63 if ((frag != NULL) && (frag->size() != 0)) {
65 frag = frag->getNextNode();
67 offset += frag->size()
    [all...]
  /external/openssl/ssl/
d1_both.c 175 hm_fragment *frag = NULL; local
179 frag = (hm_fragment *)OPENSSL_malloc(sizeof(hm_fragment));
180 if ( frag == NULL)
188 OPENSSL_free(frag);
193 /* zero length fragment gets zero frag->fragment */
194 frag->fragment = buf;
203 OPENSSL_free(frag);
209 frag->reassembly = bitmask;
211 return frag;
215 dtls1_hm_fragment_free(hm_fragment *frag)
544 hm_fragment *frag; local
594 hm_fragment *frag = NULL; local
707 hm_fragment *frag = NULL; local
1151 hm_fragment *frag; local
1175 hm_fragment *frag; local
1241 hm_fragment *frag ; local
    [all...]
  /external/chromium_org/third_party/openssl/openssl/ssl/
d1_both.c 175 hm_fragment *frag = NULL; local
179 frag = (hm_fragment *)OPENSSL_malloc(sizeof(hm_fragment));
180 if ( frag == NULL)
188 OPENSSL_free(frag);
193 /* zero length fragment gets zero frag->fragment */
194 frag->fragment = buf;
203 OPENSSL_free(frag);
209 frag->reassembly = bitmask;
211 return frag;
215 dtls1_hm_fragment_free(hm_fragment *frag)
537 hm_fragment *frag; local
587 hm_fragment *frag = NULL; local
700 hm_fragment *frag = NULL; local
1144 hm_fragment *frag; local
1168 hm_fragment *frag; local
1234 hm_fragment *frag ; local
    [all...]
  /external/deqp/modules/gles2/functional/
es2fShaderIndexingTests.cpp 300 std::ostringstream frag; local
301 frag << "precision mediump int;\n";
303 frag << "uniform mediump int ui_zero, ui_one, ui_two, ui_three;\n";
305 frag << "uniform int ui_four;\n";
306 frag << "varying ${PRECISION} ${VAR_TYPE} var[${ARRAY_LEN}];\n";
307 frag << "\n";
308 frag << "void main()\n";
309 frag << "{\n";
310 frag << " ${PRECISION} ${VAR_TYPE} res = ${VAR_TYPE}(0.0);\n";
313 frag << " res += var[0];\n"
377 std::ostringstream frag; local
487 std::ostringstream frag; local
651 std::ostringstream frag; local
837 std::ostringstream frag; local
    [all...]
  /external/ipsec-tools/src/racoon/
isakmp_frag.c 93 vchar_t *frag; local
128 if ((frag = vmalloc(fraglen)) == NULL) {
134 set_isakmp_header1(frag, iph1, ISAKMP_NPTYPE_FRAG);
135 hdr = (struct isakmp *)frag->v;
151 if (isakmp_send(iph1, frag) < 0) {
156 vfree(frag);
182 struct isakmp_frag *frag; local
190 if (msg->l < sizeof(*isakmp) + sizeof(*frag)) {
196 frag = (struct isakmp_frag *)(isakmp + 1);
199 * frag->len is the frag payload data plus the frag payload header
    [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
crestst.h 46 UBool testTag(const char* frag, UBool in_Root, UBool in_te, UBool in_te_IN);
  /external/icu/icu4c/source/test/cintltst/
crestst.h 46 UBool testTag(const char* frag, UBool in_Root, UBool in_te, UBool in_te_IN);
  /frameworks/compile/mclinker/lib/LD/
BranchIslandFactory.cpp 50 Fragment* frag = (*it).getPrevNode(); local
51 while (frag != NULL && frag->getKind() == Fragment::Alignment) {
52 frag = frag->getPrevNode();
54 if (frag != NULL) {
55 produce(*frag);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
cfmfile.py 44 for frag in srccfrg.fragments:
45 if frag.architecture == 'pwpc' and architecture == 'm68k':
47 if frag.architecture == 'm68k' and architecture == 'pwpc':
49 dstcfrg.append(frag)
51 frag.copydata(dstfile)
89 frag = FragmentDescriptor(self.path, data)
90 data = data[frag.memberSize:]
91 self.fragments.append(frag)
96 for frag in self.fragments:
97 data = data + frag.build(
    [all...]
  /frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonLDBackend.cpp 604 symbol->fragRef()->frag()->getParent()->getSection().addr();
801 Fragment* frag = new FillFragment(0x0, 1, (*com_sym)->size()); local
807 ObjectBuilder::AppendFragment(*frag,
810 (*com_sym)->setFragmentRef(FragmentRef::Create(*frag, 0));
815 ObjectBuilder::AppendFragment(*frag,
818 (*com_sym)->setFragmentRef(FragmentRef::Create(*frag, 0));
823 ObjectBuilder::AppendFragment(*frag,
826 (*com_sym)->setFragmentRef(FragmentRef::Create(*frag, 0));
831 ObjectBuilder::AppendFragment(*frag,
834 (*com_sym)->setFragmentRef(FragmentRef::Create(*frag, 0))
866 Fragment* frag = new FillFragment(0x0, 1, (*com_sym)->size()); local
931 SectionData::FragmentListType::iterator frag, fragEnd = to_list.end(); local
973 Fragment* frag = NULL; local
1001 SectionData::FragmentListType::iterator frag, fragEnd = to_list.end(); local
    [all...]
  /external/qemu/telephony/
sms.c 1421 SmsFragment frag = calloc(sizeof(*frag) + max*sizeof(SmsPDU), 1 ); local
1445 SmsFragment frag = rec->fragments; local
1491 SmsFragment frag; local
1568 SmsFragment frag = *pnode; local
1601 SmsFragment frag = *pnode; local
1614 SmsFragment frag = *pnode; local
    [all...]
  /development/samples/HoneycombGallery/src/com/example/android/hcgallery/
ContentActivity.java 38 ContentFragment frag = (ContentFragment) getFragmentManager().findFragmentById(R.id.content_frag); local
39 frag.updateContentAndRecycleBitmap(category, position);
  /external/chromium_org/third_party/icu/source/test/intltest/
restest.h 46 UBool testTag(const char* frag, UBool in_Root, UBool in_te, UBool in_te_IN);
restsnew.h 49 UBool testTag(const char* frag, UBool in_Root, UBool in_te, UBool in_te_IN);
  /external/icu/icu4c/source/test/intltest/
restest.h 46 UBool testTag(const char* frag, UBool in_Root, UBool in_te, UBool in_te_IN);

Completed in 693 milliseconds

1 2 3 4 5 6 7 8 91011>>