| /external/openssl/crypto/sha/asm/ |
| sha1-s390x.pl | 14 # Performance is >30% better than gcc 3.3 generated code. But the real 30 # processor, as long as it's "z-CPU". Latter implies that the code 33 $kimdfunc=1; # magic function code for kimd instruction 70 $code.=<<___ if ($i==15); 75 $code.=<<___ if ($i<16); 79 $code.=<<___ if ($i>=16); 90 $code.=<<___ if ($i<=70); 101 $code.=<<___; 120 $code.=<<___; 138 $code.=<<___ [all...] |
| sha512-ia64.pl | 13 # faster than gcc and >60%(!) faster than code generated by HP-UX 14 # compiler (yes, HP-UX is generating slower code, because unlike gcc, 62 # To generate code, pass the file name with either 256 or 512 in its 108 $code=<<___; 169 $code.=<<___ if ($BITS==64); 180 $code.=<<___; 197 $t0="t0", $t1="t1", $code.=<<___ if ($BITS==32); 224 $t0="A", $t1="E", $code.=<<___ if ($BITS==64); 457 $code.=<<___; 507 $t0="t0", $t1="t1", $code.=<<___ if ($BITS==32) [all...] |
| /external/qemu/distrib/sdl-1.2.15/include/ |
| SDL_error.h | 63 extern DECLSPEC void SDLCALL SDL_Error(SDL_errorcode code);
|
| /frameworks/av/include/media/ |
| IAudioPolicyServiceClient.h | 46 virtual status_t onTransact( uint32_t code,
|
| /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/ |
| dec_gain.h | 22 ANSI-C code for the Adaptive Multi-Rate (AMR) speech codec 111 Word16 code[], /* i : Innovative vector. */ 114 Word16 * gain_cod, /* o : Code gain. */
|
| /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/ |
| c2_11pf.h | 22 ANSI-C code for the Adaptive Multi-Rate (AMR) speech codec 108 Word16 code[], /* o : Innovative codebook */
|
| c2_9pf.h | 22 ANSI-C code for the Adaptive Multi-Rate (AMR) speech codec 109 Word16 code[], /* o : Innovative codebook */
|
| c3_14pf.h | 22 ANSI-C code for the Adaptive Multi-Rate (AMR) speech codec 109 Word16 code[], /* (o) : Innovative codebook */
|
| c4_17pf.h | 22 ANSI-C code for the Adaptive Multi-Rate (AMR) speech codec 108 Word16 code[], /* (o) : Innovative codebook */
|
| cbsearch.h | 22 ANSI-C code for the Adaptive Multi-Rate (AMR) speech codec 118 Word16 code[], /* o : Innovative codebook, Q13 */
|
| /frameworks/av/services/audioflinger/ |
| ISchedulingPolicyService.h | 37 virtual status_t onTransact( uint32_t code,
|
| /frameworks/base/include/storage/ |
| IMountShutdownObserver.h | 38 virtual status_t onTransact( uint32_t code,
|
| /frameworks/native/include/binder/ |
| IAppOpsCallback.h | 44 virtual status_t onTransact( uint32_t code,
|
| /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/syserr/syserr.syserr/syserr.syserr.members/ |
| ctor_error_code.pass.cpp | 26 assert(se.code() == std::make_error_code(std::errc::not_a_directory));
|
| ctor_int_error_category.pass.cpp | 26 assert(se.code() == std::make_error_code(std::errc::not_a_directory));
|
| /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.promise/ |
| set_value_void.pass.cpp | 34 assert(e.code() == make_error_code(std::future_errc::promise_already_satisfied));
|
| /prebuilts/tools/darwin-x86/sdl/include/SDL/ |
| SDL_error.h | 63 extern DECLSPEC void SDLCALL SDL_Error(SDL_errorcode code);
|
| /prebuilts/tools/linux-x86/sdl/include/SDL/ |
| SDL_error.h | 63 extern DECLSPEC void SDLCALL SDL_Error(SDL_errorcode code);
|
| /prebuilts/tools/windows/sdl/include/SDL/ |
| SDL_error.h | 63 extern DECLSPEC void SDLCALL SDL_Error(SDL_errorcode code);
|
| /system/core/include/sysutils/ |
| SocketClient.h | 48 int sendMsg(int code, const char *msg, bool addErrno); 49 int sendMsg(int code, const char *msg, bool addErrno, bool useCmdNum); 52 // Provides a mechanism to send a response code to the client. 53 // Sends the code and a null character. 54 int sendCode(int code); 57 // Sends the code and a null character, followed by 4 bytes of 59 int sendBinaryMsg(int code, const void *data, int len);
|
| /external/chromium_org/build/android/buildbot/ |
| bb_utils.py | 2 # Use of this source code is governed by a BSD-style license that can be 59 code = SpawnCmd(command, stdout, cwd).wait() 61 if code != 0: 62 print 'ERROR: process exited with code %d' % code 63 if code != warning_code and flunk_on_failure: 68 if code != warning_code and halt_on_failure: 69 print 'FATAL %d != %d' % (code, warning_code) 71 return code
|
| /external/chromium_org/chrome/browser/resources/chromeos/chromevox/host/chrome/ |
| braille_key_types.js | 2 // Use of this source code is governed by a BSD-style license that can be 58 * standardKeyCode DOM level 4 key code. 68 * Returns the numeric key code for a DOM level 4 key code string. 71 * @param {string} code DOM level 4 key code. 72 * @return {number|undefined} The numeric key code, or {@code undefined} 75 cvox.BrailleKeyEvent.keyCodeToLegacyCode = function(code) { 76 return cvox.BrailleKeyEvent.legacyKeyCodeMap_[code]; [all...] |
| /external/qemu/android/skin/ |
| keyboard.c | 98 unsigned code, 101 android_keycodes_add_key_event(&kb->keycodes, code, down); 222 AndroidKeyCode code = 0; local 232 case SDLK_LEFT: code = kKeyCodeDpadLeft; break; 233 case SDLK_RIGHT: code = kKeyCodeDpadRight; break; 234 case SDLK_UP: code = kKeyCodeDpadUp; break; 235 case SDLK_DOWN: code = kKeyCodeDpadDown; break; 239 if (code != 0) { 265 skin_keyboard_add_key_event(keyboard, code, down); 273 code = 0 427 unsigned code; local [all...] |
| /external/qemu/distrib/sdl-1.2.15/src/video/Xext/extensions/ |
| extutil.h | 135 int /* code */, 184 * helper macros to generate code that is common to all extensions; caller 212 char *proc (Display *dpy, int code, XExtCodes *codes, char *buf, int n) \ 214 code -= codes->first_error; \ 215 if (code >= 0 && code < nerr) { \ 217 SDL_snprintf (tmp, SDL_arraysize(tmp), "%s.%d", extname, code); \ 218 XGetErrorDatabaseText (dpy, "XProtoError", tmp, errl[code], buf, n); \ 225 char *proc(Display *dpy, int code, XExtCodes *codes, char *buf, int n)
|
| /external/valgrind/main/none/tests/amd64/ |
| faultstatus.c | 15 int code; member in struct:test 39 static int testcode(int code, int want) 41 if (code != want) { 42 fprintf(stderr, " FAIL: expected si_code==%d, not %d\n", want, code); 63 ok = ok && testcode(si->si_code, cur_test->code); 116 #define T(n, sig, code, addr) { test##n, sig, code, addr }
|