Searched defs:fixup (Results 1 - 23 of 23) sorted by relevance

/external/libxml2/xstc/
H A Dfixup-tests.py32 def fixup(): function
93 fixup()
/external/elfutils/libdwfl/
H A Dsegment.c158 bool fixup = false; local
225 fixup = true;
231 if (fixup)
H A Ddwfl_segment_report_module.c637 GElf_Addr fixup = module->l_ld - dyn_vaddr; local
638 if ((fixup & (dwfl->segment_align - 1)) == 0
639 && module_start + fixup <= module->l_ld
640 && module->l_ld < module_end + fixup)
642 module_start += fixup;
643 module_end += fixup;
644 dyn_vaddr += fixup;
645 bias += fixup;
/external/python/cpython2/Lib/
H A Dsre_compile.py101 def fixup(literal, flags=flags): function in function:_compile
105 fixup = None
107 _compile_charset(av, flags, code, fixup, fixes)
228 def _compile_charset(charset, flags, code, fixup=None, fixes=None):
231 for op, av in _optimize_charset(charset, fixup, fixes,
256 def _optimize_charset(charset, fixup, fixes, isunicode):
265 if fixup:
266 i = fixup(av)
275 if fixup:
276 r = map(fixup,
[all...]
H A Dpydoc.py179 """Wrap inspect.classify_class_attrs, with fixup for data descriptors."""
180 def fixup(data): function in function:classify_class_attrs
185 return map(fixup, inspect.classify_class_attrs(object))
/external/linux-kselftest/tools/testing/selftests/powerpc/primitives/
H A Dload_unaligned_zeropad.c4 * a SEGV handler that walks the exception tables and runs the fixup
78 int fixup; member in struct:extbl_entry
89 unsigned long insn, fixup; local
92 fixup = (unsigned long)&entry->fixup + entry->fixup;
95 *ip = fixup;
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_state_static.c166 static uint32_t need_target_fixup(struct pipe_surface* p, uint32_t *fixup) argument
182 /* if we don't have a surface bound yet, we don't need to fixup the shader */
189 *fixup = fixup_formats[i].hw_swizzle;
193 *fixup = 0;
203 uint32_t fixup = 0; local
241 need_fixup = need_target_fixup(cbuf_surface, &fixup);
243 i915->current.fixup_swizzle != fixup) {
245 i915->current.fixup_swizzle = fixup;
246 /* we also send a new program to make sure the fixup for RGBA surfaces happens */
/external/gemmlowp/fixedpoint/
H A Dfixedpoint_neon.h149 const int32x4_t fixup = vshrq_n_s32(vandq_s32(x, shift_vec), 31); local
150 const int32x4_t fixed_up_x = vqaddq_s32(x, fixup);
162 const int32x4_t fixup = vshrq_n_s32(x, 31); local
163 const int32x4_t fixed_up_x = vqaddq_s32(x, fixup);
/external/icu/android_icu4j/src/main/java/android/icu/lang/
H A DUScriptRun.java388 fixup(scriptCode);
524 private final void fixup(int scrptCode) method in class:UScriptRun
/external/icu/icu4c/source/common/
H A Dusc_impl.c109 static void fixup(UScriptRun *scriptRun, UScriptCode scriptCode) function
324 fixup(scriptRun, scriptRun->scriptCode);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/
H A DUScriptRun.java386 fixup(scriptCode);
522 private final void fixup(int scrptCode) method in class:UScriptRun
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_sse.h191 __m128i anegmask, bnegmask, fixup, fixup02, fixup13; local
196 fixup = _mm_add_epi32(_mm_and_si128(anegmask, b),
200 fixup02 = _mm_slli_epi64(fixup, 32);
201 fixup13 = _mm_and_si128(fixup, _mm_set_epi32(-1,0,-1,0));
/external/mesa3d/src/mesa/tnl/
H A Dt_vertex_sse.c359 GLubyte *fixup, *label; local
372 fixup = x86_jcc_forward(&p->func, cc_E);
625 x86_fixup_fwd_jump(&p->func, fixup);
/external/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCCodeEmitter.cpp784 MCFixup fixup = MCFixup::create(*Addend, FixupExpression, local
786 Fixups.push_back(fixup);
787 // All of the information is in the fixup.
/external/swiftshader/third_party/subzero/src/
H A DIceAssemblerX86Base.h77 explicit Immediate(AssemblerFixup *fixup) : fixup_(fixup) {} argument
80 AssemblerFixup *fixup() const { return fixup_; } function in class:Ice::X86NAMESPACE::AssemblerX86Base::Immediate
H A DIceTargetLoweringX8632Traits.h126 AssemblerFixup *fixup() const { return fixup_; } function in class:Ice::X8632::TargetX8632Traits::Operand
156 void SetFixup(AssemblerFixup *fixup) { fixup_ = fixup; } argument
H A DIceTargetLoweringX8664Traits.h131 AssemblerFixup *fixup() const { return fixup_; } function in class:Ice::X8664::TargetX8664Traits::Operand
162 void SetFixup(AssemblerFixup *fixup) { fixup_ = fixup; } argument
/external/v8/src/regexp/
H A Dregexp-macro-assembler-irregexp.cc47 int fixup = pos; local
48 pos = *reinterpret_cast<int32_t*>(buffer_.start() + fixup);
49 *reinterpret_cast<uint32_t*>(buffer_.start() + fixup) = pc_;
/external/e2fsprogs/e2fsck/
H A Dpass2.c468 int fixup = -1; local
474 if (fixup < 0)
475 fixup = fix_problem(ctx, PR_2_BAD_NAME, pctx);
476 if (fixup == 0)
/external/mesa3d/src/gallium/auxiliary/translate/
H A Dtranslate_sse.c1295 int fixup, label; local
1367 fixup = x86_jcc_forward(p->func, cc_E);
1421 x86_fixup_fwd_jump(p->func, fixup);
/external/python/cpython2/Objects/
H A Dunicodeobject.c5359 /* helper macro to fixup start/end slice values */
5495 PyObject *fixup(PyUnicodeObject *self, function
6034 return fixup(self, fixtitle);
6046 return fixup(self, fixcapitalize);
6070 item = fixup((PyUnicodeObject *)PyList_GET_ITEM(list, i),
7053 return fixup(self, fixlower);
7669 return fixup(self, fixswapcase);
7698 return fixup(self, fixupper);
/external/guice/lib/build/
H A Dbnd-0.0.384.jarMETA-INF/MANIFEST.MF LICENSE OSGI-OPT/ OSGI-OPT/bnd.bnd OSGI-OPT/ ...
/external/dagger2/lib/
H A Dauto-value-1.4.1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/auto/ com/google/auto/value/ ...

Completed in 864 milliseconds