MCPcopy Index your code
hub / github.com/nodejs/node / has_long_double

Function has_long_double

deps/libffi/generate-headers.py:67–79  ·  view source on GitHub ↗
(os_name, target_arch)

Source from the content-addressed store, hash-verified

65
66
67def has_long_double(os_name, target_arch):
68 target_arch = normalize_arch(target_arch)
69
70 if os_name == 'win':
71 return '0'
72
73 if os_name == 'mac' and target_arch == 'arm64':
74 return '0'
75
76 if target_arch == 'arm':
77 return '0'
78
79 return '1'
80
81
82def uses_exec_trampoline_table(os_name, target_arch):

Callers 1

render_ffi_headerFunction · 0.85

Calls 1

normalize_archFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…