Home
last modified time | relevance | path

Searched refs:es (Results 1 - 25 of 286) sorted by relevance

12345678910>>...12

/third_party/node/deps/openssl/openssl/crypto/err/
H A Derr_local.h13 static ossl_inline void err_get_slot(ERR_STATE *es) in err_get_slot() argument
15 es->top = (es->top + 1) % ERR_NUM_ERRORS; in err_get_slot()
16 if (es->top == es->bottom) in err_get_slot()
17 es->bottom = (es->bottom + 1) % ERR_NUM_ERRORS; in err_get_slot()
20 static ossl_inline void err_clear_data(ERR_STATE *es, size_t i, int deall) in err_clear_data() argument
22 if (es->err_data_flags[i] & ERR_TXT_MALLOCED) { in err_clear_data()
24 OPENSSL_free(es in err_clear_data()
39 err_set_error(ERR_STATE *es, size_t i, int lib, int reason) err_set_error() argument
48 err_set_debug(ERR_STATE *es, size_t i, const char *file, int line, const char *fn) err_set_debug() argument
69 err_set_data(ERR_STATE *es, size_t i, void *data, size_t datasz, int flags) err_set_data() argument
79 err_clear(ERR_STATE *es, size_t i, int deall) err_clear() argument
[all...]
H A Derr.c338 ERR_STATE *es; in ERR_clear_error() local
340 es = ossl_err_get_state_int(); in ERR_clear_error()
341 if (es == NULL) in ERR_clear_error()
345 err_clear(es, i, 0); in ERR_clear_error()
347 es->top = es->bottom = 0; in ERR_clear_error()
451 ERR_STATE *es; in get_error_values() local
454 es = ossl_err_get_state_int(); in get_error_values()
455 if (es == NULL) in get_error_values()
462 while (es in get_error_values()
780 ERR_STATE *es; err_set_error_data_int() local
824 ERR_STATE *es; ERR_add_error_vdata() local
880 ERR_STATE *es; ERR_set_mark() local
894 ERR_STATE *es; ERR_pop_to_mark() local
914 ERR_STATE *es; ERR_clear_last_mark() local
935 ERR_STATE *es; err_clear_last_constant_time() local
[all...]
H A Derr_blocks.c18 ERR_STATE *es; in ERR_new() local
20 es = ossl_err_get_state_int(); in ERR_new()
21 if (es == NULL) in ERR_new()
25 err_get_slot(es); in ERR_new()
26 err_clear(es, es->top, 0); in ERR_new()
31 ERR_STATE *es; in ERR_set_debug() local
33 es = ossl_err_get_state_int(); in ERR_set_debug()
34 if (es == NULL) in ERR_set_debug()
37 err_set_debug(es, e in ERR_set_debug()
51 ERR_STATE *es; ERR_vset_error() local
[all...]
/third_party/openssl/crypto/err/
H A Derr_local.h13 static ossl_inline void err_get_slot(ERR_STATE *es) in err_get_slot() argument
15 es->top = (es->top + 1) % ERR_NUM_ERRORS; in err_get_slot()
16 if (es->top == es->bottom) in err_get_slot()
17 es->bottom = (es->bottom + 1) % ERR_NUM_ERRORS; in err_get_slot()
20 static ossl_inline void err_clear_data(ERR_STATE *es, size_t i, int deall) in err_clear_data() argument
22 if (es->err_data_flags[i] & ERR_TXT_MALLOCED) { in err_clear_data()
24 OPENSSL_free(es in err_clear_data()
39 err_set_error(ERR_STATE *es, size_t i, int lib, int reason) err_set_error() argument
48 err_set_debug(ERR_STATE *es, size_t i, const char *file, int line, const char *fn) err_set_debug() argument
69 err_set_data(ERR_STATE *es, size_t i, void *data, size_t datasz, int flags) err_set_data() argument
79 err_clear(ERR_STATE *es, size_t i, int deall) err_clear() argument
[all...]
H A Derr.c338 ERR_STATE *es; in ERR_clear_error() local
340 es = ossl_err_get_state_int(); in ERR_clear_error()
341 if (es == NULL) in ERR_clear_error()
345 err_clear(es, i, 0); in ERR_clear_error()
347 es->top = es->bottom = 0; in ERR_clear_error()
451 ERR_STATE *es; in get_error_values() local
454 es = ossl_err_get_state_int(); in get_error_values()
455 if (es == NULL) in get_error_values()
462 while (es in get_error_values()
780 ERR_STATE *es; err_set_error_data_int() local
824 ERR_STATE *es; ERR_add_error_vdata() local
880 ERR_STATE *es; ERR_set_mark() local
894 ERR_STATE *es; ERR_pop_to_mark() local
914 ERR_STATE *es; ERR_clear_last_mark() local
935 ERR_STATE *es; err_clear_last_constant_time() local
[all...]
H A Derr_blocks.c18 ERR_STATE *es; in ERR_new() local
20 es = ossl_err_get_state_int(); in ERR_new()
21 if (es == NULL) in ERR_new()
25 err_get_slot(es); in ERR_new()
26 err_clear(es, es->top, 0); in ERR_new()
31 ERR_STATE *es; in ERR_set_debug() local
33 es = ossl_err_get_state_int(); in ERR_set_debug()
34 if (es == NULL) in ERR_set_debug()
37 err_set_debug(es, e in ERR_set_debug()
51 ERR_STATE *es; ERR_vset_error() local
[all...]
/third_party/FreeBSD/lib/libc/stdlib/
H A Dqsort.c111 swapfunc(char *a, char *b, size_t es) in swapfunc() argument
119 } while (--es > 0); in swapfunc()
155 local_qsort(void *a, size_t n, size_t es, cmp_t *cmp, void *thunk) in local_qsort() argument
167 for (pm = (char *)a + es; pm < (char *)a + n * es; pm += es) in local_qsort()
169 pl > (char *)a && CMP(thunk, pl - es, pl) > 0; in local_qsort()
170 pl -= es) in local_qsort()
171 swapfunc(pl, pl - es, es); in local_qsort()
260 qsort_r(void *a, size_t n, size_t es, void *thunk, cmp_t *cmp) qsort_r() argument
266 qsort_s(void *a, rsize_t n, rsize_t es, cmp_t *cmp, void *thunk) qsort_s() argument
292 qsort(void *a, size_t n, size_t es, cmp_t *cmp) qsort() argument
[all...]
/third_party/mksh/
H A Dexpr.c126 Expr_state * const es = &curstate; in v_evaluate() local
150 exprtoken(es); in v_evaluate()
151 if (es->tok == END) { in v_evaluate()
152 es->tok = LIT; in v_evaluate()
153 es->val = tempvar(""); in v_evaluate()
155 v = intvar(es, evalexpr(es, MAX_PREC)); in v_evaluate()
157 if (es->tok != END) in v_evaluate()
158 evalerr(es, ET_UNEXPECTED, NULL); in v_evaluate()
160 if (es in v_evaluate()
174 evalerr(Expr_state *es, enum error_type type, const char *str) evalerr() argument
234 do_ppmm(Expr_state *es, enum token op, struct tbl *vasn, bool is_prefix) do_ppmm() argument
261 evalexpr(Expr_state *es, unsigned int prec) evalexpr() argument
553 exprtoken(Expr_state *es) exprtoken() argument
652 assign_check(Expr_state *es, enum token op, struct tbl *vasn) assign_check() argument
680 intvar(Expr_state *es, struct tbl *vp) intvar() argument
[all...]
/third_party/vk-gl-cts/external/openglcts/modules/runner/
H A DglcAospMustpassEs.hpp25 { glu::ApiType::es(2, 0), "master", "rgba8888d24s8ms0", "unspecified", -1, DE_NULL, 256, 256 },
26 { glu::ApiType::es(3, 0), "master", "rgba8888d24s8ms0", "unspecified", -1, DE_NULL, 256, 256 },
28 { glu::ApiType::es(3, 0), "rotate-portrait", "rgba8888d24s8ms0", "0", -1, DE_NULL, 256, 256 },
31 { glu::ApiType::es(3, 0), "rotate-landscape", "rgba8888d24s8ms0", "90", -1, DE_NULL, 256, 256 },
34 { glu::ApiType::es(3, 0), "rotate-reverse-portrait", "rgba8888d24s8ms0", "180", -1, DE_NULL, 256, 256 },
37 { glu::ApiType::es(3, 0), "rotate-reverse-landscape", "rgba8888d24s8ms0", "270", -1, DE_NULL, 256, 256 },
39 { glu::ApiType::es(3, 0), "multisample", "rgba8888d24s8ms4", "unspecified", -1, DE_NULL, 256, 256 },
41 { glu::ApiType::es(3, 0), "565-no-depth-no-stencil", "rgb565d0s0ms0", "unspecified", -1, DE_NULL, 256, 256 },
43 { glu::ApiType::es(3, 1), "master", "rgba8888d24s8ms0", "unspecified", -1, DE_NULL, 256, 256 },
45 { glu::ApiType::es(
[all...]
H A DglcKhronosMustpassEs.hpp25 { glu::ApiType::es(2, 0), "khr-master", DE_NULL, "unspecified", 1, DE_NULL, 64, 64 },
26 { glu::ApiType::es(3, 0), "khr-master", DE_NULL, "unspecified", 1, DE_NULL, 64, 64 },
27 { glu::ApiType::es(3, 1), "khr-master", DE_NULL, "unspecified", 1, DE_NULL, 64, 64 },
28 { glu::ApiType::es(3, 2), "khr-master", DE_NULL, "unspecified", 1, DE_NULL, 64, 64 },
29 { glu::ApiType::es(3, 2), "khr-master", DE_NULL, "unspecified", 2, DE_NULL, 113, 47 },
30 { glu::ApiType::es(3, 2), "khr-master", DE_NULL, "unspecified", 3, "rgba8888d24s8", 64, -1 },
31 { glu::ApiType::es(3, 2), "khr-master", DE_NULL, "unspecified", 3, "rgba8888d24s8", -1, 64 },
35 { glu::ApiType::es(2, 0), "khr-master", DE_NULL, "unspecified", 1, DE_NULL, 64, 64 },
36 { glu::ApiType::es(3, 0), "khr-master", DE_NULL, "unspecified", 1, DE_NULL, 64, 64 },
37 { glu::ApiType::es(
[all...]
H A DglcTestRunnerMain.cpp39 CommandLine(void) : runType(glu::ApiType::es(2, 0)), flags(0) in CommandLine()
61 } runTypes[] = { { "es2", glu::ApiType::es(2, 0) }, { "es3", glu::ApiType::es(3, 0) }, in parseCommandLine()
62 { "es31", glu::ApiType::es(3, 1) }, { "es32", glu::ApiType::es(3, 2) }, in parseCommandLine()
H A DglcAndroidMain.cpp51 createCTSActivity(activity, savedState, savedStateSize, glu::ApiType::es(2, 0)); in createES2CTSActivity()
56 createCTSActivity(activity, savedState, savedStateSize, glu::ApiType::es(3, 0)); in createES3CTSActivity()
61 createCTSActivity(activity, savedState, savedStateSize, glu::ApiType::es(3, 1)); in createES31CTSActivity()
66 createCTSActivity(activity, savedState, savedStateSize, glu::ApiType::es(3, 2)); in createES32CTSActivity()
/third_party/ltp/testcases/kernel/mem/hugetlb/hugemmap/
H A Dhugemmap10.c93 static int verify_counters(int line, char *desc, long et, long ef, long er, long es) in verify_counters() argument
115 if (s != es) { in verify_counters()
117 " expected %li, actual %li", desc, es, s); in verify_counters()
137 long et, ef, er, es; in set_nr_hugepages_() local
142 es = prev_surp; in set_nr_hugepages_()
152 while (es && count > et - es) in set_nr_hugepages_()
153 es--; in set_nr_hugepages_()
154 while (count > et - es) { in set_nr_hugepages_()
158 if (count >= et - es) in set_nr_hugepages_()
183 long et, ef, er, es; map_() local
223 long et, ef, er, es; unmap_() local
270 long et, ef, er, es; touch_() local
[all...]
/third_party/optimized-routines/math/tools/
H A Dplot.py23 es = []
36 es.append(e)
40 return xs, gs, ys, es
42 def plot(xs, gs, ys, es):
49 es = np.abs(es) # ignore the sign
50 emax = max(es)
52 ax0.plot(xs,es,'r.')
60 xs, gs, ys, es = parse(sys.stdin)
61 plot(xs, gs, ys, es)
[all...]
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/common/
H A Ddebug.h30 namespace es namespace
41 #define TRACE(message, ...) es::trace("trace: %s(%d): " message "\n", __FUNCTION__, __LINE__, ##__VA_ARGS__)
48 #define FIXME(message, ...) do {es::trace("fixme: %s(%d): " message "\n", __FUNCTION__, __LINE__, ##__VA_ARGS__); assert(false);} while(false)
55 #define ERR(message, ...) do {es::trace("err: %s(%d): " message "\n", __FUNCTION__, __LINE__, ##__VA_ARGS__); assert(false);} while(false)
74 es::trace("\t! Unimplemented: %s(%d): ", __FUNCTION__, __LINE__); \
75 es::trace(__VA_ARGS__); \
76 es::trace("\n"); \
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
H A DListFormatterTest.java302 String [] es = { "es", "es_419", "es_PY", "es_DO" }; in TestContextual()
306 { es, Type.AND, "fascinante e incre\u00EDblemente", "fascinante", "incre\u00EDblemente"}, in TestContextual()
307 { es, Type.AND, "Comunicaciones Industriales e IIoT", "Comunicaciones Industriales", "IIoT"}, in TestContextual()
308 { es, Type.AND, "Espa\u00F1a e Italia", "Espa\u00F1a", "Italia"}, in TestContextual()
309 { es, Type.AND, "hijas intr\u00E9pidas e hijos solidarios", "hijas intr\u00E9pidas", "hijos solidarios"}, in TestContextual()
310 { es, Type.AND, "a un hombre e hirieron a otro", "a un hombre", "hirieron a otro"}, in TestContextual()
311 { es, Type.AND, "hija e hijo", "hija", "hijo"}, in TestContextual()
312 { es, Type.AND, "esposa, hija e hijo", "esposa", "hija", "hijo"}, in TestContextual()
314 { es, Typ in TestContextual()
[all...]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DListFormatterTest.java378 String [] es = { "es", "es_419", "es_PY", "es_DO" }; in TestContextual()
382 { es, Type.AND, "fascinante e incre\u00EDblemente", "fascinante", "incre\u00EDblemente"}, in TestContextual()
383 { es, Type.AND, "Comunicaciones Industriales e IIoT", "Comunicaciones Industriales", "IIoT"}, in TestContextual()
384 { es, Type.AND, "Espa\u00F1a e Italia", "Espa\u00F1a", "Italia"}, in TestContextual()
385 { es, Type.AND, "hijas intr\u00E9pidas e hijos solidarios", "hijas intr\u00E9pidas", "hijos solidarios"}, in TestContextual()
386 { es, Type.AND, "a un hombre e hirieron a otro", "a un hombre", "hirieron a otro"}, in TestContextual()
387 { es, Type.AND, "hija e hijo", "hija", "hijo"}, in TestContextual()
388 { es, Type.AND, "esposa, hija e hijo", "esposa", "hija", "hijo"}, in TestContextual()
390 { es, Typ in TestContextual()
[all...]
/third_party/vk-gl-cts/modules/gles31/functional/
H A Des31fIntegerStateQueryTests.cpp123 if (contextSupports(ctxType, glu::ApiType::es(3, 2)) || in init()
194 , m_minimumVersion (glu::ApiType::es(3, 1)) in MinimumValueCase()
216 const int value = contextSupports(m_context.getRenderContext().getType(), glu::ApiType::es(3, 2)) in iterate()
249 , m_minimumVersion (glu::ApiType::es(3, 1)) in AlignmentCase()
501 , m_minimumVersion (glu::ApiType::es(3, 1)) in CombinedUniformComponentsCase()
622 if (contextSupports(m_context.getRenderContext().getType(), glu::ApiType::es(3, 2))) in iterate()
679 if (contextSupports(m_context.getRenderContext().getType(), glu::ApiType::es(3, 2))) in iterate()
735 if (contextSupports(m_context.getRenderContext().getType(), glu::ApiType::es(3, 2))) in iterate()
868 FOR_EACH_VERIFIER(new MinimumValueCase (m_context, (std::string() + "max_framebuffer_layers_" + verifierSuffix).c_str(), "Test MAX_FRAMEBUFFER_LAYERS", GL_MAX_FRAMEBUFFER_LAYERS, 256, verifier, glu::ApiType::es(3, 2))) in init()
869 FOR_EACH_VERIFIER(new MinimumValueCase (m_context, (std::string() + "fragment_interpolation_offset_bits_" + verifierSuffix).c_str(), "Test FRAGMENT_INTERPOLATION_OFFSET_BITS", GL_FRAGMENT_INTERPOLATION_OFFSET_BITS, 4, verifier, glu::ApiType::es( in init()
[all...]
/third_party/ffmpeg/libavcodec/
H A Dmmaldec.c321 if ((ret = ff_set_dimensions(avctx, format_out->es->video.crop.x + format_out->es->video.crop.width, in ffmal_update_format()
322 format_out->es->video.crop.y + format_out->es->video.crop.height)) < 0) in ffmal_update_format()
325 if (format_out->es->video.par.num && format_out->es->video.par.den) { in ffmal_update_format()
326 avctx->sample_aspect_ratio.num = format_out->es->video.par.num; in ffmal_update_format()
327 avctx->sample_aspect_ratio.den = format_out->es->video.par.den; in ffmal_update_format()
329 if (format_out->es->video.frame_rate.num && format_out->es in ffmal_update_format()
[all...]
/third_party/skia/third_party/externals/microhttpd/src/examples/
H A Dmhd2spdy.c73 fd_set es; in run_everything() local
138 FD_ZERO(&es); in run_everything()
152 &es, in run_everything()
162 &es, in run_everything()
171 ret = select(maxfd+1, &rs, &ws, &es, &timeout); in run_everything()
183 //MHD_run_from_select(daemon,&rs, &ws, &es); //not closing FDs at some time in past in run_everything()
185 spdy_run_select(&rs, &ws, &es, connections, spdy_npollfds); in run_everything()
189 //MHD_run_from_select(daemon,&rs, &ws, &es); //not closing FDs at some time in past in run_everything()
/third_party/skia/third_party/externals/microhttpd/src/testcurl/
H A Dtest_get_response_cleanup.c233 fd_set es; in testExternalGet() local
251 FD_ZERO (&es); in testExternalGet()
252 if (MHD_YES != MHD_get_fdset (d, &rs, &ws, &es, &max)) in testExternalGet()
259 select (max + 1, &rs, &ws, &es, &tv); in testExternalGet()
269 FD_ZERO (&es); in testExternalGet()
270 if (MHD_YES != MHD_get_fdset (d, &rs, &ws, &es, &max)) in testExternalGet()
277 select (max + 1, &rs, &ws, &es, &tv); in testExternalGet()
/third_party/mesa3d/src/mapi/glapi/gen/
H A Dgl_procs.py35 def __init__(self, es=False):
38 self.es = es
121 if self.es:
126 if (cat.startswith("es") or cat.startswith("GL_OES")):
164 parser.add_argument('-c', '--es-version',
165 dest='es',
167 help="filter functions for es")
175 PrintGlProcs(args.es).Print(api)
/third_party/icu/icu4c/source/samples/ufortune/resources/
H A DMakefile49 RESFILES=root.res es.res
60 es.res: es.txt
/third_party/skia/third_party/externals/icu/source/samples/ufortune/resources/
H A DMakefile49 RESFILES=root.res es.res
60 es.res: es.txt
/third_party/skia/third_party/externals/microhttpd/src/testcurl/https/
H A Dtest_https_get_select.c86 fd_set es; in testExternalGet() local
152 FD_ZERO (&es); in testExternalGet()
153 mret = curl_multi_fdset (multi, &rs, &ws, &es, &max); in testExternalGet()
162 if (MHD_YES != MHD_get_fdset (d, &rs, &ws, &es, &max)) in testExternalGet()
172 select (max + 1, &rs, &ws, &es, &tv); in testExternalGet()

Completed in 12 milliseconds

12345678910>>...12