Searched defs:tab (Results 1 - 11 of 11) sorted by relevance

/frameworks/compile/libbcc/tests/data/src/
H A Dbellard.otccex.c47 int tab, p, c; local
51 tab = malloc(0x100);
52 p = tab;
67 while (p != tab) {
71 free(tab);
/frameworks/av/media/libstagefright/codecs/aacdec/
H A Ddecode_huff_cw_binary.cpp214 Int32 tab; local
227 tab = (cw >> 6) - 16;
231 tab = (cw >> 4) - 96 + 8;
235 tab = (cw >> 2) - 480 + 32;
239 tab = cw - 2016 + 56;
242 tab = *(huff_tab1 + tab);
244 pInputStream->usedBits -= (11 - (tab & MASK_LOW16));
245 return ((Int)(tab >> UPPER16));
252 Int32 tab; local
290 Int32 tab; local
332 Int32 tab; local
367 Int32 tab; local
411 Int32 tab; local
446 Int32 tab; local
486 Int32 tab; local
520 Int32 tab; local
570 Int32 tab; local
616 Int32 tab; local
662 Int32 tab; local
[all...]
/frameworks/compile/linkloader/android/
H A Dtest-librsloader.c38 static struct func_entry_t const tab[] = { local
51 static size_t const tab_size = sizeof(tab) / sizeof(struct func_entry_t);
59 if (name_len == tab[i].name_len && strcmp(name, tab[i].name) == 0) {
60 return tab[i].addr;
/frameworks/av/libvideoeditor/vss/3gpwriter/src/
H A DM4MP4W_Utils.c109 void M4MP4W_table32ToBE(M4OSA_UInt32* tab, M4OSA_UInt32 nb) argument
114 M4MP4W_convertInt32BE(&(tab)[i]);
281 M4OSA_Void M4MP4W_put32_Hi(M4OSA_UInt32* tab, M4OSA_UInt16 Hi) argument
284 *tab &= 0xFFFF;
285 *tab |= Hi<<16;
289 M4OSA_Void M4MP4W_put32_Lo(M4OSA_UInt32* tab, M4OSA_UInt16 Lo) argument
292 *tab &= 0xFFFF0000;
293 *tab |= Lo;
297 M4OSA_UInt16 M4MP4W_get32_Hi(M4OSA_UInt32* tab) argument
300 return (*tab >> 1
304 M4MP4W_get32_Lo(M4OSA_UInt32* tab) argument
[all...]
/frameworks/compile/linkloader/
H A Dmain.cpp114 static func_entry_t const tab[] = { local
127 static size_t const tab_size = sizeof(tab) / sizeof(func_entry_t);
134 if (name_len == tab[i].name_len && strcmp(name, tab[i].name) == 0) {
135 return tab[i].addr;
/frameworks/compile/libbcc/lib/ExecutionEngine/
H A DMCCacheWriter.cpp112 MCO_DependencyTable *tab = (MCO_DependencyTable *)malloc(tableSize); local
114 if (!tab) {
119 mpDependencyTableSection = tab;
122 tab->count = mDependencies.size();
127 MCO_Dependency *dep = &tab->table[i];
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dvlc_decode.cpp842 const VLCtab2 *tab; local
847 /* if(GetTcoeffIntra(code,pTcoef,&tab,stream)!=PV_SUCCESS) return status;*/
850 tab = &PV_DCT3Dtab3[(code >> 6) - 16];
856 tab = &PV_DCT3Dtab4[(code >> 3) - 32];
862 tab = &PV_DCT3Dtab5[(code>>1) - 8];
871 PV_BitstreamFlushBits(stream, tab->len + 1);
872 pTcoef->sign = (code >> (12 - tab->len)) & 1;
873 pTcoef->run = (uint) tab->run; //(tab->val >> 8) & 255;
874 pTcoef->level = (int) tab
1025 const VLCtab2 *tab; local
1204 const VLCtab2 *tab; local
1264 const VLCtab2 *tab; local
1319 const VLCtab2 *tab; local
1392 const VLCtab2 *tab; local
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DScrollingTabContainerView.java43 * This widget implements the dynamic action bar tab behavior that can change
121 // Recenter the tab display if we're at a new (scrollable) size.
272 private TabView createTabView(ActionBar.Tab tab, boolean forAdapter) { argument
273 final TabView tabView = new TabView(getContext(), tab, forAdapter);
289 public void addTab(ActionBar.Tab tab, boolean setSelected) { argument
290 TabView tabView = createTabView(tab, false);
304 public void addTab(ActionBar.Tab tab, int position, boolean setSelected) { argument
305 final TabView tabView = createTabView(tab, false);
361 public TabView(Context context, ActionBar.Tab tab, boolean forList) { argument
363 mTab = tab;
372 bindTab(ActionBar.Tab tab) argument
[all...]
H A DSlidingTab.java46 * Equivalently, selecting a tab will result in a call to
48 * the tab will result in whichHandle being {@link OnTriggerListener#NO_HANDLE}.
105 * Interface definition for a callback to be invoked when a tab is triggered
151 * {@link #tab} is the tab shown on the screen in the default state.
152 * {@link #text} is the view revealed as the user slides the tab out.
158 * Tab alignment - determines which side the tab should be drawn on
173 private final ImageView tab; field in class:SlidingTab.Slider
184 * @param tabId drawable for the tab
189 // Create tab
[all...]
/frameworks/base/core/java/android/app/
H A DActionBar.java500 * This tab will not be included in the action bar until it is added.
515 * Add a tab for use in tabbed navigation mode. The tab will be added at the end of the list.
516 * If this is the first tab to be added it will become the selected tab.
518 * @param tab Tab to add
520 public abstract void addTab(Tab tab); argument
523 * Add a tab for use in tabbed navigation mode. The tab will be added at the end of the list.
525 * @param tab Ta
528 addTab(Tab tab, boolean setSelected) argument
538 addTab(Tab tab, int position) argument
548 addTab(Tab tab, int position, boolean setSelected) argument
556 removeTab(Tab tab) argument
578 selectTab(Tab tab) argument
878 onTabSelected(Tab tab, FragmentTransaction ft) argument
889 onTabUnselected(Tab tab, FragmentTransaction ft) argument
900 onTabReselected(Tab tab, FragmentTransaction ft) argument
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DActionBarImpl.java212 // Switch tab layout configuration if needed
466 private void configureTab(Tab tab, int position) { argument
467 final TabImpl tabi = (TabImpl) tab;
484 public void addTab(Tab tab) { argument
485 addTab(tab, mTabs.isEmpty());
489 public void addTab(Tab tab, int position) { argument
490 addTab(tab, position, mTabs.isEmpty());
494 public void addTab(Tab tab, boolean setSelected) { argument
496 mTabScrollView.addTab(tab, setSelected);
497 configureTab(tab, mTab
504 addTab(Tab tab, int position, boolean setSelected) argument
519 removeTab(Tab tab) argument
549 selectTab(Tab tab) argument
[all...]

Completed in 231 milliseconds