Searched defs:cont (Results 1 - 25 of 63) sorted by relevance

123

/external/libunwind/src/setjmp/
H A Dsiglongjmp.c65 int *cont; local
87 cont = &_UI_longjmp_cont;
112 cont = &_UI_siglongjmp_cont;
117 || unw_set_reg (&c, UNW_REG_IP, (unw_word_t) (uintptr_t) cont))
/external/valgrind/memcheck/tests/
H A Dreach_thread_register.c15 int cont = 1; variable
24 while (cont) {
/external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
H A Dp3.cpp45 void quuz(const Container &cont) { argument
/external/google-breakpad/src/third_party/libdisasm/
H A Dx86_disasm.c135 unsigned int size, count = 0, bytes = 0, cont = 1; local
137 while ( cont && bytes < buf_len ) {
187 cont = 0;
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/impl/
H A DDemoUtility.java48 public static void fixGrid(Container cont, int columns) { argument
50 cont.setLayout(gridbag);
57 Component[] components = cont.getComponents();
80 public static void setInsets(Container cont, Component comp, Insets insets) { argument
81 GridBagLayout gbl = (GridBagLayout)cont.getLayout();
/external/libchrome/base/
H A Dstl_util.h96 bool STLIsSorted(const Container& cont) { argument
99 return std::adjacent_find(cont.rbegin(), cont.rend(),
101 == cont.rend();
/external/mesa3d/src/gallium/drivers/vc4/
H A Dvc4_qir_live_variables.c240 bool cont = false; local
253 cont = true;
265 cont = true;
270 return cont;
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_fs_live_variables.cpp155 bool cont = true; local
157 while (cont) {
158 cont = false;
172 cont = true;
179 cont = true;
190 cont = true;
198 cont = true;
H A Dbrw_vec4_live_variables.cpp134 bool cont = true; local
136 while (cont) {
137 cont = false;
151 cont = true;
158 cont = true;
169 cont = true;
177 cont = true;
/external/webrtc/webrtc/system_wrappers/include/
H A Dstl_util.h208 bool STLIsSorted(const Container& cont) { argument
211 return std::adjacent_find(cont.rbegin(), cont.rend(),
213 == cont.rend();
/external/autotest/client/bin/
H A Dsetup_job_unittest.py82 cont = False variable in class:test_init_minimal_options.call_init.options
H A Djob_unittest.py93 cont = False variable in class:test_init_minimal_options.call_init.options
180 def _setup_pre_record_init(self, cont):
185 if not cont:
200 def _setup_post_record_init(self, cont, resultdir, my_harness):
213 if not cont:
221 if not cont:
227 def construct_job(self, cont):
232 resultdir, my_harness = self._setup_pre_record_init(cont)
233 self._setup_post_record_init(cont, resultdir, my_harness)
238 options.cont
[all...]
/external/boringssl/src/decrepit/bio/
H A Dbase64_bio.c85 int cont; // <= 0 when finished member in struct:b64_struct
101 ctx->cont = 1;
168 if (ctx->cont <= 0) {
180 ctx->cont = i;
258 } else if (i < B64_BLOCK_SIZE && ctx->cont > 0) {
440 ctx->cont = 1;
447 if (ctx->cont <= 0) {
/external/ltp/pan/
H A Dtag_report.c59 char **cont; local
88 for (cont = (char **)cont_save; *cont != NULL; cont++) {
89 printf(FORMAT, tag, tcid, tc, result, *cont);
/external/mesa3d/src/egl/drivers/haiku/
H A Degl_haiku.cpp287 struct haiku_egl_context* cont = haiku_egl_context(ctx); local
295 //cont->ctx.DrawSurface=&surf->surf;
/external/python/cpython2/Lib/idlelib/
H A DDebugger.py138 self.bcont = b = Button(bframe, text="Go", command=self.cont)
262 def cont(self): member in class:Debugger
/external/python/cpython3/Lib/idlelib/
H A Ddebugger.py143 self.bcont = b = Button(bframe, text="Go", command=self.cont)
267 def cont(self): member in class:Debugger
/external/tensorflow/tensorflow/python/debug/cli/
H A Dstepper_cli.py113 # Parser for "cont".
133 help="Restore all variables in the transitive closure of the cont "
136 self.arg_parsers["cont"] = ap
378 def cont(self, args, screen_info=None): member in class:NodeStepperCLI
383 parsed = self.arg_parsers["cont"].parse_args(args)
393 cont_result = self._node_stepper.cont(
424 """Generate a report of the feed types used in the cont/step call.
428 feeds used in the last cont/step call.
446 """Generate a report of the variables updated in the last cont/step call.
450 variables updated in the last cont/ste
[all...]
/external/tensorflow/tensorflow/python/debug/lib/
H A Dstepper.py66 fetch. cont() (continue to) calls can only be performed on members of the
69 On a cont() call, the stepper performs depth-first tracing of the input
71 available, it will supply the available value to the feed_dict of the cont()
74 (2) TensorHandles from previous cont() calls.
75 (3) Dumped intermediate Tensors from previous cont() calls.
78 During the cont() call, intermediate Tensors are dumped to temporary
79 directories. The dumped Tensor values will be used in subsequent cont() calls
89 are updated during previous cont() calls on this stepper instance. If such
104 stepper.cont(c) # Caches the handle to Tensor c:0.
105 stepper.cont(
448 def cont(self, member in class:NodeStepper
[all...]
/external/boringssl/src/crypto/asn1/
H A Dtasn_dec.c719 const unsigned char *cont = NULL; local
783 cont = *in;
788 len = p - cont;
790 len = p - cont + plen;
820 cont = (const unsigned char *)buf.data;
822 cont = p;
829 if (!asn1_ex_c2i(pval, cont, len, utype, &free_cont, it))
842 int asn1_ex_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, argument
854 return pf->prim_c2i(pval, cont, len, utype, free_cont, it);
872 if (!c2i_ASN1_OBJECT((ASN1_OBJECT **)pval, &cont, le
[all...]
H A Dtasn_enc.c551 const unsigned char *cont; local
584 cont = otmp->data;
589 cont = NULL;
607 cont = &c;
653 cont = strtmp->data;
660 OPENSSL_memcpy(cout, cont, len);
/external/icu/icu4c/source/test/cintltst/
H A Duenumtst.c49 #define cont ((chArrayContext *)en->context) macro
53 if(cont->currUChar != NULL) {
54 free(cont->currUChar);
55 cont->currUChar = NULL;
62 return cont->maxIndex;
67 if(cont->currIndex >= cont->maxIndex) {
71 if(cont->currUChar == NULL) {
72 cont->currUChar = (UChar *)malloc(1024*sizeof(UChar));
75 cont
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dcolldata.cpp73 UBool cont = isContinuation(order); local
89 if (cont) {
/external/libopus/celt/
H A Dpitch.c481 opus_val16 cont=0; local
502 cont = prev_gain;
504 cont = HALF16(prev_gain);
506 cont = 0;
507 thresh = MAX16(QCONST16(.3f,15), MULT16_16_Q15(QCONST16(.7f,15),g0)-cont);
511 thresh = MAX16(QCONST16(.4f,15), MULT16_16_Q15(QCONST16(.85f,15),g0)-cont);
513 thresh = MAX16(QCONST16(.5f,15), MULT16_16_Q15(QCONST16(.9f,15),g0)-cont);
/external/e2fsprogs/e2fsck/
H A Dunix.c229 int cont; local
276 cont = ask_yn(ctx, _("Do you really want to continue"), 0);
277 if (!cont) {

Completed in 765 milliseconds

123