Searched refs:nops (Results 1 - 24 of 24) sorted by relevance

/external/elfutils/libdwfl/
H A Ddwfl_module_return_value_location.c49 int nops = ebl_return_value_location (mod->ebl, functypedie, locops); local
50 if (unlikely (nops < 0))
52 if (nops == -1)
54 else if (nops == -2)
58 nops = -1;
61 return nops;
H A Dframe_unwind.c152 size_t nops, Dwarf_Addr *result, Dwarf_Addr bias)
155 if (nops == 0)
173 for (const Dwarf_Op *op = ops; op < ops + nops; op++)
452 const Dwarf_Op *found = bsearch ((void *) (uintptr_t) offset, ops, nops,
151 expr_eval(Dwfl_Frame *state, Dwarf_Frame *frame, const Dwarf_Op *ops, size_t nops, Dwarf_Addr *result, Dwarf_Addr bias) argument
/external/elfutils/libdw/
H A Ddwarf_frame_cfa.c38 dwarf_frame_cfa (Dwarf_Frame *fs, Dwarf_Op **ops, size_t *nops) argument
49 *nops = 0;
55 *nops = 1;
64 ops, nops, IDX_debug_frame);
H A Ddwarf_frame_register.c38 Dwarf_Op **ops, size_t *nops)
51 *nops = 0;
78 ops_mem[(*nops)++] = (Dwarf_Op) { .atom = DW_OP_call_frame_cfa };
80 ops_mem[(*nops)++] = (Dwarf_Op) { .atom = DW_OP_plus_uconst,
84 ops_mem[(*nops)++] = (Dwarf_Op) { .atom = DW_OP_stack_value };
89 ops_mem[(*nops)++] = (Dwarf_Op) { .atom = DW_OP_regx,
112 ops, nops, IDX_debug_frame) < 0)
37 dwarf_frame_register(Dwarf_Frame *fs, int regno, Dwarf_Op *ops_mem, Dwarf_Op **ops, size_t *nops) argument
H A Dlibdw.h964 extern int dwarf_frame_cfa (Dwarf_Frame *frame, Dwarf_Op **ops, size_t *nops)
987 Dwarf_Op **ops, size_t *nops)
/external/autotest/client/tests/fsstress/
H A Dfsstress.py23 def run_once(self, testdir = None, extra_args = '', nproc = '1000', nops = '1000'):
27 args = '-d %s -p %s -n %s %s' % (testdir, nproc, nops, extra_args)
/external/elfutils/tests/
H A Daddrcfi.c49 print_detail (int result, const Dwarf_Op *ops, size_t nops, Dwarf_Addr bias) argument
53 else if (nops == 0)
58 for (size_t i = 0; i < nops; ++i)
97 size_t nops; local
98 int result = dwarf_frame_register (stuff->frame, regno, ops_mem, &ops, &nops);
99 print_detail (result, ops, nops, stuff->bias);
142 // (nops == 0 && cfa_ops != NULL => "undefined")
/external/llvm/test/MC/X86/AlignedBundling/
H A Dlong-nop-pad.s6 # Test that long nops are generated for padding where possible.
/external/python/cpython3/Python/
H A Dpeephole.c429 unsigned int j, nops; local
719 for (i = 0, nops = 0; i < codelen; i++) {
720 assert(i - nops <= INT_MAX);
722 blocks[i] = i - nops;
724 nops++;
778 assert(h + (Py_ssize_t)nops == codelen);
H A Dast.c2310 int i, nops; local
2331 nops = (NCH(n) - 1) / 2;
2332 for (i = 1; i < nops; i++) {
/external/python/cpython2/Python/
H A Dpeephole.c303 int nops, h, adj; local
600 for (i=0, nops=0 ; i<codelen ; i += CODESIZE(codestr[i])) {
601 addrmap[i] = i - nops;
603 nops++;
647 assert(h + nops == codelen);
H A Dast.c1606 int i, nops; local
1627 nops = (NCH(n) - 1) / 2;
1628 for (i = 1; i < nops; i++) {
/external/javassist/src/main/javassist/bytecode/
H A DCodeIterator.java1485 int nops = gap - padding;
1487 adjustOffsets(bytecodeSize, nops);
1495 while (nops-- > 0)
1513 void adjustOffsets(int size, int nops) { argument
1515 defaultByte -= nops;
1519 offsets[i] -= nops;
/external/gemmlowp/internal/
H A Dmulti_thread_gemm.h116 int nops = 0; local
124 while (nops < kMaxBusyWaitNOPs) {
125 nops += Do256NOPs();
/external/llvm/test/MC/MachO/
H A Dx86_32-optimal_nop.s153 # Only the .text sections gets optimal nops.
/external/swiftshader/third_party/LLVM/test/MC/MachO/
H A Dx86_32-optimal_nop.s153 # Only the .text sections gets optimal nops.
/external/elfutils/include/elfutils/
H A Dlibdw.h964 extern int dwarf_frame_cfa (Dwarf_Frame *frame, Dwarf_Op **ops, size_t *nops)
987 Dwarf_Op **ops, size_t *nops)
/external/llvm/test/MC/Mips/
H A Dnacl-mask.s197 # check that 2 additional nops are inserted, to align it to the next bundle.
/external/e2fsprogs/contrib/
H A Dfsstress.c250 int nops; variable
343 nops = sizeof(ops) / sizeof(ops[0]);
344 ops_end = &ops[nops];
1391 (" %s [-c][-d dir][-e errtg][-f op_name=freq][-l loops][-n nops]\n",
1408 (" -n nops specifies the no. of operations per process (default 1)\n");
/external/ltp/testcases/kernel/fs/fsstress/
H A Dfsstress.c223 int nops; variable
316 nops = ARRAY_SIZE(ops);
317 ops_end = &ops[nops];
1366 (" %s [-c][-d dir][-e errtg][-f op_name=freq][-l loops][-n nops]\n",
1383 (" -n nops specifies the no. of operations per process (default 1)\n");
/external/vixl/test/aarch32/
H A Dtest-assembler-aarch32.cc1262 const int nops = (ldr_range - ldrd_range) / nop_size; local
1264 for (int n = nops - 10; n < nops + 10; ++n) {
1288 // Generate nops, in order to bring the checkpoints of the Ldr and Ldrd
1308 // be emitted after the ldrd when the number of nops is small enough.
1949 // Generate nops precisely to fill the buffer.
3551 // probability of nops being emitted in the sequence. The branch-to-bind
3654 // - 0..3: Generate various amount of nops.
3657 // - 15..19: Generate various amount of nops.
3662 // - "nops v
[all...]
/external/vixl/src/aarch32/
H A Dmacro-assembler-aarch32.h104 int nops = 0; variable
108 nops = n / nop_size;
112 for (int i = 0; i < nops; ++i) {
/external/guice/extensions/struts2/lib/
H A Djavassist.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/ByteArrayClassPath.class ByteArrayClassPath.java package javassist ...
/external/robolectric/v1/lib/main/
H A Djavassist-3.14.0-GA.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/bytecode/ javassist/bytecode/analysis/ javassist/bytecode/annotation/ javassist/ ...

Completed in 494 milliseconds