Searched defs:offset (Results 226 - 250 of 4384) sorted by relevance

1234567891011>>

/external/valgrind/memcheck/tests/ppc32/
H A Dpower_ISA2_07.c16 unsigned offset; local
25 offset = ((unsigned ) &arrB[1]) - base;
27 __asm__ volatile ("ori 21, %0, 0"::"r" (offset));
32 offset = ((unsigned) &arrH[1]) - base;
34 __asm__ volatile ("ori 21, %0, 0"::"r" (offset));
/external/valgrind/memcheck/tests/ppc64/
H A Dpower_ISA2_07.c16 unsigned long offset; local
25 offset = ((unsigned long) &arrB[1]) - base;
27 __asm__ volatile ("ori 21, %0, 0"::"r" (offset));
32 offset = ((unsigned long) &arrH[1]) - base;
34 __asm__ volatile ("ori 21, %0, 0"::"r" (offset));
/external/vboot_reference/firmware/lib/
H A Dregion-fw.c20 static VbError_t VbGbbReadKey(VbCommonParams *cparams, uint32_t offset, argument
27 ret = VbRegionReadData(cparams, VB_REGION_GBB, offset,
37 ret = VbRegionReadData(cparams, VB_REGION_GBB, offset, size, key);
H A Dregion-init.c21 enum vb_firmware_region region, uint32_t offset,
26 if (offset + size > cparams->gbb_size)
28 Memcpy(buf, cparams->gbb_data + offset, size);
34 ret = VbExRegionRead(cparams, region, offset, size, buf);
20 VbRegionReadData(VbCommonParams *cparams, enum vb_firmware_region region, uint32_t offset, uint32_t size, void *buf) argument
/external/wayland/cursor/
H A Dcursor-data.h539 size_t offset; member in struct:cursor_metadata
/external/ImageMagick/MagickCore/
H A Dmagic.h39 offset; member in struct:_MagicInfo
/external/ImageMagick/MagickWand/
H A Dscript-token.c343 if ((size_t) offset >= (token_info->length-1)) { \
355 token_info->token[offset++]=(char) (c); \
368 offset;
380 offset=0;
403 token_info->token[offset]='\0';
481 token_info->token[offset]='\0';
364 offset; local
/external/ImageMagick/coders/
H A Dthumbnail.c182 offset;
193 offset=(ssize_t) StringToLong(property);
203 magick[2]=GetStringInfoDatum(profile)[offset+i];
207 thumbnail_image=BlobToImage(image_info,GetStringInfoDatum(profile)+offset+i-2,
177 offset; local
/external/aac/libAACenc/src/
H A Dline_pe.h129 INT offset; member in struct:__anon299
/external/adhd/cras/src/server/
H A Dbuffer_share.h14 unsigned int offset; member in struct:id_offset
39 /* Updates the offset of the given user into the shared buffer. */
44 * Updates the write point to the minimum offset from all users.
/external/annotation-tools/annotation-file-utilities/src/annotator/scanner/
H A DInstanceOfScanner.java70 * Adds an instanceof bytecode offset to the current list of offsets for
75 * @param offset the offset to add
77 public static void addInstanceOfToMethod(String methodName, Integer offset) { argument
83 offsetList.add(offset);
87 * Returns the index of the given offset within the list of offsets
89 * or returns a negative number if the offset is not one of the
93 * @param offset the offset of the instanceof check
94 * @return the index of the given offset, o
97 getMethodInstanceOfIndex(String methodName, Integer offset) argument
[all...]
H A DLambdaScanner.java72 * Adds a lambda expression bytecode offset to the current list of
77 * @param offset the offset to add
79 public static void addLambdaExpressionToMethod(String methodName, Integer offset) { argument
86 offsetList.add(offset);
90 * Returns the index of the given offset within the list of offsets
92 * number if the offset is not one of the offsets in the context.
95 * @param offset the offset of the lambda expression
96 * @return the index of the given offset, o
100 getMethodLambdaExpressionIndex(String methodName, Integer offset) argument
[all...]
H A DMemberReferenceScanner.java65 * Adds a member reference bytecode offset to the current list of
70 * @param offset the offset to add
72 public static void addMemberReferenceToMethod(String methodName, Integer offset) { argument
79 offsetList.add(offset);
83 * Returns the index of the given offset within the list of offsets
85 * number if the offset is not one of the offsets in the context.
88 * @param offset the offset of the lambda expression
89 * @return the index of the given offset, o
93 getMemberReferenceIndex(String methodName, Integer offset) argument
[all...]
H A DMethodCallScanner.java65 * Adds a lambda expression bytecode offset to the current list of
70 * @param offset the offset to add
72 public static void addMethodCallToMethod(String methodName, Integer offset) { argument
79 offsetList.add(offset);
83 * Returns the index of the given offset within the list of offsets
85 * number if the offset is not one of the offsets in the context.
88 * @param offset the offset of the lambda expression
89 * @return the index of the given offset, o
93 getMethodCallIndex(String methodName, Integer offset) argument
[all...]
/external/annotation-tools/scene-lib/src/annotations/el/
H A DRelativeLocation.java11 * instanceof, cast, or new: either the bytecode offset or the source code index.
16 * The bytecode offset of the construct.
18 public final int offset; field in class:RelativeLocation
35 private RelativeLocation(int offset, int index, int type_index) { argument
36 this.offset = offset;
41 public static RelativeLocation createOffset(int offset, int type_index) { argument
42 return new RelativeLocation(offset, -1, type_index);
50 return offset>-1;
55 return "#" + offset;
[all...]
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_StringWriter.java97 * Writes <code>count</code> characters starting at <code>offset</code>
101 * @param offset offset in buf to retrieve characters
104 * If offset or count are outside of bounds.
107 public void write(char[] buf, int offset, int count) { argument
109 if (0 <= offset && offset <= buf.length && 0 <= count
110 && count <= buf.length - offset) {
112 this.buf.append(buf, offset, count);
148 * <code>offset</cod
158 write(String str, int offset, int count) argument
[all...]
/external/apache-http/src/org/apache/http/util/
H A DEncodingUtils.java58 * @param offset the index of the first byte to encode
65 int offset,
79 return new String(data, offset, length, charset);
81 return new String(data, offset, length);
152 * @param offset the index of the first byte to encode
156 public static String getAsciiString(final byte[] data, int offset, int length) { argument
163 return new String(data, offset, length, HTTP.US_ASCII);
63 getString( final byte[] data, int offset, int length, String charset ) argument
/external/autotest/client/site_tests/security_SMMLocked/src/
H A Dsmm.c23 int check_smram(struct pci_dev *northbridge, int offset) argument
28 smram_value = pci_read_byte(northbridge, offset);
50 int offset = 0; local
56 offset = 0x9d;
60 offset = 0x88;
64 offset = 0x88;
68 offset = 0x88;
72 offset = 0x88;
76 offset = 0x88;
83 offset
95 int offset; local
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
H A DDESParameters.java63 int offset)
65 if (key.length - offset < DES_KEY_LENGTH)
74 if (key[j + offset] != DES_weak_keys[i * DES_KEY_LENGTH + j])
61 isWeakKey( byte[] key, int offset) argument
H A DDESedeParameters.java26 * @param offset offset into the byte array the key starts at
31 int offset,
34 for (int i = offset; i < length; i += DES_KEY_LENGTH)
49 * @param offset offset into the byte array the key starts at
53 int offset)
55 return isWeakKey(key, offset, key.length - offset);
62 * @param offset offse
29 isWeakKey( byte[] key, int offset, int length) argument
51 isWeakKey( byte[] key, int offset) argument
64 isRealEDEKey(byte[] key, int offset) argument
75 isReal2Key(byte[] key, int offset) argument
95 isReal3Key(byte[] key, int offset) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/digest/
H A DBCMessageDigest.java33 int offset,
36 digest.update(input, offset, len);
31 engineUpdate( byte[] input, int offset, int len) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DFixedPointPreCompInfo.java8 protected ECPoint offset = null; field in class:FixedPointPreCompInfo
25 return offset;
28 public void setOffset(ECPoint offset) argument
30 this.offset = offset;
/external/brotli/c/dec/
H A Dprefix.h18 /* [offset, offset + 2^nbits) */
20 uint16_t offset; member in struct:PrefixCodeRange
/external/brotli/c/enc/
H A Dprefix.h40 size_t offset = (2 + prefix) << bucket; local
46 (nbits << 24) | ((dist - offset) >> postfix_bits));
/external/chromium-trace/catapult/common/py_utils/py_utils/refactor/
H A Doffset_token.py22 representing the content, and an offset. Using relative positions makes it
26 def __init__(self, token_type, string, offset):
29 self._offset = offset
48 def offset(self): member in class:OffsetToken
52 return str((self.type_name, self.string, self.offset))
97 (0, first_token.offset[1]))
105 offset_row, offset_col = t.offset

Completed in 563 milliseconds

1234567891011>>