Lines Matching refs:split
225 def union_decl(ctype, split): argument
226 middle = "struct { uintptr_t lo, hi; } split" if split else "uintptr_t x"
254 split = need_split(argtype)
255 decl = union_decl(argtype, split)
263 if split:
359 split = need_split(argtype)
360 vrfy_parms.append((argtype, split))
361 nmrsh += 2 if split else 1
387 for i, (argtype, split) in enumerate(vrfy_parms):
388 decl = union_decl(argtype, split)
391 if split:
434 args = [typename_split(a) for a in args.split(",")]