Home
last modified time | relevance | path

Searched refs:ans (Results 1 – 12 of 12) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Ddecimal.py221 ans = _dec_from_triple(args[0]._sign, args[0]._int, 'n', True)
222 return ans._fix_nan(context)
884 ans = self._compare_check_nans(other, context)
885 if ans:
893 ans = self._compare_check_nans(other, context)
894 if ans:
902 ans = self._compare_check_nans(other, context)
903 if ans:
911 ans = self._compare_check_nans(other, context)
912 if ans:
[all …]
Dxmllib.py645 ans = None
648 ans = d[aprefix]
649 if ans is None:
650 ans = self.__namespaces.get(aprefix)
651 if ans is not None:
652 key = ans + ' ' + key
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/classes/
DDates.py91 ans = Date(1,1,1) # arguments irrelevant; just getting a Date obj
92 del ans.ord, ans.month, ans.day, ans.year # un-initialize it
93 ans.ord = n
113 ans.month, ans.day, ans.year = month, n-dbm, year
114 return ans
/device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
Dgetnetbydns.c126 char aux1[MAXHOSTNAMELEN], aux2[MAXHOSTNAMELEN], ans[MAXHOSTNAMELEN]; in getnetanswer() local
171 ans[0] = '\0'; in getnetanswer()
172 (void)strncpy(&ans[0], bp, sizeof(ans) - 1); in getnetanswer()
173 ans[sizeof(ans) - 1] = '\0'; in getnetanswer()
201 net_entry.n_name = &ans[0]; in getnetanswer()
Dres_send.c334 u_char *ans, in res_send() argument
339 HEADER *anhp = (HEADER *) ans; in res_send()
379 ans, anssiz, &resplen); in res_send()
460 cp = ans; in res_send()
489 resplen = ns_get16(ans); in res_send()
509 cp = ans; in res_send()
551 ans, (resplen>anssiz)?anssiz:resplen); in res_send()
768 resplen = (int)recvfrom(s, (char*)ans, anssiz, 0, in res_send()
797 ans, (resplen>anssiz)?anssiz:resplen); in res_send()
811 ans, (resplen>anssiz)?anssiz:resplen); in res_send()
[all …]
Dgetaddrinfo.c97 #define res_nsend(state,buf,buflen,ans,anssiz) res_send ( buf, buflen, ans, anssiz ) argument
/device/linaro/bootloader/edk2/StdLib/Include/
Dresolv.h164 u_char *ans,
171 u_char *ans,
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dxmllib.py645 ans = None
648 ans = d[aprefix]
649 if ans is None:
650 ans = self.__namespaces.get(aprefix)
651 if ans is not None:
652 key = ans + ' ' + key
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Dmathmodule.c1319 PyObject *ans; in math_log() local
1334 ans = PyNumber_Divide(num, den); in math_log()
1337 return ans; in math_log()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dmathmodule.c1309 PyObject *ans; in math_log() local
1324 ans = PyNumber_Divide(num, den); in math_log()
1327 return ans; in math_log()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_decimal.py286 ans = L[0]
341 ans = FixQuotes(ans)
390 self.assertEqual(result, ans,
2250 ans = fn(*args)
2269 self.assertEqual(ans, new_ans,
2271 "expected %s, got %s." % (ans, new_ans))
Dtest_itertools.py520 ans = [(x,y) for x, y in izip('abc',count())]
521 self.assertEqual(ans, [('a', 0), ('b', 1), ('c', 2)])