/frameworks/opt/emoji/ |
EmojiFactory.h | 26 // by the other vendors (careers) are called Vendor Specific PUA (vsp). 48 // Returns binary image data corresponding to Vendor-specific PUA "vsp". 49 // Returns NULL when there's no mapping for "vsp". 50 virtual const char *GetImageBinaryFromVendorSpecificPua(int vsp, 53 GetAndroidPuaFromVendorSpecificPua(vsp), size); 76 // Returns Android PUA corresponding to Vendor-Specific Unicode "vsp". Returns 77 // -1 when there's no mapping from "vsp" to a Android PUA. 78 virtual int GetAndroidPuaFromVendorSpecificPua(int vsp) = 0;
|
/external/chromium_org/third_party/libevent/compat/sys/ |
_libevent_time.h | 111 #define timespecadd(tsp, usp, vsp) \ 113 (vsp)->tv_sec = (tsp)->tv_sec + (usp)->tv_sec; \ 114 (vsp)->tv_nsec = (tsp)->tv_nsec + (usp)->tv_nsec; \ 115 if ((vsp)->tv_nsec >= 1000000000L) { \ 116 (vsp)->tv_sec++; \ 117 (vsp)->tv_nsec -= 1000000000L; \ 120 #define timespecsub(tsp, usp, vsp) \ 122 (vsp)->tv_sec = (tsp)->tv_sec - (usp)->tv_sec; \ 123 (vsp)->tv_nsec = (tsp)->tv_nsec - (usp)->tv_nsec; \ 124 if ((vsp)->tv_nsec < 0) { [all...] |
_time.h | 111 #define timespecadd(tsp, usp, vsp) \ 113 (vsp)->tv_sec = (tsp)->tv_sec + (usp)->tv_sec; \ 114 (vsp)->tv_nsec = (tsp)->tv_nsec + (usp)->tv_nsec; \ 115 if ((vsp)->tv_nsec >= 1000000000L) { \ 116 (vsp)->tv_sec++; \ 117 (vsp)->tv_nsec -= 1000000000L; \ 120 #define timespecsub(tsp, usp, vsp) \ 122 (vsp)->tv_sec = (tsp)->tv_sec - (usp)->tv_sec; \ 123 (vsp)->tv_nsec = (tsp)->tv_nsec - (usp)->tv_nsec; \ 124 if ((vsp)->tv_nsec < 0) { [all...] |
/external/chromium_org/third_party/skia/tools/ |
git_utils.py | 84 git, vsp = self._git, self._vsp 95 vsp.check_call([git, 'stash', 'save']) 96 self._original_branch = git_branch_name(vsp.verbose) 97 vsp.check_call( 102 git, vsp = self._git, self._vsp 105 status = vsp.check_output([git, 'status', '-s']) 107 vsp.check_call([git, 'checkout', '-q', self._original_branch]) 109 vsp.check_call([git, 'stash', 'pop']) 112 vsp.check_call([git, 'branch', '-D', self._branch_name]) 125 vsp = misc_utils.VerboseSubprocess(verbose [all...] |
add_codereview_message.py | 66 vsp = misc_utils.VerboseSubprocess(verbose) 74 vsp.check_call([git, 'fetch', '-q', 'origin']) 77 vsp.check_call([git, 'cl', 'patch', issue]) 95 vsp.check_call(git_upload) 96 print vsp.check_output([git, 'cl', 'issue'])
|
roll_deps.py | 90 self.vsp = misc_utils.VerboseSubprocess(self.verbose) 209 config.vsp.check_call([git, 'fetch', '-q', 'origin']) 216 config.vsp.check_call( 250 git_hash = config.vsp.strip_output( 276 git_hash = config.vsp.strip_output( 302 git_hash = config.vsp.strip_output( 353 git, vsp = config.git, config.vsp 358 vsp.check_call([git, 'add', filename]) 360 vsp.check_call([git, 'commit', '-q', '-m', message] [all...] |
/external/skia/tools/ |
git_utils.py | 84 git, vsp = self._git, self._vsp 95 vsp.check_call([git, 'stash', 'save']) 96 self._original_branch = git_branch_name(vsp.verbose) 97 vsp.check_call( 102 git, vsp = self._git, self._vsp 105 status = vsp.check_output([git, 'status', '-s']) 107 vsp.check_call([git, 'checkout', '-q', self._original_branch]) 109 vsp.check_call([git, 'stash', 'pop']) 112 vsp.check_call([git, 'branch', '-D', self._branch_name]) 125 vsp = misc_utils.VerboseSubprocess(verbose [all...] |
add_codereview_message.py | 66 vsp = misc_utils.VerboseSubprocess(verbose) 74 vsp.check_call([git, 'fetch', '-q', 'origin']) 77 vsp.check_call([git, 'cl', 'patch', issue]) 95 vsp.check_call(git_upload) 96 print vsp.check_output([git, 'cl', 'issue'])
|
roll_deps.py | 90 self.vsp = misc_utils.VerboseSubprocess(self.verbose) 209 config.vsp.check_call([git, 'fetch', '-q', 'origin']) 216 config.vsp.check_call( 250 git_hash = config.vsp.strip_output( 276 git_hash = config.vsp.strip_output( 302 git_hash = config.vsp.strip_output( 353 git, vsp = config.git, config.vsp 358 vsp.check_call([git, 'add', filename]) 360 vsp.check_call([git, 'commit', '-q', '-m', message] [all...] |
/external/llvm/test/MC/ARM/ |
eh-directive-unwind_raw.s | 83 @ CHECK: 0x9B ; vsp = r11 84 @ CHECK: 0x40 ; vsp = vsp - 4 102 @ CHECK: 0x9B ; vsp = r11 103 @ CHECK: 0x4D ; vsp = vsp - 56
|
/external/llvm/test/tools/llvm-readobj/ARM/ |
unwind.s | 194 @ CHECK: 0x3F ; vsp = vsp + 256 275 @ CHECK: 0xB2 0x80 0x04 ; vsp = vsp + 2564 280 @ CHECK: 0x91 ; vsp = r1 286 @ CHECK: 0x42 ; vsp = vsp - 12 287 @ CHECK: 0x02 ; vsp = vsp + 12 308 @ CHECK: 0xB2 0x00 ; vsp = vsp + 51 [all...] |
/external/llvm/include/llvm/Support/ |
ARMEHABI.h | 42 // Purpose: vsp = vsp + ((x << 2) + 4) 46 // Purpose: vsp = vsp - ((x << 2) + 4) 59 // Purpose: vsp = r[x] 81 // Purpose: vsp = vsp + ((x << 2) + 0x204)
|
/hardware/intel/img/psb_video/src/ |
vsp_fw.h | 2 * file vsp.h 194 /* Default initial values for vsp-command and vsp-response 261 * Header-data/struct by PUnit to start VSP boot-processor 264 * For each value that is to be written to the VSP, the register-address to 267 * Entries that contain values can be written directly into the VSP-system. 269 * into the VSP 272 * the VSP) 320 * Struct used by VSP-boot-processor to start the correct application 368 * Datastructure placed at the beginning of the VSP IMR state-save region [all...] |
vsp_compose.c | 67 /* Destory the VSP context */ 78 /* Init the VSP context */
|
README | 143 | |- vsp_cmdbuf.h (below files are for VSP on MRFLD)
|
vsp_cmdbuf.h | 77 * VSP command:
|
/frameworks/base/core/java/android/emoji/ |
EmojiFactory.java | 142 * @param vsp vendor specific PUA. 146 public synchronized Bitmap getBitmapFromVendorSpecificPua(int vsp) { 147 return getBitmapFromAndroidPua(getAndroidPuaFromVendorSpecificPua(vsp)); 173 * @param vsp vendor specific PUA. 177 public int getAndroidPuaFromVendorSpecificPua(int vsp) { 178 return nativeGetAndroidPuaFromVendorSpecificPua(mNativeEmojiFactory, vsp); 282 int vsp);
|
/device/asus/fugu/ |
device.mk | 134 vsp.bin.0008.0000.0000 \ 135 vsp.bin.0008.0000.0001 \ 136 vsp.bin.0008.0000.0002 \ 137 vsp.bin.0008.0002.0001 \ 138 vsp.bin.000c.0001.0001
|
proprietary-blobs.txt | 33 /system/etc/firmware/vsp.bin.0008.0000.0000 34 /system/etc/firmware/vsp.bin.0008.0000.0001 35 /system/etc/firmware/vsp.bin.0008.0000.0002 36 /system/etc/firmware/vsp.bin.0008.0002.0001 37 /system/etc/firmware/vsp.bin.000c.0001.0001
|
vendor_owner_info.txt | 17 system/etc/firmware/vsp.bin.0008.0000.0000:intel 18 system/etc/firmware/vsp.bin.0008.0000.0001:intel 19 system/etc/firmware/vsp.bin.0008.0000.0002:intel 20 system/etc/firmware/vsp.bin.0008.0002.0001:intel 21 system/etc/firmware/vsp.bin.000c.0001.0001:intel
|
/device/asus/fugu/self-extractors/ |
extract-lists.txt | 41 system/etc/firmware/vsp.bin.0008.0000.0000 \ 42 system/etc/firmware/vsp.bin.0008.0000.0001 \ 43 system/etc/firmware/vsp.bin.0008.0000.0002 \ 44 system/etc/firmware/vsp.bin.0008.0002.0001 \ 45 system/etc/firmware/vsp.bin.000c.0001.0001 \
|
/device/asus/fugu/self-extractors/intel/staging/ |
device-partial.mk | 31 vendor/intel/fugu/proprietary/vsp.bin.0008.0000.0000:system/etc/firmware/vsp.bin.0008.0000.0000:intel \ 32 vendor/intel/fugu/proprietary/vsp.bin.0008.0000.0001:system/etc/firmware/vsp.bin.0008.0000.0001:intel \ 33 vendor/intel/fugu/proprietary/vsp.bin.0008.0000.0002:system/etc/firmware/vsp.bin.0008.0000.0002:intel \ 34 vendor/intel/fugu/proprietary/vsp.bin.0008.0002.0001:system/etc/firmware/vsp.bin.0008.0002.0001:intel \ 35 vendor/intel/fugu/proprietary/vsp.bin.000c.0001.0001:system/etc/firmware/vsp.bin.000c.0001.0001:intel [all...] |
/external/libunwind/src/arm/ |
Gex_tables.c | 96 Debug (2, "vsp = vsp - %d\n", edata->data); 100 Debug (2, "vsp = vsp + %d\n", edata->data); 117 Debug (2, "vsp = r%d\n", edata->data);
|
/external/llvm/tools/llvm-readobj/ |
ARMEHABIPrinter.h | 97 SW.startLine() << format("0x%02X ; vsp = vsp + %u\n", Opcode, 102 SW.startLine() << format("0x%02X ; vsp = vsp - %u\n", Opcode, 128 SW.startLine() << format("0x%02X ; vsp = r%u\n", Opcode, (Opcode & 0x0f)); 173 OS << format("; vsp = vsp + %" PRIu64 "\n", 0x204 + (Value << 2));
|
/external/oprofile/events/ppc/e500/ |
events | 63 event:0x3f counters:0,1,2,3 um:zero minimum:500 name:IMMU_VSP_RELOADS : iMMU VSP reloads 65 event:0x41 counters:0,1,2,3 um:zero minimum:500 name:DMMU_VSP_RELOADS : dMMU VSP reloads
|