/development/ndk/platforms/android-9/arch-mips/include/asm/ |
D | atomic.h | 30 #define atomic_read(v) ((v)->counter) argument 31 #define atomic_set(v, i) ((v)->counter = (i)) argument 32 #define atomic_cmpxchg(v, o, n) (cmpxchg(&((v)->counter), (o), (n))) argument 34 #define atomic_xchg(v, new) (xchg(&((v)->counter), (new))) argument 35 #define atomic_inc_not_zero(v) atomic_add_unless((v), 1, 0) argument 36 #define atomic_dec_return(v) atomic_sub_return(1, (v)) argument 37 #define atomic_inc_return(v) atomic_add_return(1, (v)) argument 39 #define atomic_sub_and_test(i, v) (atomic_sub_return((i), (v)) == 0) argument 40 #define atomic_inc_and_test(v) (atomic_inc_return(v) == 0) argument 41 #define atomic_dec_and_test(v) (atomic_sub_return(1, (v)) == 0) argument [all …]
|
/development/ndk/platforms/android-9/arch-mips/include/asm/lasat/ |
D | lasat.h | 96 #define LASAT_W0_DSCTYPE(v) (((v)) & 0xf) argument 97 #define LASAT_W0_BMID(v) (((v) >> 0x04) & 0xf) argument 99 #define LASAT_W0_CPUTYPE(v) (((v) >> 0x08) & 0xf) argument 100 #define LASAT_W0_BUSSPEED(v) (((v) >> 0x0c) & 0xf) argument 101 #define LASAT_W0_CPUCLK(v) (((v) >> 0x10) & 0xf) argument 102 #define LASAT_W0_SDRAMBANKSZ(v) (((v) >> 0x14) & 0xf) argument 104 #define LASAT_W0_SDRAMBANKS(v) (((v) >> 0x18) & 0xf) argument 105 #define LASAT_W0_L2CACHE(v) (((v) >> 0x1c) & 0xf) argument 106 #define LASAT_W1_EDHAC(v) (((v)) & 0xf) argument 107 #define LASAT_W1_HIFN(v) (((v) >> 0x04) & 0x1) argument [all …]
|
/development/ndk/platforms/android-9/arch-x86/include/asm/ |
D | atomic_32.h | 27 #define atomic_read(v) ((v)->counter) argument 29 #define atomic_set(v,i) (((v)->counter) = (i)) argument 30 #define atomic_cmpxchg(v, old, new) (cmpxchg(&((v)->counter), (old), (new))) argument 31 #define atomic_xchg(v, new) (xchg(&((v)->counter), (new))) argument 32 #define atomic_inc_not_zero(v) atomic_add_unless((v), 1, 0) argument 34 #define atomic_inc_return(v) (atomic_add_return(1,v)) argument 35 #define atomic_dec_return(v) (atomic_sub_return(1,v)) argument
|
D | byteorder.h | 42 } v; in ___arch__swab64() local 44 v.u = val; in ___arch__swab64() 45 v.s.a = ___arch__swab32(v.s.a); in ___arch__swab64() 46 v.s.b = ___arch__swab32(v.s.b); in ___arch__swab64() 47 __asm__("xchgl %0,%1" : "=r" (v.s.a), "=r" (v.s.b) : "0" (v.s.a), "1" (v.s.b)); in ___arch__swab64() 49 return v.u; in ___arch__swab64()
|
D | apic_32.h | 34 #define apic_printk(v, s, a...) do { if ((v) <= apic_verbosity) printk(s, ##a); } while (0) argument
|
/development/ndk/platforms/android-3/include/asm-generic/ |
D | local.h | 39 #define cpu_local_read(v) local_read(&__get_cpu_var(v)) argument 40 #define cpu_local_set(v, i) local_set(&__get_cpu_var(v), (i)) argument 41 #define cpu_local_inc(v) local_inc(&__get_cpu_var(v)) argument 42 #define cpu_local_dec(v) local_dec(&__get_cpu_var(v)) argument 43 #define cpu_local_add(i, v) local_add((i), &__get_cpu_var(v)) argument 44 #define cpu_local_sub(i, v) local_sub((i), &__get_cpu_var(v)) argument 46 #define __cpu_local_inc(v) __local_inc(&__get_cpu_var(v)) argument 47 #define __cpu_local_dec(v) __local_dec(&__get_cpu_var(v)) argument 48 #define __cpu_local_add(i, v) __local_add((i), &__get_cpu_var(v)) argument 49 #define __cpu_local_sub(i, v) __local_sub((i), &__get_cpu_var(v)) argument
|
/development/ndk/platforms/android-3/include/linux/ |
D | pkt_cls.h | 20 #define _TC_MAKEMASK(v,n) (_TC_MAKE32((_TC_MAKE32(1)<<(v))-1) << _TC_MAKE32(n)) argument 21 #define _TC_MAKEVALUE(v,n) (_TC_MAKE32(v) << _TC_MAKE32(n)) argument 22 #define _TC_GETVALUE(v,n,m) ((_TC_MAKE32(v) & _TC_MAKE32(m)) >> _TC_MAKE32(n)) argument 25 #define SET_TC_MUNGED(v) ( TC_MUNGED | (v & ~TC_MUNGED)) argument 26 #define CLR_TC_MUNGED(v) ( v & ~TC_MUNGED) argument 29 #define SET_TC_OK2MUNGE(v) ( TC_OK2MUNGE | (v & ~TC_OK2MUNGE)) argument 30 #define CLR_TC_OK2MUNGE(v) ( v & ~TC_OK2MUNGE) argument 36 #define SET_TC_VERD(v,n) ((V_TC_VERD(n)) | (v & ~M_TC_VERD)) argument 42 #define SET_TC_FROM(v,n) ((V_TC_FROM(n)) | (v & ~M_TC_FROM)) argument 48 #define SET_TC_NCLS(v) ( TC_NCLS | (v & ~TC_NCLS)) argument [all …]
|
D | ipmi_smi.h | 74 #define ipmi_version_major(v) ((v)->ipmi_version & 0xf) argument 75 #define ipmi_version_minor(v) ((v)->ipmi_version >> 4) argument
|
D | msdos_fs.h | 25 #define CF_LE_W(v) le16_to_cpu(v) argument 26 #define CF_LE_L(v) le32_to_cpu(v) argument 27 #define CT_LE_W(v) cpu_to_le16(v) argument 28 #define CT_LE_L(v) cpu_to_le32(v) argument
|
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
D | Animation.java | 67 public void onClick(View v) { 79 public void onClick(View v) { 92 public void onClick(View v) { 106 public void onClick(View v) { 120 public void onClick(View v) { 124 v, 0, 0, v.getWidth(), v.getHeight()); 131 public void onClick(View v) { 136 v.setDrawingCacheEnabled(true); 137 v.setPressed(false); 138 v.refreshDrawableState(); [all …]
|
D | FragmentHideShow.java | 53 public void onClick(View v) { in addShowHideListener() 75 View v = inflater.inflate(R.layout.labeled_text_edit, container, false); in onCreateView() local 76 View tv = v.findViewById(R.id.msg); in onCreateView() 80 mTextView = (TextView)v.findViewById(R.id.saved); in onCreateView() 84 return v; in onCreateView() 101 View v = inflater.inflate(R.layout.labeled_text_edit, container, false); in onCreateView() local 102 View tv = v.findViewById(R.id.msg); in onCreateView() 109 ((TextView)v.findViewById(R.id.saved)).setSaveEnabled(true); in onCreateView() 110 return v; in onCreateView()
|
D | FragmentStackFragment.java | 50 View v = inflater.inflate(R.layout.fragment_stack, container, false); in onCreateView() local 53 Button button = (Button)v.findViewById(R.id.new_fragment); in onCreateView() 55 public void onClick(View v) { in onCreateView() 59 button = (Button)v.findViewById(R.id.delete_fragment); in onCreateView() 61 public void onClick(View v) { in onCreateView() 66 return v; in onCreateView()
|
D | StatusBarNotifications.java | 55 public void onClick(View v) { in onCreate() 63 public void onClick(View v) { in onCreate() 71 public void onClick(View v) { in onCreate() 78 public void onClick(View v) { in onCreate() 86 public void onClick(View v) { in onCreate() 93 public void onClick(View v) { in onCreate() 100 public void onClick(View v) { in onCreate() 107 public void onClick(View v) { in onCreate() 114 public void onClick(View v) { in onCreate() 121 public void onClick(View v) { in onCreate() [all …]
|
D | FragmentMenuFragment.java | 42 public void onClick(View v) { 50 View v = inflater.inflate(R.layout.fragment_menu, container, false); in onCreateView() local 68 mCheckBox1 = (CheckBox)v.findViewById(R.id.menu1); in onCreateView() 70 mCheckBox2 = (CheckBox)v.findViewById(R.id.menu2); in onCreateView() 76 return v; in onCreateView()
|
/development/tools/emulator/system/camera/ |
D | Converters.h | 153 R8G8B8ToYUV(uint8_t r, uint8_t g, uint8_t b, uint8_t* y, uint8_t* u, uint8_t* v) in R8G8B8ToYUV() argument 157 *v = RGB2V((int)r, (int)g, (int)b); in R8G8B8ToYUV() 162 RGB565ToYUV(uint16_t rgb, uint8_t* y, uint8_t* u, uint8_t* v) in RGB565ToYUV() argument 164 R8G8B8ToYUV(R16_32(rgb), G16_32(rgb), B16_32(rgb), y, u, v); in RGB565ToYUV() 169 RGB32ToYUV(uint32_t rgb, uint8_t* y, uint8_t* u, uint8_t* v) in RGB32ToYUV() argument 173 R8G8B8ToYUV(rgb_c.r, rgb_c.g, rgb_c.b, y, u, v); in RGB32ToYUV() 199 #define YUV2R(y, u, v) clamp((298 * ((y)-16) + 409 * ((v)-128) + 128) >> 8) argument 200 #define YUV2G(y, u, v) clamp((298 * ((y)-16) - 100 * ((u)-128) - 208 * ((v)-128) + 128) >> 8) argument 201 #define YUV2B(y, u, v) clamp((298 * ((y)-16) + 516 * ((u)-128) + 128) >> 8) argument 206 YUVToRGB565(int y, int u, int v) in YUVToRGB565() argument [all …]
|
/development/ndk/platforms/android-3/arch-arm/include/asm/arch/ |
D | io.h | 30 #define omap_writeb(v,a) (*(volatile unsigned char *)IO_ADDRESS(a) = (v)) argument 31 #define omap_writew(v,a) (*(volatile unsigned short *)IO_ADDRESS(a) = (v)) argument 32 #define omap_writel(v,a) (*(volatile unsigned int *)IO_ADDRESS(a) = (v)) argument
|
/development/samples/Support4Demos/src/com/example/android/supportv4/app/ |
D | FragmentStackFragmentSupport.java | 51 View v = inflater.inflate(R.layout.fragment_stack, container, false); in onCreateView() local 54 Button button = (Button)v.findViewById(R.id.new_fragment); in onCreateView() 56 public void onClick(View v) { in onCreateView() 60 button = (Button)v.findViewById(R.id.delete_fragment); in onCreateView() 62 public void onClick(View v) { in onCreateView() 66 button = (Button)v.findViewById(R.id.home); in onCreateView() 68 public void onClick(View v) { in onCreateView() 78 return v; in onCreateView()
|
D | FragmentHideShowSupport.java | 54 public void onClick(View v) { in addShowHideListener() 76 View v = inflater.inflate(R.layout.labeled_text_edit, container, false); in onCreateView() local 77 View tv = v.findViewById(R.id.msg); in onCreateView() 81 mTextView = (TextView)v.findViewById(R.id.saved); in onCreateView() 85 return v; in onCreateView() 102 View v = inflater.inflate(R.layout.labeled_text_edit, container, false); in onCreateView() local 103 View tv = v.findViewById(R.id.msg); in onCreateView() 110 ((TextView)v.findViewById(R.id.saved)).setSaveEnabled(true); in onCreateView() 111 return v; in onCreateView()
|
D | FragmentMenuFragmentSupport.java | 43 public void onClick(View v) { 51 View v = inflater.inflate(R.layout.fragment_menu, container, false); in onCreateView() local 69 mCheckBox1 = (CheckBox)v.findViewById(R.id.menu1); in onCreateView() 71 mCheckBox2 = (CheckBox)v.findViewById(R.id.menu2); in onCreateView() 77 return v; in onCreateView()
|
/development/samples/WiFiDirectServiceDiscovery/src/com/example/android/wifidirect/discovery/ |
D | WiFiDirectServicesList.java | 46 public void onListItemClick(ListView l, View v, int position, long id) { in onListItemClick() argument 50 ((TextView) v.findViewById(android.R.id.text2)).setText("Connecting"); in onListItemClick() 66 View v = convertView; in getView() local 67 if (v == null) { in getView() 70 v = vi.inflate(android.R.layout.simple_list_item_2, null); in getView() 74 TextView nameText = (TextView) v in getView() 80 TextView statusText = (TextView) v in getView() 84 return v; in getView()
|
/development/samples/devbytes/animation/WindowAnimations/src/com/example/android/windowanimations/ |
D | WindowAnimations.java | 51 public void onClick(View v) { in onCreate() 62 public void onClick(View v) { in onCreate() 79 public void onClick(View v) { in onCreate() 83 v, 0, 0, v.getWidth(), v.getHeight()).toBundle(); in onCreate() 93 public void onClick(View v) { in onCreate()
|
/development/samples/BackupRestore/src/com/example/android/backuprestore/ |
D | BackupRestoreActivity.java | 164 Log.v(TAG, "datafile exists"); in populateUI() 168 Log.v(TAG, " mayo=" + addMayo in populateUI() 174 Log.v(TAG, "creating default datafile"); in populateUI() 201 Log.v(TAG, "New radio item selected: " + checkedId); in populateUI() 211 Log.v(TAG, "Checkbox toggled: " + buttonView); in populateUI() 229 Log.v(TAG, "NEW STATE: mayo=" + addMayo in writeDataToFileLocked() 259 public void onRestoreButtonClick(View v) { in onRestoreButtonClick() argument 260 Log.v(TAG, "Requesting restore of our most recent data"); in onRestoreButtonClick() 265 Log.v(TAG, "Restore finished, error = " + error); in onRestoreButtonClick()
|
/development/samples/HoneycombGallery/src/com/example/android/hcgallery/ |
D | TitlesFragment.java | 115 public boolean onItemLongClick(AdapterView<?> av, View v, int pos, long id) { in onActivityCreated() 116 final String title = (String) ((TextView) v).getText(); in onActivityCreated() 121 v.startDrag(data, new MyDragShadowBuilder(v), null, 0); in onActivityCreated() 159 public void onListItemClick(ListView l, View v, int position, long id) { in onListItemClick() argument 188 public MyDragShadowBuilder(View v) { in MyDragShadowBuilder() argument 189 super(v); in MyDragShadowBuilder() 191 final TypedArray a = v.getContext().obtainStyledAttributes(R.styleable.AppTheme); in MyDragShadowBuilder() 193 mShadow.setCallback(v); in MyDragShadowBuilder() 194 mShadow.setBounds(0, 0, v.getWidth(), v.getHeight()); in MyDragShadowBuilder()
|
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
D | ChronometerDemo.java | 62 public void onClick(View v) { 68 public void onClick(View v) { 74 public void onClick(View v) { 80 public void onClick(View v) { 86 public void onClick(View v) {
|
/development/samples/SampleSyncAdapter/src/com/example/android/samplesync/authenticator/ |
D | AuthenticationService.java | 37 Log.v(TAG, "SampleSyncAdapter Authentication Service started."); in onCreate() 45 Log.v(TAG, "SampleSyncAdapter Authentication Service stopped."); in onDestroy() 52 Log.v(TAG, "getBinder()... returning the AccountAuthenticator binder for intent " in onBind()
|