HomeSort by relevance Sort by last modified time
    Searched refs:code (Results 751 - 775 of 19832) sorted by null

<<31323334353637383940>>

  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/
regenc.h 13 * 1. Redistributions of source code must retain the above copyright
127 ONIG_EXTERN int onigenc_single_byte_code_to_mbclen P_((OnigCodePoint code));
128 ONIG_EXTERN int onigenc_single_byte_code_to_mbc P_((OnigCodePoint code, UChar *buf));
136 ONIG_EXTERN int onigenc_mb2_code_to_mbclen P_((OnigCodePoint code));
137 ONIG_EXTERN int onigenc_mb2_code_to_mbc P_((OnigEncoding enc, OnigCodePoint code, UChar *buf));
140 ONIG_EXTERN int onigenc_mb2_is_code_ctype P_((OnigEncoding enc, OnigCodePoint code, unsigned int ctype));
141 ONIG_EXTERN int onigenc_mb4_code_to_mbclen P_((OnigCodePoint code));
142 ONIG_EXTERN int onigenc_mb4_code_to_mbc P_((OnigEncoding enc, OnigCodePoint code, UChar *buf));
143 ONIG_EXTERN int onigenc_mb4_is_code_ctype P_((OnigEncoding enc, OnigCodePoint code, unsigned int ctype));
147 ONIG_EXTERN int onigenc_unicode_is_code_ctype P_((OnigCodePoint code, unsigned int ctype));
    [all...]
  /external/aac/libAACdec/src/
usacdec_ace_d4t64.cpp 41 the FDK AAC Codec or your modifications thereto in source code form.
46 charge copies of the complete source code of the FDK AAC Codec and your
114 * code O: fixed codebook
123 FIXP_COD code[]) {
129 code[i] = code[i] + (FIXP_COD)(512 << (COD_BITS - FRACT_BITS));
131 code[i] = code[i] - (FIXP_COD)(512 << (COD_BITS - FRACT_BITS));
332 * code I: (Q9) algebraic (fixed) codebook excitation
356 void D_ACELP_decode_4t64(SHORT index[], int nbits, FIXP_COD code[]) {
    [all...]
  /frameworks/rs/script_api/
rs_value_types.spec 37 between curly braces, e.g. <code>(float3){1.0f, 2.0f, 3.0f}</code>.
46 For example, with <code>int4 myVar;</code> the following are equivalent:<code><br/>
50 myVar.w == myVar.a == myVar.s3 == myVar.S3</code>
57 <code>myVar.yz</code>, <code>myVar.gb</code>, <code>myVar.s12</code>, and <code>myVar.S12</code>
    [all...]
rs_atomic.spec 27 Note that in RenderScript, your code is likely to be running in separate
41 Atomicly adds a value to the value at addr, i.e. <code>*addr += value</code>.
61 i.e. <code>*addr &amp;= value</code>.
82 i.e. <code>if (*addr == compareValue) { *addr = newValue; }</code>.
104 Atomicly subtracts one from the value at addr. This is equivalent to <code>@rsAtomicSub(addr, 1)</code>.
121 Atomicly adds one to the value at addr. This is equivalent to <code>@rsAtomicAdd(addr, 1)</code>
    [all...]
  /kernel/tests/net/test/
bpf.py 162 BpfInsn = cstruct.Struct("bpf_insn", "=BBhi", "code dst_src_reg off imm")
250 code = BPF_ALU64 | BPF_MOV | BPF_X
252 ret = BpfInsn((code, dst_src, 0, 0))
257 code = BPF_LDX | (size & 0x18) | BPF_MEM
259 ret = BpfInsn((code, dst_src, off, 0))
264 code = BPF_STX | (size & 0x18) | BPF_MEM
266 ret = BpfInsn((code, dst_src, off, 0))
271 code = BPF_ST | (size & 0x18) | BPF_MEM
273 ret = BpfInsn((code, dst_src, off, imm))
278 code = BPF_ALU64 | (op & 0xf0) | BPF_
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
unicodedata.c 46 _getrecord_ex(Py_UCS4 code)
49 if (code >= 0x110000)
52 index = index1[(code>>SHIFT)];
53 index = index2[(index<<SHIFT)+(code&((1<<SHIFT)-1))];
405 int code, index, count, i; local
416 code = (int)c;
424 if (code < 0 || code >= 0x110000)
427 index = decomp_index1[(code>>DECOMP_SHIFT)];
429 (code&((1<<DECOMP_SHIFT)-1))];
528 Py_UNICODE code = stack[--stackptr]; local
634 Py_UNICODE code; local
1149 Py_UCS4 code; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
unicodedata.c 46 _getrecord_ex(Py_UCS4 code)
49 if (code >= 0x110000)
52 index = index1[(code>>SHIFT)];
53 index = index2[(index<<SHIFT)+(code&((1<<SHIFT)-1))];
405 int code, index, count, i; local
416 code = (int)c;
424 if (code < 0 || code >= 0x110000)
427 index = decomp_index1[(code>>DECOMP_SHIFT)];
429 (code&((1<<DECOMP_SHIFT)-1))];
521 Py_UNICODE code = stack[--stackptr]; local
627 Py_UNICODE code; local
1142 Py_UCS4 code; local
    [all...]
  /external/python/cpython2/Modules/
