MCPcopy Create free account
hub / github.com/ArduPilot/ArduRemoteID / fe_add

Function fe_add

RemoteIDModule/monocypher.cpp:1076–1076  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1074static void fe_copy(fe h,const fe f ){FOR(i,0,10) h[i] = f[i]; }
1075static void fe_neg (fe h,const fe f ){FOR(i,0,10) h[i] = -f[i]; }
1076static void fe_add (fe h,const fe f,const fe g){FOR(i,0,10) h[i] = f[i] + g[i];}
1077static void fe_sub (fe h,const fe f,const fe g){FOR(i,0,10) h[i] = f[i] - g[i];}
1078
1079static void fe_cswap(fe f, fe g, int b)

Callers 11

scalarmultFunction · 0.85
ge_frombytes_vartimeFunction · 0.85
ge_cacheFunction · 0.85
ge_addFunction · 0.85
ge_maddFunction · 0.85
ge_msubFunction · 0.85
ge_doubleFunction · 0.85
crypto_from_eddsa_publicFunction · 0.85
crypto_x25519_dirty_fastFunction · 0.85
crypto_hidden_to_curveFunction · 0.85
crypto_curve_to_hiddenFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected