Home
last modified time | relevance | path

Searched refs:unsigned (Results 1 – 25 of 32) sorted by relevance

12

/frameworks/compile/slang/tests/P_export_types/
Dexport_types.rs7 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/
Dhash.sed1 s/return/ unsigned key =/
2 s/(unsigned char)str/((unsigned char *)iid)/g
/frameworks/compile/slang/lit-tests/opt/
Dlocals_opt_0.rs22 unsigned short us = -1;
23 const unsigned long l = (unsigned long) -1.0e8f; constant
Dlocals_opt_3.rs22 unsigned short us = -1;
23 const unsigned long l = (unsigned long) -1.0e8f; constant
Dlocals_opt_default.rs25 unsigned short us = -1;
26 const unsigned long l = (unsigned long) -1.0e8f; constant
/frameworks/compile/libbcc/tests/debuginfo/target-tests/
Dlocals.rs33 unsigned short us = -1;
34 const unsigned long l = (unsigned long) -1.0e8f; constant
/frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
Dunsigned.rs4 unsigned int ui = 37;
5 unsigned char uc = 5;
/frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
Dunsigned.rs4 unsigned int ui = 37;
5 unsigned char uc = 5;
/frameworks/base/core/java/android/bluetooth/
DBluetoothGattCharacteristic.java680 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/
Drs_types.rsh77 * 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 …]
Drs_debug.rsh104 rsDebug(const char *, unsigned long);
114 rsDebug(const char *, unsigned long long);
146 rsDebug(const char *, unsigned char);
186 rsDebug(const char *, unsigned short);
Drs_cl.rsh52 * Convert to unsigned char.
66 * Convert to unsigned short.
80 * Convert to unsigned int.
/frameworks/compile/slang/tests/F_root_graphics_13/
Droot_graphics_13.rs5 int root(unsigned int launchID) {
Dstderr.txt.expect1 …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/
Dwbalance.rs124 static unsigned char contrastClamp(int c) variable
131 return (unsigned char) c;
Dshadows.rs190 hsv.x = (unsigned short) ((v>0)?v:0);
/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
Dwbalance.rs124 static unsigned char contrastClamp(int c) variable
131 return (unsigned char) c;
Dshadows.rs190 hsv.x = (unsigned short) ((v>0)?v:0);
/frameworks/compile/mclinker/lib/Support/Windows/
DSystem.inc48 void SetRandomSeed(unsigned pSeed)
/frameworks/base/docs/html/tools/building/
Dbuilding-cmdline.jd13 <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>&lt;your_project_name&gt;</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/
DSystem.inc78 void SetRandomSeed(unsigned pSeed)
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
Dshadows.rs190 hsv.x = (unsigned short) ((v>0)?v:0);
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/
DMediaVisualizerTest.java526 private int computeEnergy(byte[] data, boolean unsigned) { in computeEnergy() argument
532 if (unsigned) { in computeEnergy()
/frameworks/base/docs/html/tools/publishing/
Dapp-signing.jd404 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>&lt;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/
Dapp-signing.jd181 …em>概要(Overview)</em>] タブを開いて [[]<strong>署名されていない .apk のエクスポート(Export an unsigned .apk)</strong>] を…

12