I found the solution, here is the missing code for my search;
function life()
gg.searchNumber("100F;5.53552857e-315E::5", gg.TYPE_AUTO, false, gg.SIGN_EQUAL, 0, -1)
revert = gg.getResults(991, nil, nil, nil, nil, nil, nil, nil, nil)
local t = gg.getResults(991, nil, nil, nil, nil, nil, nil, nil, nil)
for i, v in ipairs(t) do
if v.flags == gg.TYPE_DOUBLE then
v.value = "5.53552857e-315"
v.freeze = true
end
end
gg.addListItems(t)
t = nil
end