HomeSort by relevance Sort by last modified time
    Searched refs:jfunc (Results 1 - 3 of 3) sorted by null

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
ipa-prop.h 183 function JFUNC. */
186 ipa_get_jf_known_type_offset (struct ipa_jump_func *jfunc)
188 gcc_checking_assert (jfunc->type == IPA_JF_KNOWN_TYPE);
189 return jfunc->value.known_type.offset;
192 /* Return the base type of a known type jump function JFUNC. */
195 ipa_get_jf_known_type_base_type (struct ipa_jump_func *jfunc)
197 gcc_checking_assert (jfunc->type == IPA_JF_KNOWN_TYPE);
198 return jfunc->value.known_type.base_type;
201 /* Return the component type of a known type jump function JFUNC. */
204 ipa_get_jf_known_type_component_type (struct ipa_jump_func *jfunc)
    [all...]
  /frameworks/native/opengl/tools/glgen/src/
JniCodeEmitter.java 74 JFunc jfunc; local
79 jfunc = JFunc.convert(cfunc, true);
84 signature = jfunc.toString();
93 emitNativeDeclaration(jfunc, javaImplStream);
94 emitJavaCode(jfunc, javaImplStream);
97 emitJavaInterfaceCode(jfunc, javaInterfaceStream);
100 emitJniCode(jfunc, cStream);
108 jfunc = JFunc.convert(cfunc, false)
    [all...]
JFunc.java 20 public class JFunc {
36 public JFunc(CFunc cfunc) {
121 public static JFunc convert(CFunc cfunc, boolean useArray) {
123 JFunc jfunc = new JFunc(cfunc); local
124 jfunc.setName(cfunc.getName());
125 jfunc.setType(JType.convert(cfunc.getType(), false));
140 jfunc.addArgument(cArgName, JType.convert(cArgType, useArray), i);
143 jfunc.addArgument(cArgName + "Offset", new JType("int"), i)
    [all...]

Completed in 208 milliseconds