/frameworks/compile/slang/tests/P_export_types/ |
D | export_types.rs | 7 unsigned char uc = 'a'; 9 unsigned short us = 1; 11 unsigned int ui; 13 unsigned long ul = 13; 15 unsigned long long ull = 34;
|
/frameworks/wilhelm/tools/hashgen/ |
D | hash.sed | 1 s/return/ unsigned key =/ 2 s/(unsigned char)str/((unsigned char *)iid)/g
|
/frameworks/compile/slang/lit-tests/opt/ |
D | locals_opt_0.rs | 22 unsigned short us = -1; 23 const unsigned long l = (unsigned long) -1.0e8f; constant
|
D | locals_opt_3.rs | 22 unsigned short us = -1; 23 const unsigned long l = (unsigned long) -1.0e8f; constant
|
D | locals_opt_default.rs | 25 unsigned short us = -1; 26 const unsigned long l = (unsigned long) -1.0e8f; constant
|
/frameworks/compile/libbcc/tests/debuginfo/target-tests/ |
D | locals.rs | 33 unsigned short us = -1; 34 const unsigned long l = (unsigned long) -1.0e8f; constant
|
/frameworks/rs/java/tests/RsTest/src/com/android/rs/test/ |
D | unsigned.rs | 4 unsigned int ui = 37; 5 unsigned char uc = 5;
|
/frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/ |
D | unsigned.rs | 4 unsigned int ui = 37; 5 unsigned char uc = 5;
|
/frameworks/base/core/java/android/bluetooth/ |
D | BluetoothGattCharacteristic.java | 680 private int unsignedToSigned(int unsigned, int size) { in unsignedToSigned() argument 681 if ((unsigned & (1 << size-1)) != 0) { in unsignedToSigned() 682 unsigned = -1 * ((1 << size-1) - (unsigned & ((1 << size-1) - 1))); in unsignedToSigned() 684 return unsigned; in unsignedToSigned()
|
/frameworks/rs/scriptc/ |
D | rs_types.rsh | 77 * 8 bit unsigned integer type 79 typedef unsigned char uint8_t; 81 * 16 bit unsigned integer type 83 typedef unsigned short uint16_t; 85 * 32 bit unsigned integer type 87 typedef unsigned int uint32_t; 89 * 64 bit unsigned integer type 91 typedef unsigned long long uint64_t; 93 * 8 bit unsigned integer type 97 * 16 bit unsigned integer type [all …]
|
D | rs_debug.rsh | 104 rsDebug(const char *, unsigned long); 114 rsDebug(const char *, unsigned long long); 146 rsDebug(const char *, unsigned char); 186 rsDebug(const char *, unsigned short);
|
D | rs_cl.rsh | 52 * Convert to unsigned char. 66 * Convert to unsigned short. 80 * Convert to unsigned int.
|
/frameworks/compile/slang/tests/F_root_graphics_13/ |
D | root_graphics_13.rs | 5 int root(unsigned int launchID) {
|
D | stderr.txt.expect | 1 …phics_13.rs:5:23: error: invalid parameter type for legacy graphics root() function: 'unsigned int'
|
/frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/ |
D | wbalance.rs | 124 static unsigned char contrastClamp(int c) variable 131 return (unsigned char) c;
|
D | shadows.rs | 190 hsv.x = (unsigned short) ((v>0)?v:0);
|
/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/ |
D | wbalance.rs | 124 static unsigned char contrastClamp(int c) variable 131 return (unsigned char) c;
|
D | shadows.rs | 190 hsv.x = (unsigned short) ((v>0)?v:0);
|
/frameworks/compile/mclinker/lib/Support/Windows/ |
D | System.inc | 48 void SetRandomSeed(unsigned pSeed)
|
/frameworks/base/docs/html/tools/building/ |
D | building-cmdline.jd | 13 <li><a href="#ManualReleaseMode">Build unsigned</a></li> 45 When you build in release mode, the .apk file is <em>unsigned</em>, so you 106 zipalign} tool. There are two approaches to building in release mode: build an unsigned package 110 <h3 id="ManualReleaseMode">Build unsigned</h3> 112 <p>If you build your application <em>unsigned</em>, then you will need to manually sign and align 115 <p>To build an <em>unsigned</em> .apk in release mode:</p> 128 directory, named <code><em><your_project_name></em>-unsigned.apk</code>.</p> 130 <p class="note"><strong>Note:</strong> The .apk file is <em>unsigned</em> at this point and can't 133 <p>Once you have created the unsigned .apk, your next step is to sign the .apk with your private 153 procedure manually, <a href="#ManualReleaseMode">build unsigned</a> and then continue with
|
/frameworks/compile/mclinker/lib/Support/Unix/ |
D | System.inc | 78 void SetRandomSeed(unsigned pSeed)
|
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/ |
D | shadows.rs | 190 hsv.x = (unsigned short) ((v>0)?v:0);
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/ |
D | MediaVisualizerTest.java | 526 private int computeEnergy(byte[] data, boolean unsigned) { in computeEnergy() argument 532 if (unsigned) { in computeEnergy()
|
/frameworks/base/docs/html/tools/publishing/ |
D | app-signing.jd | 404 You can not release your application unsigned, or signed with the debug key.</p> 408 <p>To export an <em>unsigned</em> APK from Eclipse, right-click the project in the Package 410 Package</strong>. Then specify the file location for the unsigned APK. 412 the <strong>Manifest</strong> tab, and click <strong>Export an unsigned APK</strong>.)</p> 426 in your project {@code bin/} will be <code><em><your_project_name></em>-unsigned.apk</code>. 427 Because the application APK is still unsigned, you must manually sign it with your private
|
/frameworks/base/docs/html-intl/ja/guide/publishing/ |
D | app-signing.jd | 181 …em>概要(Overview)</em>] タブを開いて [[]<strong>署名されていない .apk のエクスポート(Export an unsigned .apk)</strong>] を…
|