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

<<31323334353637383940>>

  /external/python/cpython3/Modules/_ctypes/libffi/testsuite/libffi.call/
closure_fn0.c 52 void * code; local
53 ffi_closure *pcl = ffi_closure_alloc(sizeof(ffi_closure), &code);
80 (void *) 3 /* userdata */, code) == FFI_OK);
82 res = (*((closure_test_type0)code))
closure_fn1.c 44 void *code; local
45 ffi_closure *pcl = ffi_closure_alloc(sizeof(ffi_closure), &code);
72 (void *) 3 /* userdata */, code) == FFI_OK);
74 res = (*((closure_test_type1)code))
closure_fn2.c 44 void *code; local
45 ffi_closure *pcl = ffi_closure_alloc(sizeof(ffi_closure), &code);
72 (void *) 3 /* userdata */, code) == FFI_OK);
74 res = (*((closure_test_type2)code))
closure_fn3.c 45 void *code; local
46 ffi_closure *pcl = ffi_closure_alloc(sizeof(ffi_closure), &code);
73 (void *) 3 /* userdata */, code) == FFI_OK);
75 res = (*((closure_test_type3)code))
closure_fn4.c 63 void *code; local
64 ffi_closure *pcl = ffi_closure_alloc(sizeof(ffi_closure), &code);
79 (void *) 3 /* userdata */, code) == FFI_OK);
81 res = (*((closure_test_type0)code))
closure_fn5.c 62 void *code; local
63 ffi_closure *pcl = ffi_closure_alloc(sizeof(ffi_closure), &code);
82 (void *) 3 /* userdata */, code) == FFI_OK);
84 res = (*((closure_test_type0)code))
closure_fn6.c 53 void *code; local
54 ffi_closure *pcl = ffi_closure_alloc(sizeof(ffi_closure), &code);
81 (void *) 3 /* userdata */, code) == FFI_OK);
83 res = (*((closure_test_type0)code))
cls_dbls_struct.c 33 void *code; local
34 ffi_closure* pcl = ffi_closure_alloc(sizeof(ffi_closure), &code);
57 CHECK(ffi_prep_closure_loc(pcl, &cif, closure_test_gn, NULL, code) == FFI_OK);
59 ((void*(*)(Dbls))(code))(arg);
cls_multi_schar.c 39 void *code; local
40 ffi_closure *pcl = ffi_closure_alloc(sizeof(ffi_closure), &code);
66 CHECK(ffi_prep_closure_loc(pcl, &cif, test_func_gn, NULL, code) == FFI_OK);
68 res_closure = (*((test_type)code))(2, 125);
cls_multi_sshort.c 39 void *code; local
40 ffi_closure *pcl = ffi_closure_alloc(sizeof(ffi_closure), &code);
66 CHECK(ffi_prep_closure_loc(pcl, &cif, test_func_gn, NULL, code) == FFI_OK);
68 res_closure = (*((test_type)code))(2, 32765);
cls_multi_sshortchar.c 44 void *code; local
45 ffi_closure *pcl = ffi_closure_alloc(sizeof(ffi_closure), &code);
78 CHECK(ffi_prep_closure_loc(pcl, &cif, test_func_gn, NULL, code) == FFI_OK);
80 res_closure = (*((test_type)code))(1, 32765, 127, -128);
cls_multi_ushort.c 39 void *code; local
40 ffi_closure *pcl = ffi_closure_alloc(sizeof(ffi_closure), &code);
66 CHECK(ffi_prep_closure_loc(pcl, &cif, test_func_gn, NULL, code) == FFI_OK);
68 res_closure = (*((test_type)code))(2, 32765);
cls_multi_ushortchar.c 44 void *code; local
45 ffi_closure *pcl = ffi_closure_alloc(sizeof(ffi_closure), &code);
78 CHECK(ffi_prep_closure_loc(pcl, &cif, test_func_gn, NULL, code) == FFI_OK);
80 res_closure = (*((test_type)code))(1, 2, 127, 128);
cls_pointer.c 35 void *code; local
36 ffi_closure* pcl = ffi_closure_alloc(sizeof(ffi_closure), &code);
66 CHECK(ffi_prep_closure_loc(pcl, &cif, cls_pointer_gn, NULL, code) == FFI_OK);
68 res = (ffi_arg)(uintptr_t)((void*(*)(void*, void*))(code))(arg1, arg2);
testclosure.c 40 void *code; local
41 ffi_closure *pcl = ffi_closure_alloc(sizeof(ffi_closure), &code);
65 CHECK(ffi_prep_closure_loc(pcl, &cif, cls_struct_combined_gn, NULL, code) == FFI_OK);
67 ((void(*)(cls_struct_combined)) (code))(g_dbl);
  /external/python/cpython3/Modules/zlib/
