Searched refs:read1 (Results 1 – 8 of 8) sorted by relevance
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | brw_wm_pass1.c | 124 GLuint read0, read1, read2; in brw_wm_pass1() local 153 read1 = 0; in brw_wm_pass1() 181 read1 = writemask; in brw_wm_pass1() 193 read1 = writemask; in brw_wm_pass1() 201 read1 = read0; in brw_wm_pass1() 218 read1 = WRITEMASK_X; in brw_wm_pass1() 241 read1 = WRITEMASK_X; in brw_wm_pass1() 246 read1 = WRITEMASK_XY; in brw_wm_pass1() 251 read1 = WRITEMASK_XY; in brw_wm_pass1() 256 read1 = WRITEMASK_XY; /* deltas */ in brw_wm_pass1() [all …]
|
/external/zlib/src/examples/ |
D | gzappend.c | 198 #define read1(in) (in->left == 0 ? readmore(in) : 0, \ macro 227 val = read1(in); in read4() 228 val += (unsigned)read1(in) << 8; in read4() 229 val += (unsigned long)read1(in) << 16; in read4() 230 val += (unsigned long)read1(in) << 24; in read4() 240 if (read1(in) != 31 || read1(in) != 139) bye(in->name, " not a gzip file"); in gzheader() 241 if (read1(in) != 8) bye("unknown compression method in", in->name); in gzheader() 242 flags = read1(in); in gzheader() 246 n = read1(in); in gzheader() 247 n += (unsigned)(read1(in)) << 8; in gzheader() [all …]
|
/external/wpa_supplicant_8/src/drivers/ |
D | driver_roboswitch.c | 243 u16 read1[3], read2[3], addr_be16[3]; in wpa_driver_roboswitch_join() local 248 ROBO_ARLCTRL_CONF, read1, 1) < 0) in wpa_driver_roboswitch_join() 250 if (!(read1[0] & (1 << 4))) { in wpa_driver_roboswitch_join() 252 read1[0] |= 1 << 4; in wpa_driver_roboswitch_join() 262 ROBO_ARLCTRL_CONF, read1, 1); in wpa_driver_roboswitch_join() 266 ROBO_ARLCTRL_ADDR_1, read1, 3) || in wpa_driver_roboswitch_join() 269 os_memcmp(read1, read2, 6) != 0) in wpa_driver_roboswitch_join() 272 ROBO_ARLCTRL_VEC_1, read1, 1) || in wpa_driver_roboswitch_join() 275 read1[0] != read2[0]) in wpa_driver_roboswitch_join()
|
/external/chromium-trace/catapult/third_party/html5lib-python/html5lib/tests/ |
D | test_stream.py | 22 read1 = fp.read(1) 23 assert read1 == b"a" 33 read1 = fp.read(1) 44 read1 = fp.read(1) 45 assert read1 == b"a" 60 read1 = fp.read(1)
|
/external/vboot_reference/tests/futility/ |
D | test_gbb_utility.sh | 53 --rootkey ${TMP}.read1 \ 57 cmp -n 10 ${TMP}.data1.short ${TMP}.read1 70 ${FUTILITY} gbb_utility -g --rootkey ${TMP}.read1 ${TMP}.blob 74 cmp ${TMP}.data1 ${TMP}.read1 193 ${FUTILITY} gbb_utility -g --rootkey ${TMP}.read1 ${TMP}.blob.bad
|
/external/guava/guava/src/com/google/common/io/ |
D | ByteSource.java | 319 int read1 = ByteStreams.read(in1, buf1, 0, BUF_SIZE); in contentEquals() local 321 if (read1 != read2 || !Arrays.equals(buf1, buf2)) { in contentEquals() 323 } else if (read1 != BUF_SIZE) { in contentEquals()
|
/external/compiler-rt/lib/tsan/ |
D | check_analyze.sh | 47 for f in read1 read2 read4 read8; do
|
/external/clang/test/SemaCXX/ |
D | warn-thread-safety-analysis.cpp | 4766 void read1(const Foo& f); 4802 …read1(foo); // expected-warning {{passing variable 'foo' by reference requires holding … in test1() 4829 …read1(*foop); // expected-warning {{passing the value that 'foop' points to by referenc… in test1() 4836 …read1(*foosp); // expected-warning {{reading the value pointed to by 'foosp' requires h… in test1() 4844 read1(*foosp.get()); in test1()
|