unicodedata.c 46 _getrecord_ex(Py_UCS4 code)
49 if (code >= 0x110000)
52 index = index1[(code>>SHIFT)];
53 index = index2[(index<<SHIFT)+(code&((1<<SHIFT)-1))];
405 int code, index, count, i; local
416 code = (int)c;
424 if (code < 0 || code >= 0x110000)
427 index = decomp_index1[(code>>DECOMP_SHIFT)];
429 (code&((1<<DECOMP_SHIFT)-1))]
528 Py_UNICODE code = stack[--stackptr]; local
634 Py_UNICODE code; local
1149 Py_UCS4 code; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
runpy.py 1 """runpy.py - locating and running Python code using the module namespace
6 This allows Python code to play nicely with non-filesystem based PEP 302
62 def _run_code(code, run_globals, init_globals=None,
65 """Helper to run code in nominated namespace"""
72 exec code in run_globals
75 def _run_module_code(code, init_globals=None,
78 """Helper to run code in new namespace with sys modified"""
81 _run_code(code, mod_globals, init_globals,
99 # Helper to get the loader, code and filename for a module
113 code = loader.get_code(mod_name)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
runpy.py 1 """runpy.py - locating and running Python code using the module namespace
6 This allows Python code to play nicely with non-filesystem based PEP 302
62 def _run_code(code, run_globals, init_globals=None,
65 """Helper to run code in nominated namespace"""
72 exec code in run_globals
75 def _run_module_code(code, init_globals=None,
78 """Helper to run code in new namespace with sys modified"""
81 _run_code(code, mod_globals, init_globals,
99 # Helper to get the loader, code and filename for a module
113 code = loader.get_code(mod_name)
    [all...]
  /external/python/cpython2/Lib/
runpy.py 1 """runpy.py - locating and running Python code using the module namespace
6 This allows Python code to play nicely with non-filesystem based PEP 302
62 def _run_code(code, run_globals, init_globals=None,
65 """Helper to run code in nominated namespace"""
72 exec code in run_globals
75 def _run_module_code(code, init_globals=None,
78 """Helper to run code in new namespace with sys modified"""
81 _run_code(code, mod_globals, init_globals,
99 # Helper to get the loader, code and filename for a module
119 code = loader.get_code(mod_name
    [all...]
  /external/python/cpython3/Lib/
runpy.py 1 """runpy.py - locating and running Python code using the module namespace
6 This allows Python code to play nicely with non-filesystem based PEP 302
62 def _run_code(code, run_globals, init_globals=None,
65 """Helper to run code in nominated namespace"""
85 exec(code, run_globals)
88 def _run_module_code(code, init_globals=None,
91 """Helper to run code in new namespace with sys modified"""
95 _run_code(code, mod_globals, init_globals,
101 # Helper to get the full name, spec and code for a module
153 code = loader.get_code(mod_name
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
runpy.py 1 """runpy.py - locating and running Python code using the module namespace
6 This allows Python code to play nicely with non-filesystem based PEP 302
62 def _run_code(code, run_globals, init_globals=None,
65 """Helper to run code in nominated namespace"""
72 exec code in run_globals
75 def _run_module_code(code, init_globals=None,
78 """Helper to run code in new namespace with sys modified"""
81 _run_code(code, mod_globals, init_globals,
99 # Helper to get the loader, code and filename for a module
113 code = loader.get_code(mod_name
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
runpy.py 1 """runpy.py - locating and running Python code using the module namespace
6 This allows Python code to play nicely with non-filesystem based PEP 302
62 def _run_code(code, run_globals, init_globals=None,
65 """Helper to run code in nominated namespace"""
72 exec code in run_globals
75 def _run_module_code(code, init_globals=None,
78 """Helper to run code in new namespace with sys modified"""
81 _run_code(code, mod_globals, init_globals,
99 # Helper to get the loader, code and filename for a module
113 code = loader.get_code(mod_name
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
runpy.py 1 """runpy.py - locating and running Python code using the module namespace
6 This allows Python code to play nicely with non-filesystem based PEP 302
62 def _run_code(code, run_globals, init_globals=None,
65 """Helper to run code in nominated namespace"""
72 exec code in run_globals
75 def _run_module_code(code, init_globals=None,
78 """Helper to run code in new namespace with sys modified"""
81 _run_code(code, mod_globals, init_globals,
99 # Helper to get the loader, code and filename for a module
113 code = loader.get_code(mod_name
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
runpy.py 1 """runpy.py - locating and running Python code using the module namespace
6 This allows Python code to play nicely with non-filesystem based PEP 302
62 def _run_code(code, run_globals, init_globals=None,
65 """Helper to run code in nominated namespace"""
72 exec code in run_globals
75 def _run_module_code(code, init_globals=None,
78 """Helper to run code in new namespace with sys modified"""
81 _run_code(code, mod_globals, init_globals,
99 # Helper to get the loader, code and filename for a module
113 code = loader.get_code(mod_name
    [all...]
  /bionic/tools/bionicbb/
gerrit.py 21 def __init__(self, code, url):
22 self.code = code
24 super(GerritError, self).__init__('Error {}: {}'.format(code, url))
61 'Code-Review': {
73 labels = {'Code-Review': {}, 'Verified': {}}
74 for review in details['labels']['Code-Review']['all']:
76 labels['Code-Review'][review['email']] = int(review['value'])
  /cts/hostsidetests/appsecurity/test-apps/SplitApp/
NativeTemplate.mk 26 LOCAL_AAPT_FLAGS := --version-code 100 --replace-version
  /cts/hostsidetests/appsecurity/test-apps/SplitApp/libs/arm64-v8a/
Android.mk 30 LOCAL_AAPT_FLAGS := --version-code 100 --replace-version
  /cts/hostsidetests/appsecurity/test-apps/SplitApp/libs/armeabi/
Android.mk 30 LOCAL_AAPT_FLAGS := --version-code 100 --replace-version
  /cts/hostsidetests/appsecurity/test-apps/SplitApp/libs/armeabi-v7a/
Android.mk 30 LOCAL_AAPT_FLAGS := --version-code 100 --replace-version
  /cts/hostsidetests/appsecurity/test-apps/SplitApp/libs/mips/
Android.mk 30 LOCAL_AAPT_FLAGS := --version-code 100 --replace-version
  /cts/hostsidetests/appsecurity/test-apps/SplitApp/libs/mips64/
Android.mk 30 LOCAL_AAPT_FLAGS := --version-code 100 --replace-version
  /cts/hostsidetests/appsecurity/test-apps/SplitApp/libs/x86/
Android.mk 30 LOCAL_AAPT_FLAGS := --version-code 100 --replace-version
  /cts/hostsidetests/appsecurity/test-apps/SplitApp/libs/x86_64/
Android.mk 30 LOCAL_AAPT_FLAGS := --version-code 100 --replace-version

Completed in 928 milliseconds

<<31323334353637383940>>