HomeSort by relevance Sort by last modified time
    Searched refs:Re (Results 1 - 25 of 89) sorted by null

1 2 3 4

  /prebuilts/go/darwin-x86/src/crypto/sha1/
sha1block_arm.s 32 #define Re R6 // SHA1 accumulator
56 #define LOAD(Re) \
65 ADD Rt0, Re, Re
70 #define SHUFFLE(Re) \
80 ADD Rt0, Re, Re
83 #define FUNC1(Ra, Rb, Rc, Rd, Re) \
90 #define FUNC2(Ra, Rb, Rc, Rd, Re) \
96 #define FUNC3(Ra, Rb, Rc, Rd, Re) \
    [all...]
  /prebuilts/go/linux-x86/src/crypto/sha1/
sha1block_arm.s 32 #define Re R6 // SHA1 accumulator
56 #define LOAD(Re) \
65 ADD Rt0, Re, Re
70 #define SHUFFLE(Re) \
80 ADD Rt0, Re, Re
83 #define FUNC1(Ra, Rb, Rc, Rd, Re) \
90 #define FUNC2(Ra, Rb, Rc, Rd, Re) \
96 #define FUNC3(Ra, Rb, Rc, Rd, Re) \
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
fft.h 15 * Re[]: real value array
20 * in Re[] and Im[]
40 int WebRtcIsac_Fftns (unsigned int ndim, const int dims[], double Re[], double Im[],
fft.c 50 * int WebRtcIsac_Fftn (int ndim, const int dims[], REAL Re[], REAL Im[],
57 * RE and IM hold the real and imaginary components of the data, and return
71 * tri-variate transform with Re[n1][n2][n3], Im[n1][n2][n3]
74 * WebRtcIsac_Fftn (3, dims, Re, Im, 1, scaling);
77 * int WebRtcIsac_Fftradix (REAL Re[], REAL Im[], size_t nTotal, size_t nPass,
81 * RE, IM - see above documentation
93 * tri-variate transform with Re[n1][n2][n3], Im[n1][n2][n3]
95 * WebRtcIsac_Fftradix (Re, Im, n1*n2*n3, n1, n1, 1, maxf, maxp);
96 * WebRtcIsac_Fftradix (Re, Im, n1*n2*n3, n2, n1*n2, 1, maxf, maxp);
97 * WebRtcIsac_Fftradix (Re, Im, n1*n2*n3, n3, n1*n2*n3, 1, maxf, maxp)
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/all/
equiv1.s 0 ;# Re-definition of an already .equiv-ed symbol (to another symbol).
equiv2.s 0 ;# Re-definition of an already .equiv-ed symbol (to an expression).
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue4370.go 7 // Re-exporting inlined function bodies missed types in x, ok := v.(Type)
  /prebuilts/go/linux-x86/test/fixedbugs/
issue4370.go 7 // Re-exporting inlined function bodies missed types in x, ok := v.(Type)
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/api/
omxtypes.h 116 OMX_S8 Re; /** Real part */
125 OMX_S16 Re; /** Real part */
134 OMX_S32 Re; /** Real part */
143 OMX_S64 Re; /** Real part */
armCOMM.h 40 OMX_F32 Re; /** Real part */
47 OMX_F64 Re; /** Real part */
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/api/
omxtypes.h 116 OMX_S8 Re; /** Real part */
125 OMX_S16 Re; /** Real part */
134 OMX_S32 Re; /** Real part */
143 OMX_S64 Re; /** Real part */
armCOMM.h 40 OMX_F32 Re; /** Real part */
47 OMX_F64 Re; /** Real part */
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/api/
omxtypes.h 116 OMX_S8 Re; /** Real part */
125 OMX_S16 Re; /** Real part */
134 OMX_S32 Re; /** Real part */
143 OMX_S64 Re; /** Real part */
armCOMM.h 40 OMX_F32 Re; /** Real part */
47 OMX_F64 Re; /** Real part */
  /external/valgrind/perf/
ffbench.c 259 #define Re(x,y) fdata[1 + (faedge * (x) + (y)) * 2]
266 Re(i, j) = 128.0;
311 k = (Re(i, j) - mapbase) * mapscale;
351 k = (Re(i, j) - mapbase) * mapscale;
  /external/webrtc/webrtc/common_audio/signal_processing/
spl_sqrt_floor_arm.S 7 @ Subject: Re: sqrt routine
  /prebuilts/go/darwin-x86/src/math/cmplx/
sqrt.go 38 // Re w = [ (r + x)/2 ] ,
44 // identity 2 Re w Im w = y.
  /prebuilts/go/linux-x86/src/math/cmplx/
sqrt.go 38 // Re w = [ (r + x)/2 ] ,
44 // identity 2 Re w Im w = y.
  /external/robolectric/
Android.mk 21 # Re-package icudata under android.icu.**.
  /prebuilts/go/darwin-x86/src/cmd/vet/testdata/
atomic.go 48 // Re-declaration assigns a new value.
  /prebuilts/go/linux-x86/src/cmd/vet/testdata/
atomic.go 48 // Re-declaration assigns a new value.
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Trim/
Trim.py 19 import re
35 gLineControlDirective = re.compile('^\s*#(?:line)?\s+([0-9]+)\s+"*([^"]*)"')
37 gTypedefPattern = re.compile("^\s*typedef\s+struct(\s+\w+)?\s*[{]*$", re.MULTILINE)
39 gPragmaPattern = re.compile("^\s*#pragma\s+pack", re.MULTILINE)
47 gHexNumberPattern = re.compile("(?<=[^a-zA-Z0-9_])(0[xX])([0-9a-fA-F]+)(U(?=$|[^a-zA-Z0-9_]))?")
49 gDecNumberPattern = re.compile("(?<=[^a-zA-Z0-9_])([0-9]+)U(?=$|[^a-zA-Z0-9_])")
51 gLongNumberPattern = re.compile("(?<=[^a-zA-Z0-9_])(0[xX][0-9a-fA-F]+|[0-9]+)U?LL(?=$|[^a-zA-Z0-9_])")
54 gAslIncludePattern = re.compile("^(\s*)[iI]nclude\s*\(\"?([^\"\(\)]+)\"\)", re.MULTILINE)
    [all...]
  /external/syslinux/com32/gfxboot/
realmode_callback.asm 162 ; Re-read fs structures.
  /external/autotest/server/hosts/
cros_repair.py 77 # verifier can't be fixed by re-installing, which means if a DUT
404 Repair by re-installing a test image using autoupdate.
415 return 'Re-install the stable build via AU'
420 Powerwash the DUT, then re-install using autoupdate.
422 Powerwash the DUT, then attempt to re-install a stable test image as
434 return 'Powerwash and then re-install the stable build via AU'
441 Use servo to re-install the DUT's designated "stable test image"
572 are removed because they're not expected to be meaningful. Some
  /external/minijail/
Android.mk 132 # # TODO(b/31395668): Re-enable once the seccomp(2) syscall becomes available.

Completed in 1932 milliseconds

1 2 3 4