Home
last modified time | relevance | path

Searched defs:offset (Results 1 – 25 of 4365) sorted by relevance

12345678910>>...175

/third_party/node/deps/npm/node_modules/smart-buffer/build/
Dsmartbuffer.js108 readInt8(offset) { argument
117 readInt16BE(offset) { argument
126 readInt16LE(offset) { argument
135 readInt32BE(offset) { argument
144 readInt32LE(offset) { argument
153 readBigInt64BE(offset) { argument
163 readBigInt64LE(offset) { argument
175 writeInt8(value, offset) { argument
187 insertInt8(value, offset) { argument
198 writeInt16BE(value, offset) { argument
[all …]
/third_party/node/lib/internal/
Dbuffer.js51 function checkBounds(buf, offset, byteLength) { argument
57 function checkInt(value, min, max, buf, offset, byteLength) { argument
91 function readBigUInt64LE(offset = 0) { argument
111 function readBigUInt64BE(offset = 0) { argument
131 function readBigInt64LE(offset = 0) { argument
149 function readBigInt64BE(offset = 0) { argument
167 function readUIntLE(offset, byteLength) { argument
186 function readUInt48LE(buf, offset = 0) { argument
200 function readUInt40LE(buf, offset = 0) { argument
214 function readUInt32LE(offset = 0) { argument
[all …]
/third_party/uboot/u-boot-2020.01/drivers/gpio/
Dsandbox.c25 static u8 *get_gpio_flags(struct udevice *dev, unsigned offset) in get_gpio_flags()
39 static int get_gpio_flag(struct udevice *dev, unsigned offset, int flag) in get_gpio_flag()
44 static int set_gpio_flag(struct udevice *dev, unsigned offset, int flag, in set_gpio_flag()
61 int sandbox_gpio_get_value(struct udevice *dev, unsigned offset) in sandbox_gpio_get_value()
68 int sandbox_gpio_set_value(struct udevice *dev, unsigned offset, int value) in sandbox_gpio_set_value()
73 int sandbox_gpio_get_open_drain(struct udevice *dev, unsigned offset) in sandbox_gpio_get_open_drain()
78 int sandbox_gpio_set_open_drain(struct udevice *dev, unsigned offset, int value) in sandbox_gpio_set_open_drain()
83 int sandbox_gpio_get_direction(struct udevice *dev, unsigned offset) in sandbox_gpio_get_direction()
88 int sandbox_gpio_set_direction(struct udevice *dev, unsigned offset, int output) in sandbox_gpio_set_direction()
98 static int sb_gpio_direction_input(struct udevice *dev, unsigned offset) in sb_gpio_direction_input()
[all …]
Dimx_rgpio2p.c32 static int imx_rgpio2p_is_output(struct gpio_regs *regs, int offset) in imx_rgpio2p_is_output()
41 static void imx_rgpio2p_bank_direction(struct gpio_regs *regs, int offset, in imx_rgpio2p_bank_direction()
58 static void imx_rgpio2p_bank_set_value(struct gpio_regs *regs, int offset, in imx_rgpio2p_bank_set_value()
67 static int imx_rgpio2p_bank_get_value(struct gpio_regs *regs, int offset) in imx_rgpio2p_bank_get_value()
72 static int imx_rgpio2p_direction_input(struct udevice *dev, unsigned offset) in imx_rgpio2p_direction_input()
82 static int imx_rgpio2p_direction_output(struct udevice *dev, unsigned offset, in imx_rgpio2p_direction_output()
96 static int imx_rgpio2p_get_value(struct udevice *dev, unsigned offset) in imx_rgpio2p_get_value()
103 static int imx_rgpio2p_set_value(struct udevice *dev, unsigned offset, in imx_rgpio2p_set_value()
113 static int imx_rgpio2p_get_function(struct udevice *dev, unsigned offset) in imx_rgpio2p_get_function()
Dbcm6345_gpio.c21 static int bcm6345_gpio_get_value(struct udevice *dev, unsigned offset) in bcm6345_gpio_get_value()
28 static int bcm6345_gpio_set_value(struct udevice *dev, unsigned offset, in bcm6345_gpio_set_value()
41 static int bcm6345_gpio_set_direction(void __iomem *dirout, unsigned offset, in bcm6345_gpio_set_direction()
52 static int bcm6345_gpio_direction_input(struct udevice *dev, unsigned offset) in bcm6345_gpio_direction_input()
59 static int bcm6345_gpio_direction_output(struct udevice *dev, unsigned offset, in bcm6345_gpio_direction_output()
69 static int bcm6345_gpio_get_function(struct udevice *dev, unsigned offset) in bcm6345_gpio_get_function()
Dgpio-rcar.c37 static int rcar_gpio_get_value(struct udevice *dev, unsigned offset) in rcar_gpio_get_value()
52 static int rcar_gpio_set_value(struct udevice *dev, unsigned offset, in rcar_gpio_set_value()
65 static void rcar_gpio_set_direction(void __iomem *regs, unsigned offset, in rcar_gpio_set_direction()
87 static int rcar_gpio_direction_input(struct udevice *dev, unsigned offset) in rcar_gpio_direction_input()
96 static int rcar_gpio_direction_output(struct udevice *dev, unsigned offset, in rcar_gpio_direction_output()
108 static int rcar_gpio_get_function(struct udevice *dev, unsigned offset) in rcar_gpio_get_function()
118 static int rcar_gpio_request(struct udevice *dev, unsigned offset, in rcar_gpio_request()
124 static int rcar_gpio_free(struct udevice *dev, unsigned offset) in rcar_gpio_free()
Dintel_ich6_gpio.c57 static int _ich6_gpio_set_value(struct ich6_bank_priv *bank, unsigned offset, in _ich6_gpio_set_value()
78 static int _ich6_gpio_set_direction(uint16_t base, unsigned offset, int dir) in _ich6_gpio_set_direction()
99 int offset; in gpio_ich6_ofdata_to_platdata() local
143 static int ich6_gpio_request(struct udevice *dev, unsigned offset, in ich6_gpio_request()
164 static int ich6_gpio_direction_input(struct udevice *dev, unsigned offset) in ich6_gpio_direction_input()
171 static int ich6_gpio_direction_output(struct udevice *dev, unsigned offset, in ich6_gpio_direction_output()
184 static int ich6_gpio_get_value(struct udevice *dev, unsigned offset) in ich6_gpio_get_value()
197 static int ich6_gpio_set_value(struct udevice *dev, unsigned offset, in ich6_gpio_set_value()
204 static int ich6_gpio_get_function(struct udevice *dev, unsigned offset) in ich6_gpio_get_function()
Dgpio-uniphier.c41 static void uniphier_gpio_get_bank_and_mask(unsigned int offset, in uniphier_gpio_get_bank_and_mask()
71 static void uniphier_gpio_offset_write(struct udevice *dev, unsigned int offset, in uniphier_gpio_offset_write()
83 unsigned int offset, unsigned int reg) in uniphier_gpio_offset_read()
95 static int uniphier_gpio_get_function(struct udevice *dev, unsigned int offset) in uniphier_gpio_get_function()
102 unsigned int offset) in uniphier_gpio_direction_input()
110 unsigned int offset, int value) in uniphier_gpio_direction_output()
118 static int uniphier_gpio_get_value(struct udevice *dev, unsigned int offset) in uniphier_gpio_get_value()
124 unsigned int offset, int value) in uniphier_gpio_set_value()
/third_party/uboot/u-boot-2020.01/drivers/bios_emulator/x86emu/
Ddecode.c304 uint offset) in fetch_data_byte()
323 uint offset) in fetch_data_word()
342 uint offset) in fetch_data_long()
363 uint offset) in fetch_data_byte_abs()
384 uint offset) in fetch_data_word_abs()
405 uint offset) in fetch_data_long_abs()
426 uint offset, in store_data_byte()
448 uint offset, in store_data_word()
470 uint offset, in store_data_long()
493 uint offset, in store_data_byte_abs()
[all …]
/third_party/skia/third_party/externals/spirv-cross/reference/shaders-reflection/comp/
Dstruct-packing.comp.json31 "offset" : 0, number
37 "offset" : 8 number
47 "offset" : 0 number
52 "offset" : 12 number
68 "offset" : 0, number
74 "offset" : 16 number
84 "offset" : 0 number
89 "offset" : 8 number
99 "offset" : 0 number
115 "offset" : 0, number
[all …]
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
DListFieldSchema.java48 abstract <L> List<L> mutableListAt(Object msg, long offset); in mutableListAt()
50 abstract void makeImmutableListAt(Object msg, long offset); in makeImmutableListAt()
52 abstract <L> void mergeListsAt(Object msg, Object otherMsg, long offset); in mergeListsAt()
69 <L> List<L> mutableListAt(Object message, long offset) { in mutableListAt()
74 void makeImmutableListAt(Object message, long offset) { in makeImmutableListAt()
94 private static <L> List<L> mutableListAt(Object message, long offset, int additionalCapacity) { in mutableListAt()
125 <E> void mergeListsAt(Object msg, Object otherMsg, long offset) { in mergeListsAt()
140 static <E> List<E> getList(Object message, long offset) { in getList()
149 <L> List<L> mutableListAt(Object message, long offset) { in mutableListAt()
162 void makeImmutableListAt(Object message, long offset) { in makeImmutableListAt()
[all …]
DUnsafeUtil.java120 static byte getByte(Object target, long offset) { in getByte()
124 static void putByte(Object target, long offset, byte value) { in putByte()
128 static int getInt(Object target, long offset) { in getInt()
132 static void putInt(Object target, long offset, int value) { in putInt()
136 static long getLong(Object target, long offset) { in getLong()
140 static void putLong(Object target, long offset, long value) { in putLong()
144 static boolean getBoolean(Object target, long offset) { in getBoolean()
148 static void putBoolean(Object target, long offset, boolean value) { in putBoolean()
152 static float getFloat(Object target, long offset) { in getFloat()
156 static void putFloat(Object target, long offset, float value) { in putFloat()
[all …]
/third_party/FreeBSD/stand/kshim/
Dbsd_busspace.c73 bus_size_t offset, uint8_t *datap, bus_size_t count) in bus_space_read_multi_1()
82 bus_size_t offset, uint16_t *datap, bus_size_t count) in bus_space_read_multi_2()
91 bus_size_t offset, uint32_t *datap, bus_size_t count) in bus_space_read_multi_4()
102 bus_size_t offset, uint8_t *datap, bus_size_t count) in bus_space_write_multi_1()
113 bus_size_t offset, uint16_t *datap, bus_size_t count) in bus_space_write_multi_2()
124 bus_size_t offset, uint32_t *datap, bus_size_t count) in bus_space_write_multi_4()
135 bus_size_t offset, uint8_t data) in bus_space_write_1()
142 bus_size_t offset, uint16_t data) in bus_space_write_2()
149 bus_size_t offset, uint32_t data) in bus_space_write_4()
155 bus_space_read_1(bus_space_tag_t t, bus_space_handle_t h, bus_size_t offset) in bus_space_read_1()
[all …]
/third_party/gstreamer/gstplugins_good/gst/isomp4/
Dproperties.c48 prop_copy_ensure_buffer (guint8 ** buffer, guint64 * bsize, guint64 * offset, in prop_copy_ensure_buffer()
59 guint64 * offset) in copy_func()
89 guint64 * offset) in prop_copy_uint8()
96 guint64 * offset) in prop_copy_uint16()
104 guint64 * offset) in prop_copy_uint32()
112 guint64 * offset) in prop_copy_uint64()
120 guint64 * offset) in prop_copy_int32()
136 guint64 * offset) in prop_copy_fourcc()
158 guint64 * size, guint64 * offset) in prop_copy_fixed_size_string()
180 guint64 * size, guint64 * offset) in prop_copy_size_string()
[all …]
/third_party/node/deps/uvwasi/src/
Dwasi_serdes.c5 size_t offset, in uvwasi_serdes_write_uint64_t()
12 size_t offset, in uvwasi_serdes_write_uint32_t()
19 size_t offset, in uvwasi_serdes_write_uint16_t()
26 size_t offset, in uvwasi_serdes_write_uint8_t()
31 uint64_t uvwasi_serdes_read_uint64_t(const void* ptr, size_t offset) { in uvwasi_serdes_read_uint64_t()
37 uint32_t uvwasi_serdes_read_uint32_t(const void* ptr, size_t offset) { in uvwasi_serdes_read_uint32_t()
43 uint16_t uvwasi_serdes_read_uint16_t(const void* ptr, size_t offset) { in uvwasi_serdes_read_uint16_t()
49 uint8_t uvwasi_serdes_read_uint8_t(const void* ptr, size_t offset) { in uvwasi_serdes_read_uint8_t()
201 size_t offset, in uvwasi_serdes_read_iovec_t()
218 size_t offset, in uvwasi_serdes_readv_ciovec_t()
[all …]
/third_party/flutter/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/data/
DFontData.java89 protected FontData(FontData data, int offset, int length) { in FontData()
100 protected FontData(FontData data, int offset) { in FontData()
115 public boolean bound(int offset, int length) { in bound()
133 public boolean bound(int offset) { in bound()
149 public abstract FontData slice(int offset, int length); in slice()
158 public abstract FontData slice(int offset); in slice()
196 protected final int boundOffset(int offset) { in boundOffset()
207 protected final int boundLength(int offset, int length) { in boundLength()
211 protected final boolean boundsCheck(int offset, int length) { in boundsCheck()
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/data/
DFontData.java89 protected FontData(FontData data, int offset, int length) { in FontData()
100 protected FontData(FontData data, int offset) { in FontData()
115 public boolean bound(int offset, int length) { in bound()
133 public boolean bound(int offset) { in bound()
149 public abstract FontData slice(int offset, int length); in slice()
158 public abstract FontData slice(int offset); in slice()
196 protected final int boundOffset(int offset) { in boundOffset()
207 protected final int boundLength(int offset, int length) { in boundLength()
211 protected final boolean boundsCheck(int offset, int length) { in boundsCheck()
/third_party/ltp/testcases/network/nfs/nfslock01/
Dnfs_flock.h10 #define read_lock(fd, offset, whence, len) \ argument
12 #define write_lock(fd, offset, whence, len) \ argument
14 #define un_lock(fd, offset, whence, len) \ argument
16 #define readb_lock(fd, offset, whence, len) \ argument
18 #define writeb_lock(fd, offset, whence, len) \ argument
20 #define unb_lock(fd, offset, whence, len) \ argument
/third_party/jerryscript/jerry-core/parser/regexp/
Dre-bytecode.c66 const size_t offset, /**< distance from the start of the container */ in re_bytecode_insert()
94 const uint32_t offset, /**< distance from the start of the container */ in re_insert_byte()
125 const uint32_t offset, /**< distance from the start of the container */ in re_insert_opcode()
244 const uint32_t offset, /**< bytecode offset */ in re_insert_value()
304 const uint32_t offset, /**< bytecode offset */ in re_insert_char()
390 …const uint32_t offset = re_get_value (&bytecode_p) + re_get_bytecode_offset (bytecode_start_p, byt… in re_dump_bytecode() local
397 …const uint32_t offset = re_get_value (&bytecode_p) + re_get_bytecode_offset (bytecode_start_p, byt… in re_dump_bytecode() local
416 …const uint32_t offset = re_get_value (&bytecode_p) + re_get_bytecode_offset (bytecode_start_p, byt… in re_dump_bytecode() local
437 …const uint32_t offset = re_get_value (&bytecode_p) + re_get_bytecode_offset (bytecode_start_p, byt… in re_dump_bytecode() local
484 …const uint32_t offset = re_get_value (&bytecode_p) + re_get_bytecode_offset (bytecode_start_p, byt… in re_dump_bytecode() local
[all …]
/third_party/lwip/test/unit/mdns/
Dtest_mdns.c44 u16_t offset; in START_TEST() local
63 u16_t offset; in START_TEST() local
82 u16_t offset; in START_TEST() local
107 u16_t offset; in START_TEST() local
163 u16_t offset; in START_TEST() local
188 u16_t offset; in START_TEST() local
217 u16_t offset; in START_TEST() local
251 u16_t offset; in START_TEST() local
277 u16_t offset; in START_TEST() local
299 u16_t offset; in START_TEST() local
[all …]
/third_party/uboot/u-boot-2020.01/drivers/usb/musb-new/
Dmusb_io.h45 static inline u16 musb_readw(const void __iomem *addr, unsigned offset) in musb_readw()
48 static inline u32 musb_readl(const void __iomem *addr, unsigned offset) in musb_readl()
52 static inline void musb_writew(void __iomem *addr, unsigned offset, u16 data) in musb_writew()
55 static inline void musb_writel(void __iomem *addr, unsigned offset, u32 data) in musb_writel()
64 static inline u8 musb_readb(const void __iomem *addr, unsigned offset) in musb_readb()
78 static inline void musb_writeb(void __iomem *addr, unsigned offset, u8 data) in musb_writeb()
93 static inline u8 musb_readb(const void __iomem *addr, unsigned offset) in musb_readb()
96 static inline void musb_writeb(void __iomem *addr, unsigned offset, u8 data) in musb_writeb()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
DLocaleIDs.java52 int offset = findIndex(_countries, country); in getISO3Country() local
74 int offset = findIndex(_languages, language); in getISO3Language() local
89 int offset = findIndex(_languages3, lang); in threeToTwoLetterLanguage() local
105 int offset = findIndex(_countries3, region); in threeToTwoLetterRegion() local
453 int offset = findIndex(_deprecatedCountries, oldID); in getCurrentCountryID() local
461 int offset = findIndex(_obsoleteLanguages, oldID); in getCurrentLanguageID() local
/third_party/flutter/skia/samplecode/
DSampleClipDrawMatch.cpp45 SkRect create_rect(const SkPoint& offset) { in create_rect()
51 SkRRect create_rrect(const SkPoint& offset) { in create_rrect()
57 SkRRect create_circle(const SkPoint& offset) { in create_circle()
63 SkPath create_convex_path(const SkPoint& offset) { in create_convex_path()
73 SkPath create_concave_path(const SkPoint& offset) { in create_concave_path()
89 static void draw_normal_geom(SkCanvas* canvas, const SkPoint& offset, int geom, bool useAA) { in draw_normal_geom()
164 void drawClippedGeom(SkCanvas* canvas, const SkPoint& offset, bool useAA) { in drawClippedGeom()
223 void drawGeometry(SkCanvas* canvas, const SkPoint& offset, bool useAA) { in drawGeometry()
239 SkPoint offset; in onDrawContent() local
/third_party/uboot/u-boot-2020.01/drivers/pinctrl/mscc/
Dmscc-common.c25 static void mscc_writel(unsigned int offset, void *addr) in mscc_writel()
33 static unsigned int mscc_readl(unsigned int offset, void *addr) in mscc_readl()
41 static void mscc_setbits(unsigned int offset, void *addr) in mscc_setbits()
49 static void mscc_clrbits(unsigned int offset, void *addr) in mscc_clrbits()
91 int f, offset, regoff; in mscc_pinmux_set_mux() local
176 static int mscc_gpio_get(struct udevice *dev, unsigned int offset) in mscc_gpio_get()
192 static int mscc_gpio_set(struct udevice *dev, unsigned int offset, int value) in mscc_gpio_set()
206 static int mscc_gpio_get_direction(struct udevice *dev, unsigned int offset) in mscc_gpio_get_direction()
216 static int mscc_gpio_direction_input(struct udevice *dev, unsigned int offset) in mscc_gpio_direction_input()
226 unsigned int offset, int value) in mscc_gpio_direction_output()
/third_party/uboot/u-boot-2020.01/env/
Dufs.c47 s64 offset = ufs_offset(); in ufs_get_env_addr() local
55 static int write_env(unsigned long size, unsigned long offset, const void *buffer) in write_env()
70 u32 offset; in env_ufs_save() local
98 static int read_env(unsigned long size, unsigned long offset, const void *buffer) in read_env()
114 u32 offset; in env_ufs_load() local

12345678910>>...175