inflate.h 13 the crc code when it is not needed. For shared libraries, gzip decoding
38 LENLENS, /* i: waiting for code length code lengths */
39 CODELENS, /* i: waiting for length/lit and distance code lengths */
41 LEN, /* i: waiting for length/lit/eob code */
43 DIST, /* i: waiting for distance code */
106 /* for table and code decoding */
108 /* fixed and dynamic code tables */
109 code const FAR *lencode; /* starting table for length/literal codes */
110 code const FAR *distcode; /* starting table for distance codes *
    [all...]
  /external/python/cpython3/Tools/scripts/
nm2def.py 63 code = []
68 code.append('\t'+name)
71 code.sort()
72 return ' DATA\n'.join(data)+'\n'+'\n'.join(code)
  /external/python/cpython3/Tools/unicode/
genwincodec.py 1 """This script generates a Python codec module from a Windows Code Page.
29 assert ret == 1, "invalid code page"
47 code = codegen("", map, encodingname)
49 code = '''\
55 ) + code.split('"""#"', 1)[1]
57 print(code)
  /external/skia/src/gpu/ccpr/
GrCCCubicShader.h 4 * Use of this source code is governed by a BSD-style license that can be
31 void onEmitVaryings(GrGLSLVaryingHandler*, GrGLSLVarying::Scope, SkString* code,
33 virtual void onEmitVaryings(GrGLSLVaryingHandler*, GrGLSLVarying::Scope, SkString* code) = 0;
44 void onEmitVaryings(GrGLSLVaryingHandler*, GrGLSLVarying::Scope, SkString* code) override;
53 void onEmitVaryings(GrGLSLVaryingHandler*, GrGLSLVarying::Scope, SkString* code) override;
GrCCQuadraticShader.h 4 * Use of this source code is governed by a BSD-style license that can be
30 void onEmitVaryings(GrGLSLVaryingHandler*, GrGLSLVarying::Scope, SkString* code,
32 virtual void onEmitVaryings(GrGLSLVaryingHandler*, GrGLSLVarying::Scope, SkString* code) {}
51 void onEmitVaryings(GrGLSLVaryingHandler*, GrGLSLVarying::Scope, SkString* code) override;
63 void onEmitVaryings(GrGLSLVaryingHandler*, GrGLSLVarying::Scope, SkString* code) override;
  /external/skqp/src/gpu/ccpr/
GrCCCubicShader.h 4 * Use of this source code is governed by a BSD-style license that can be
31 void onEmitVaryings(GrGLSLVaryingHandler*, GrGLSLVarying::Scope, SkString* code,
33 virtual void onEmitVaryings(GrGLSLVaryingHandler*, GrGLSLVarying::Scope, SkString* code) = 0;
44 void onEmitVaryings(GrGLSLVaryingHandler*, GrGLSLVarying::Scope, SkString* code) override;
53 void onEmitVaryings(GrGLSLVaryingHandler*, GrGLSLVarying::Scope, SkString* code) override;
GrCCQuadraticShader.h 4 * Use of this source code is governed by a BSD-style license that can be
30 void onEmitVaryings(GrGLSLVaryingHandler*, GrGLSLVarying::Scope, SkString* code,
32 virtual void onEmitVaryings(GrGLSLVaryingHandler*, GrGLSLVarying::Scope, SkString* code) {}
51 void onEmitVaryings(GrGLSLVaryingHandler*, GrGLSLVarying::Scope, SkString* code) override;
63 void onEmitVaryings(GrGLSLVaryingHandler*, GrGLSLVarying::Scope, SkString* code) override;
  /external/strace/
bpf_filter.h 10 * 1. Redistributions of source code must retain the above copyright
34 uint16_t code; member in struct:bpf_filter_block
  /external/swiftshader/third_party/LLVM/include/llvm/Transforms/Utils/
FunctionUtils.h 30 ArrayRef<BasicBlock*> code,
  /external/syslinux/com32/gplinclude/dmi/
dmi_ipmi.h 32 const char *dmi_ipmi_interface_type(uint8_t code);

Completed in 1141 milliseconds

<<31323334353637383940>>