Searched defs:lb (Results 1 - 25 of 50) sorted by relevance

12

/external/python/cpython2/Parser/
H A Dgrammar1.c34 PyGrammar_LabelRepr(label *lb) argument
38 if (lb->lb_type == ENDMARKER)
40 else if (ISNONTERMINAL(lb->lb_type)) {
41 if (lb->lb_str == NULL) {
42 PyOS_snprintf(buf, sizeof(buf), "NT%d", lb->lb_type);
46 return lb->lb_str;
49 if (lb->lb_str == NULL)
50 return _PyParser_TokenNames[lb->lb_type];
53 _PyParser_TokenNames[lb->lb_type], lb
[all...]
H A Dgrammar.c95 label *lb; local
106 lb = &ll->ll_label[ll->ll_nlabels++];
107 lb->lb_type = type;
108 lb->lb_str = strdup(str);
111 PyGrammar_LabelRepr(lb));
112 return lb - ll->ll_label;
149 translabel(grammar *g, label *lb) argument
154 printf("Translating label %s ...\n", PyGrammar_LabelRepr(lb));
156 if (lb->lb_type == NAME) {
158 if (strcmp(lb
[all...]
/external/c-ares/
H A Dbitncmp.c38 unsigned int lb, rb; local
46 lb = ((const unsigned char *)l)[b];
49 if ((lb & 0x80) != (rb & 0x80)) {
50 if (lb & 0x80)
54 lb <<= 1;
/external/clang/test/OpenMP/
H A Dtarget_data_codegen.cpp38 float lb[arg]; local
118 #pragma omp target data map(always, to: lb)
H A Dtarget_enter_data_codegen.cpp38 float lb[arg]; local
104 #pragma omp target enter data map(always, to: lb)
H A Dtarget_exit_data_codegen.cpp38 float lb[arg]; local
104 #pragma omp target exit data map(always, from: lb)
H A Dtarget_update_codegen.cpp38 float lb[arg]; local
102 #pragma omp target update from(lb)
H A Dteams_codegen.cpp126 SS<long long> lb; local
156 #pragma omp teams num_teams((long long)lb.b) thread_limit(Gblb.a)
H A Dtarget_map_codegen.cpp2544 T *lb; local
2581 #pragma omp target map(lb[:X])
2583 lb[4] += 1;
/external/openssh/openbsd-compat/regress/
H A Dstrtonumtest.c41 test(const char *p, long long lb, long long ub, int ok) argument
46 val = strtonum(p, lb, ub, &q);
48 fprintf(stderr, "%s [%lld-%lld] ", p, lb, ub);
52 fprintf(stderr, "%s [%lld-%lld] %lld ", p, lb, ub, val);
/external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.pconst/
H A Deval.pass.cpp60 I lb = std::lower_bound(u.begin(), u.end(), b[i]); local
62 const size_t Ni = ub - lb;
68 double mean = std::accumulate(lb, ub, 0.0) / Ni;
72 for (I j = lb; j != ub; ++j)
123 I lb = std::lower_bound(u.begin(), u.end(), b[i]);
125 const size_t Ni = ub - lb;
131 double mean = std::accumulate(lb, ub, 0.0) / Ni;
135 for (I j = lb; j != ub; ++j)
186 I lb = std::lower_bound(u.begin(), u.end(), b[i]);
188 const size_t Ni = ub - lb;
[all...]
H A Deval_param.pass.cpp63 I lb = std::lower_bound(u.begin(), u.end(), b[i]); local
65 const size_t Ni = ub - lb;
71 double mean = std::accumulate(lb, ub, 0.0) / Ni;
75 for (I j = lb; j != ub; ++j)
/external/boringssl/src/crypto/fipsmodule/bn/
H A Dshift.c67 int i, nw, lb, rb; local
81 lb = n % BN_BITS2;
82 rb = BN_BITS2 - lb;
86 if (lb == 0) {
94 t[nw + i] = (l << lb) & BN_MASK2;
136 int i, j, nw, lb, rb; local
147 lb = BN_BITS2 - rb;
178 *(t++) = (tmp | (l << lb)) & BN_MASK2;
/external/elfutils/tests/
H A Dget-lines.c71 Dwarf_Lines *lb; local
73 if (dwarf_getsrclines (&die, &lb, &nlb) != 0)
84 Dwarf_Line *l = dwarf_onesrcline (lb, i);
/external/e2fsprogs/util/
H A Dcopy_sparse.c93 long lb, i, fd, ofd, bs, block, numblocks; local
147 for (lb = 0; !fd || lb < numblocks; lb++) {
149 block = get_bmap(fd, lb);
152 should_be = ((off64_t) lb) * bs;
/external/syslinux/core/lwip/src/include/lwip/
H A Dapi_msg.h112 } lb; member in union:api_msg_msg::__anon21011
/external/clang/test/CodeGen/
H A Dasm.c177 unsigned int lb = b; local
180 __asm__ ("0:\n1:\n" : [bigres] "=la"(bigres) : [la] "0"(la), [lb] "c"(lb) :
189 unsigned int lb = b; local
191 __asm__ ("0:\n1:\n" : [res] "=la"(res) : [la] "0"(la), [lb] "c"(lb) :
/external/iproute2/tc/
H A Dq_netem.c580 struct rtattr *lb[NETEM_LOSS_MAX + 1]; local
582 parse_rtattr_nested(lb, NETEM_LOSS_MAX, tb[TCA_NETEM_LOSS]);
583 if (lb[NETEM_LOSS_GI])
584 gimodel = RTA_DATA(lb[NETEM_LOSS_GI]);
585 if (lb[NETEM_LOSS_GE])
586 gemodel = RTA_DATA(lb[NETEM_LOSS_GE]);
/external/mesa3d/src/mesa/drivers/dri/nouveau/
H A Dnouveau_util.h98 GLubyte lb, ab; local
99 UNCLAMPED_FLOAT_TO_UBYTE(lb, l);
101 return pack_rgba_i(f, (uint8_t []) { lb, lb, lb, ab });
/external/v8/src/ast/
H A Dast-value-factory.cc44 explicit OneByteStringStream(Vector<const byte> lb) : argument
45 literal_bytes_(lb), pos_(0) {}
/external/valgrind/drd/tests/
H A Dunit_bitmap.c202 const Addr lb = make_address(2, 0) - 2 * BITS_PER_UWORD; local
212 for (i = lb; i < ub; i += outer_loop_step)
/external/valgrind/mpi/
H A Dmpiwrap_type_test.c122 MPI_Aint lb, ub, ex; local
147 r = MPI_Type_lb( *tyP, &lb );
153 printf("sendToMyself: ex=%d (%d,%d)\n", (int)ex, (int)lb, (int)ub);
154 assert(lb >= 0);
/external/icu/icu4c/source/tools/toolutil/
H A Ducm.c129 const uint8_t *lb, *rb; local
158 lb=UCM_GET_BYTES(lTable, l);
163 result=lb[i]-rb[i];
/external/python/cpython2/Modules/_ctypes/libffi/src/powerpc/
H A Dffi_darwin.c1130 ldbits lb; member in union:ldu
1336 memcpy (&temp_ld.lb[0], pfr, sizeof(ldbits));
1337 memcpy (&temp_ld.lb[1], pgr + 2, sizeof(ldbits));
/external/python/cpython2/Modules/_ctypes/libffi_osx/powerpc/
H A Dppc-ffi_darwin.c797 ldbits lb; member in union:__anon17508
992 memcpy (&temp_ld.lb[0], pfr, sizeof(temp_ld.lb[0]));
993 memcpy (&temp_ld.lb[1], pgr + 2, sizeof(temp_ld.lb[1]));

Completed in 711 milliseconds

12