Searched refs:lb (Results 1 - 25 of 206) sorted by relevance

123456789

/external/python/cpython3/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;
48 else if (lb->lb_type < N_TOKENS) {
49 if (lb->lb_str == NULL)
50 return _PyParser_TokenNames[lb->lb_type];
53 _PyParser_TokenNames[lb
[all...]
H A Dgrammar.c108 label *lb; local
119 lb = &ll->ll_label[ll->ll_nlabels++];
120 lb->lb_type = type;
121 lb->lb_str = strdup(str);
124 PyGrammar_LabelRepr(lb));
125 return Py_SAFE_DOWNCAST(lb - ll->ll_label, intptr_t, int);
168 translabel(grammar *g, label *lb) argument
173 printf("Translating label %s ...\n", PyGrammar_LabelRepr(lb));
175 if (lb->lb_type == NAME) {
177 if (strcmp(lb
[all...]
/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/capstone/suite/MC/Mips/
H A Dhilo-addressing.s.cs4 0x80,0x82,0xbe,0xef = lb $2, %lo(addr)($4)
H A Dmicromips-loadstore-instructions-EB.s.cs2 0x1c,0xa4,0x00,0x08 = lb $5, 8($4)
H A Dmicromips-loadstore-instructions.s.cs2 0xa4,0x1c,0x08,0x00 = lb $5, 8($4)
H A Dmips-memory-instructions.s.cs9 0x04,0x00,0xa4,0x80 = lb $4, 4($5)
/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/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/libcxx/test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.pconst/
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)
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...]
/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;
136 int i, j, nw, lb, rb; local
147 lb = BN_BITS2 - rb;
178 *(t++) = tmp | (l << lb);
/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)
/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/python/cpython2/Lib/lib-tk/test/test_tkinter/
H A Dtest_widgets.py787 lb = self.create()
788 lb.insert(0, *('el%d' % i for i in range(8)))
789 lb.pack()
790 self.assertIsBoundingBox(lb.bbox(0))
791 self.assertIsNone(lb.bbox(-1))
792 self.assertIsNone(lb.bbox(10))
793 self.assertRaises(TclError, lb.bbox, 'noindex')
794 self.assertRaises(TclError, lb.bbox, None)
795 self.assertRaises(TypeError, lb.bbox)
796 self.assertRaises(TypeError, lb
[all...]
/external/python/cpython3/Lib/tkinter/test/test_tkinter/
H A Dtest_widgets.py791 lb = self.create()
792 lb.insert(0, *('el%d' % i for i in range(8)))
793 lb.pack()
794 self.assertIsBoundingBox(lb.bbox(0))
795 self.assertIsNone(lb.bbox(-1))
796 self.assertIsNone(lb.bbox(10))
797 self.assertRaises(TclError, lb.bbox, 'noindex')
798 self.assertRaises(TclError, lb.bbox, None)
799 self.assertRaises(TypeError, lb.bbox)
800 self.assertRaises(TypeError, lb
[all...]
/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/snakeyaml/src/main/java/org/yaml/snakeyaml/
H A DDumperOptions.java126 for (LineBreak lb : values()) {
127 if (lb.lineBreak.equals(platformLineBreak)) {
128 return lb;
/external/e2fsprogs/debugfs/
H A Ddebugfs.c528 static void finish_range(struct list_blocks_struct *lb) argument
530 if (lb->first_block == 0)
532 if (lb->first)
533 lb->first = 0;
535 fprintf(lb->f, ", ");
536 if (lb->first_block == lb->last_block)
537 fprintf(lb->f, "(%lld):%llu",
538 (long long)lb->first_bcnt, lb
552 struct list_blocks_struct *lb = (struct list_blocks_struct *) private; variable in typeref:struct:list_blocks_struct
569 finish_range(lb); variable
577 finish_range(lb); variable
607 struct list_blocks_struct lb; local
[all...]
/external/llvm/test/MC/Mips/
H A Dmips-memory-instructions.s26 # CHECK: lb $4, 4($5) # encoding: [0x04,0x00,0xa4,0x80]
36 lb $4, 4($5)

Completed in 726 milliseconds

123456789